/* ============================================
   THE HUMMINGBIRD CLAN — Design System
   Palette: Warm cream, sage green, dusty rose, gold
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================ */

/* ---- DESIGN TOKENS ---- */
:root,
[data-theme='light'] {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Hummingbird Whisper Palette — Light */
  --color-bg:              #f9f7f3;
  --color-surface:         #fdfcf9;
  --color-surface-2:       #fffffe;
  --color-surface-offset:  #f3efe8;
  --color-surface-offset-2:#ede8e0;
  --color-surface-dynamic: #e5dfd5;
  --color-divider:         #dcd5c8;
  --color-border:          #cfc8bb;

  --color-text:            #2c2418;
  --color-text-muted:      #7a7162;
  --color-text-faint:      #b8b0a0;
  --color-text-inverse:    #fdfcf9;

  /* Sage Green — primary */
  --color-primary:         #5a7a5e;
  --color-primary-hover:   #456048;
  --color-primary-active:  #324636;
  --color-primary-highlight: #d6e4d7;
  --color-primary-pale:    #eef4ee;

  /* Dusty Rose — accent */
  --color-accent:          #b87080;
  --color-accent-hover:    #9a5a6a;
  --color-accent-pale:     #f5e8eb;

  /* Gold — warm highlight */
  --color-gold:            #c8963a;
  --color-gold-pale:       #faf0dc;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:  0 1px 3px oklch(0.2 0.02 60 / 0.07);
  --shadow-md:  0 4px 16px oklch(0.2 0.02 60 / 0.09);
  --shadow-lg:  0 12px 40px oklch(0.2 0.02 60 / 0.13);

  /* Widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'system-ui', sans-serif;
}

[data-theme='dark'] {
  --color-bg:              #1a1812;
  --color-surface:         #201d16;
  --color-surface-2:       #24211a;
  --color-surface-offset:  #1d1a13;
  --color-surface-offset-2:#232019;
  --color-surface-dynamic: #2e2b22;
  --color-divider:         #2a2720;
  --color-border:          #3a3730;

  --color-text:            #e8e2d8;
  --color-text-muted:      #8a8478;
  --color-text-faint:      #5c5850;
  --color-text-inverse:    #201d16;

  --color-primary:         #82ab87;
  --color-primary-hover:   #5a8a60;
  --color-primary-active:  #456048;
  --color-primary-highlight: #2a3a2c;
  --color-primary-pale:    #1e281f;

  --color-accent:          #d4909e;
  --color-accent-hover:    #b87080;
  --color-accent-pale:     #32202a;

  --color-gold:            #e0aa50;
  --color-gold-pale:       #2e2412;

  --shadow-sm:  0 1px 3px oklch(0 0 0 / 0.25);
  --shadow-md:  0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg:  0 12px 40px oklch(0 0 0 / 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #1a1812;
    --color-surface:         #201d16;
    --color-surface-2:       #24211a;
    --color-surface-offset:  #1d1a13;
    --color-surface-offset-2:#232019;
    --color-surface-dynamic: #2e2b22;
    --color-divider:         #2a2720;
    --color-border:          #3a3730;
    --color-text:            #e8e2d8;
    --color-text-muted:      #8a8478;
    --color-text-faint:      #5c5850;
    --color-text-inverse:    #201d16;
    --color-primary:         #82ab87;
    --color-primary-hover:   #5a8a60;
    --color-primary-active:  #456048;
    --color-primary-highlight: #2a3a2c;
    --color-primary-pale:    #1e281f;
    --color-accent:          #d4909e;
    --color-accent-hover:    #b87080;
    --color-accent-pale:     #32202a;
    --color-gold:            #e0aa50;
    --color-gold-pale:       #2e2412;
    --shadow-sm:  0 1px 3px oklch(0 0 0 / 0.25);
    --shadow-md:  0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg:  0 12px 40px oklch(0 0 0 / 0.45);
  }
}

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

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition-interactive);
}

.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav-logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color var(--transition-interactive);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a.active {
  color: var(--color-primary);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-cta:active {
  transform: translateY(0);
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background var(--transition-interactive);
}

.hamburger:hover {
  background: var(--color-surface-offset);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.hamburger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--color-bg);
  padding: var(--space-8) var(--space-6);
  z-index: 99;
  flex-direction: column;
  gap: var(--space-6);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
  transition: color var(--transition-interactive);
}

.mobile-nav a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.12 0.02 60 / 0.15) 0%,
    oklch(0.12 0.02 60 / 0.45) 60%,
    oklch(0.12 0.02 60 / 0.7) 100%
  );
  z-index: 1;
}

[data-theme='light'] .hero-overlay,
:root:not([data-theme]) .hero-overlay {
  background: linear-gradient(
    to bottom,
    oklch(0.98 0.01 60 / 0.1) 0%,
    oklch(0.15 0.03 60 / 0.3) 55%,
    oklch(0.12 0.03 60 / 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fdfcf9;
  padding-block: var(--space-32);
  padding-inline: clamp(var(--space-6), 6vw, var(--space-24));
  max-width: 800px;
  margin: auto;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.75);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fdfcf9;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  color: rgba(253, 252, 249, 0.85);
  margin-bottom: var(--space-10);
  max-width: 55ch;
  margin-inline: auto;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s both;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(253, 252, 249, 0.9);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  border: 1px solid rgba(253, 252, 249, 0.4);
  transition: border-color var(--transition-interactive), color var(--transition-interactive), background var(--transition-interactive);
}

.btn-ghost:hover {
  border-color: rgba(253, 252, 249, 0.8);
  background: rgba(253, 252, 249, 0.1);
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(253, 252, 249, 0.6);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.4); opacity: 0.2; }
}

/* ============================================
   PAGE SECTIONS
   ============================================ */

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 58ch;
}

