/* =========================
   RESET
   ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   BASE
   ========================= */

:root {
  /* Colors */
  --color-brand:          #E35336; /* terracotta — brand accent */
  --color-text-primary:   #111;   /* headings, buttons, strong UI */
  --color-text-secondary: #444;   /* body copy, descriptions */
  --color-text-muted:     #777;   /* eyebrows, meta, labels */
  --color-border:         #d9d9d9; /* dividers, input lines */
  --color-white:          #fff;
  --color-bg-subtle:      #f7f7f5;

  /* Fonts */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-logo:    'Cormorant Garamond', serif;

  /* Spacing scale */
  --space-2xs: 0.5rem;
  --space-xs:  1rem;
  --space-sm:  1.5rem;
  --space-card: 2rem;
  --space-md:  3rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text-primary);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2rem;
  line-height: 1.15;
}

p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.section    { padding: var(--space-xl) 0; }
.section-sm { padding: var(--space-md) 0; }

/* =========================
   COMPONENTS
   ========================= */

.button {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--color-brand);
  background: var(--color-brand);
  color: var(--color-white);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: #c94428;
  border-color: #c94428;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(227, 83, 54, 0.25);
}

.button-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}

.button-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--color-text-primary);
  transform: scale(1.03);
  box-shadow: none;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-top: var(--space-2xs);
  transition: transform 0.25s ease;
}

.about-link:hover {
  transform: scale(1.04);
}

/* =========================
   HEADER
   ========================= */

.site-header {
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 100;
  transition: transform 0.35s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.7rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: var(--space-sm);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.nav-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animate to X when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-md) 5%;
    gap: var(--space-xs);
    border-top: 1px solid var(--color-border);
  }

  .site-nav.is-open {
    display: flex;
  }
}

/* =========================
   SECTION INTRO
   ========================= */

.section-intro {
  max-width: 700px;
  margin-bottom: var(--space-lg);
}

.section-text {
  margin-top: 1rem;
}

/* =========================
   CTA BAND
   ========================= */

.cta-band-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cta-band-content h2 { margin-bottom: 0.5rem; }
.cta-band-content p  { margin-bottom: 0; max-width: 460px; }
.cta-band-action     { flex-shrink: 0; }

@media (max-width: 700px) {
  .cta-band-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

/* =========================
   UTILITIES
   ========================= */

.section-divider { border-top: 1px solid var(--color-border); }

/* =========================
   FOOTER
   ========================= */

.site-footer p {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
}