.section-body + .section-body {
  margin-top: var(--space-4);
}

/* ============================================
   INTRO BAND (below hero)
   ============================================ */

.intro-band {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
}

.intro-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-block: var(--space-6);
}

.intro-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.intro-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.intro-badge-divider {
  width: 1px;
  height: 20px;
  background: var(--color-divider);
}

/* ============================================
   BRAND STORY — asymmetric two-column
   ============================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

.story-grid.reverse {
  direction: rtl;
}

.story-grid.reverse > * {
  direction: ltr;
}

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.story-image-wrap:hover img {
  transform: scale(1.03);
}

.story-image-accent {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--color-primary-highlight);
  border-radius: calc(var(--radius-2xl) + 8px);
  pointer-events: none;
  z-index: -1;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.story-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.5;
  padding-left: var(--space-6);
  border-left: 2px solid var(--color-primary-highlight);
  margin-block: var(--space-4);
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse { direction: ltr; }
}

/* ============================================
   WHAT WE CREATE — product cards grid
   ============================================ */

.offerings-section {
  background: var(--color-surface-offset);
}

.offerings-header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.offerings-header .section-body {
  margin-inline: auto;
}

.offerings-feature-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-16));
  aspect-ratio: 16/7;
}

.offerings-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.offering-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}

.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-highlight);
}

.offering-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}

.offering-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
}

.offering-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 40ch;
}

/* ============================================
   PHILOSOPHY — full-bleed image + quote
   ============================================ */

.philosophy-section {
  padding: 0;
  position: relative;
}

.philosophy-image-wrap {
  position: relative;
  height: clamp(400px, 60vh, 700px);
  overflow: hidden;
}

.philosophy-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.1 0.02 60 / 0.7) 0%,
    oklch(0.1 0.02 60 / 0.2) 60%,
    transparent 100%
  );
}

.philosophy-quote-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-inline: clamp(var(--space-8), 6vw, var(--space-24));
}

.philosophy-quote {
  max-width: 500px;
  color: #fdfcf9;
}

.philosophy-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: var(--space-6);
}

.philosophy-quote cite {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.65);
  font-style: normal;
}

.philosophy-content {
  padding-block: clamp(var(--space-16), 7vw, var(--space-24));
  background: var(--color-bg);
}

.philosophy-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pillar {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-primary-highlight);
  line-height: 1;
  min-width: 2ch;
  flex-shrink: 0;
}

.pillar-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.pillar-text p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 42ch;
}

@media (max-width: 768px) {
  .philosophy-content-inner { grid-template-columns: 1fr; }
  .philosophy-quote blockquote { font-size: var(--text-xl); }
}

/* ============================================
   HUMMINGBIRD SYMBOL SECTION
   ============================================ */

.symbol-section {
  background: var(--color-surface);
  text-align: center;
  border-block: 1px solid var(--color-divider);
}

.symbol-icon-wrap {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  color: var(--color-primary);
}

.symbol-body {
  max-width: 55ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================
   NEWSLETTER / CTA SECTION
   ============================================ */

.cta-section {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  text-align: center;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.cta-section .section-label {
  color: rgba(253, 252, 249, 0.65);
}

.cta-section .section-title {
  color: #fdfcf9;
}

.cta-section .section-body {
  color: rgba(253, 252, 249, 0.78);
  margin-inline: auto;
}

.cta-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.cta-input {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  background: rgba(253, 252, 249, 0.15);
  border: 1px solid rgba(253, 252, 249, 0.35);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  color: #fdfcf9;
  width: 280px;
  max-width: 100%;
  outline: none;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}

.cta-input::placeholder {
  color: rgba(253, 252, 249, 0.5);
}

.cta-input:focus {
  border-color: rgba(253, 252, 249, 0.7);
  background: rgba(253, 252, 249, 0.2);
}

.btn-light {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #fdfcf9;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.btn-light:hover {
  background: var(--color-surface-offset);
  transform: translateY(-1px);
}

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

.site-footer {
  background: var(--color-surface-offset-2);
  border-top: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-12), 5vw, var(--space-20));
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 36ch;
  margin-top: var(--space-4);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  margin-top: clamp(var(--space-10), 4vw, var(--space-16));
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-text-faint);
  max-width: unset;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 60%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* ============================================
   KEYFRAMES
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   INNER PAGES
   ============================================ */

.page-hero {
  padding-top: clamp(var(--space-16), 8vw, var(--space-24));
  padding-bottom: clamp(var(--space-12), 6vw, var(--space-20));
  background: var(--color-surface-offset);
  border-bottom: 1px solid var(--color-divider);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

.page-hero-inner.centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero-inner.centered .section-body {
  margin-inline: auto;
}

@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; }
}

/* Active nav link via JS */
.nav-links a[aria-current="page"] {
  color: var(--color-primary);
}
