/* ============================================================
   EcoAccess AI — Website CSS
   Source of truth: ecoaccess-ai-design-system (Claude Design export)
   WCAG 2.2 AAA. Every value derived from design system files.
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Big Caslon';
  src: url('assets/fonts/BigCaslon.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNext-400.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNext-500.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNext-600.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNext-700.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('assets/fonts/AvenirNext-800.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/Avenir-400.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/Avenir-500.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/Avenir-700.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/Avenir-900.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  /* Teal scale */
  --teal-900: #0E3B45;
  --teal-800: #154E5C;
  --teal-700: #1B5E6B;   /* brand primary — AAA 7.4:1 */
  --teal-600: #237A88;
  --teal-500: #2AA5A5;   /* decorative only */
  --teal-400: #4EC5C3;
  --teal-300: #7AD6D4;
  --teal-200: #A8E5E3;
  --teal-100: #C8E6E6;
  --teal-50:  #EEF8F8;

  /* Lime / olive scale */
  --lime-text: #3D5C1E;  /* AAA 7.7:1 */
  --lime-800:  #5C7A1E;
  --lime-600:  #8DB43A;  /* decorative only */
  --lime-50:   #F3F9E2;

  /* Orange */
  --orange-700: #7A3008;  /* AAA */
  --orange-500: #E06020;  /* decorative only */

  /* Neutrals */
  --fg:         #333333;  /* AAA 12.6:1 */
  --fg-muted:   #555555;  /* AAA 7.5:1 */
  --fg-subtle:  #767676;  /* placeholder / AA only */
  --fg-on-dark: #FFFFFF;

  /* Surfaces */
  --bg:        #F4F6F7;
  --surface:   #FFFFFF;
  --bg-tinted: #EEF8F8;
  --bg-lime:   #F3F9E2;

  /* Brand */
  --brand:         #1B5E6B;
  --brand-deep:    #154E5C;
  --brand-darkest: #0E3B45;

  /* Border */
  --border:        #E0E4E6;
  --border-strong: #B8C0C4;

  /* Gradients */
  --gradient-brand:       linear-gradient(135deg, #1B5E6B 0%, #2AA5A5 100%);
  --gradient-teal-sweep:  linear-gradient(135deg, #0E3B45 0%, #1B5E6B 60%, #2AA5A5 100%);
  --gradient-teal-lime:   linear-gradient(135deg, #1B5E6B 0%, #8DB43A 100%);

  /* Radii — from design system */
  --r-chip:   4px;
  --r-input:  10px;   /* comp-form-inputs.html */
  --r-card:   16px;   /* comp-cards.html */
  --r-btn:    14px;   /* comp-buttons-primary.html */
  --r-nav:    10px;   /* Header.jsx nav links */
  --r-hero:   20px;
  --r-pill:   9999px;

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08);
  --shadow-card:  0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg:    0 12px 32px rgba(0,0,0,0.10);
  --shadow-focus: 0 0 0 2px #FFFFFF, 0 0 0 4px #1B5E6B;

  /* Spacing (4-base) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;

  /* Typography */
  --font-display: 'Big Caslon', serif;
  --font-sans:    'Avenir Next', 'Avenir', 'Nunito', 'Segoe UI', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
ul { list-style: none; }
svg { display: block; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 32px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Type utilities ─────────────────────────────────────────── */
/* Display — hero title */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
/* H1 — Big Caslon, section headers */
.t-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.10;
  letter-spacing: -0.01em;
}
/* H2 */
.t-h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.20;
  letter-spacing: -0.005em;
}
/* H3 */
.t-h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}
/* Eyebrow / overline */
.t-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ── Skip link — WCAG 2.4.1 ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; outline: none; box-shadow: var(--shadow-focus); }

/* ── Navigation ─────────────────────────────────────────────── */
/* Spec: Header.jsx — height 64px, bg rgba(255,255,255,0.96), blur 12px */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Nav link — Header.jsx: font 600 15px, color #1B5E6B, padding 8px 12px, radius 10px */
.nav__link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  padding: 8px 12px;
  border-radius: var(--r-nav);
  transition: background 0.15s cubic-bezier(0.4,0,0.2,1);
}
.nav__link:hover { background: var(--teal-50); }
.nav__link:focus-visible { box-shadow: var(--shadow-focus); outline: none; border-radius: var(--r-nav); }

/* Nav CTA — Header.jsx: bg #1B5E6B, color #fff, padding 10px 18px, radius 14px, font 600 15px */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  background: var(--brand);
  color: #FFFFFF !important;
  padding: 10px 18px;
  border-radius: var(--r-btn);
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1);
  margin-left: var(--sp-4);
}
.nav__cta:hover { background: var(--brand-deep); }
.nav__cta:focus-visible { box-shadow: var(--shadow-focus); outline: none; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ── Hero ───────────────────────────────────────────────────── */
/* Spec: Hero.jsx — full-bleed photo, overlay rgba(14,59,69,0.55), min-height 100vh */
.hero {
  padding-top: 64px;
  background:
    linear-gradient(rgba(14,59,69,0.55), rgba(14,59,69,0.55)),
    url('assets/hero-bg.jpg') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  width: 360px; height: 360px;
  background: var(--lime-600);
  border-radius: 50%;
  left: -100px; bottom: -100px;
  opacity: 0.06;
  pointer-events: none;
}
.hero > .container { width: 100%; }
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
/* Hero content — left-aligned, ~50% width */
.hero__content { max-width: 550px; }

/* Badge — Hero.jsx: pill, rgba(255,255,255,0.15), font 700 12px, letter-spacing 0.14em */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  width: fit-content;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--lime-600);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero H1 — Hero.jsx: Big Caslon 56px/1.05, color #fff */
.hero__title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--teal-300); /* #7AD6D4 */
}

/* Hero subtitle — Hero.jsx: 400 18px/1.7, color rgba(255,255,255,0.88) */
.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}

/* Hero CTAs — Hero.jsx */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero trust strip — Hero.jsx: "Free · Confidential · Takes 3 minutes" */
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.hero__trust-item svg { color: rgba(255,255,255,0.55); }

/* ── Buttons ────────────────────────────────────────────────── */
/* Spec: comp-buttons-primary.html + comp-buttons-secondary-tertiary.html
   Base: font 600 16px "Avenir Next" · radius 14px · min-height 48px
   Focus: box-shadow 0 0 0 2px #fff, 0 0 0 4px #1B5E6B
   Disabled: opacity 0.4 */
.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-lime,
.btn-destructive {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  min-height: 48px;
  border-radius: var(--r-btn);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), color 0.2s, border-color 0.2s;
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.btn-lime:disabled,
.btn-destructive:disabled { opacity: 0.4; pointer-events: none; cursor: not-allowed; }

/* Primary — #1B5E6B fill */
.btn-primary { background: #1B5E6B; color: #FFFFFF; border: 0; padding: 14px 22px; }
.btn-primary:hover  { background: #154E5C; }
.btn-primary:active { background: #0E3B45; }
.btn-primary:focus-visible { box-shadow: var(--shadow-focus); outline: none; }

/* Secondary — outlined teal */
.btn-secondary { background: transparent; color: #1B5E6B; border: 2px solid #1B5E6B; padding: 12px 20px; }
.btn-secondary:hover  { background: #EEF8F8; }
.btn-secondary:active { background: #C8E6E6; }
.btn-secondary:focus-visible { box-shadow: var(--shadow-focus); outline: none; }

/* Tertiary — text only */
.btn-tertiary { background: transparent; color: #1B5E6B; border: 0; padding: 14px 8px; min-height: 44px; }
.btn-tertiary:hover { color: #154E5C; text-decoration: underline; text-underline-offset: 4px; }
.btn-tertiary:focus-visible { box-shadow: var(--shadow-focus); outline: none; border-radius: var(--r-btn); }

/* Lime — #3D5C1E fill (sustainability CTA) */
.btn-lime { background: #3D5C1E; color: #FFFFFF; border: 0; padding: 14px 22px; }
.btn-lime:hover  { background: #2d4516; }
.btn-lime:active { background: #1e2e0f; }
.btn-lime:focus-visible { box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #3D5C1E; outline: none; }

/* Destructive */
.btn-destructive { background: #9A2A1F; color: #FFFFFF; border: 0; padding: 14px 22px; }
.btn-destructive:hover  { background: #7A1F17; }
.btn-destructive:focus-visible { box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #9A2A1F; outline: none; }

/* Hero context — secondary/tertiary flip to white on dark bg */
.hero .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover { background: rgba(255,255,255,0.12); }
.hero .btn-tertiary { color: rgba(255,255,255,0.88); }
.hero .btn-tertiary:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: 4px; }

/* ── Stats strip ────────────────────────────────────────────── */
.stats {
  background: var(--bg-tinted);
  padding: 64px 0;
}
.stats__context {
  color: var(--brand);
  margin-bottom: 40px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.55;
}
.stat__divider {
  width: 32px; height: 3px;
  background: var(--teal-500);
  border-radius: 2px;
  margin-top: 12px;
}

/* ── Sections — base ────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-tinted); }

/* Section header */
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section__title {
  color: var(--brand);
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ── Three pillars ──────────────────────────────────────────── */
/* Spec: ValuePillars.jsx — bg #FFFFFF, 96px padding */
.pillars__header { max-width: 640px; margin-bottom: 48px; }
.pillars__header .section__subtitle { max-width: 100%; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card — comp-cards.html + ValuePillars.jsx: radius 16px, border 1px #E0E4E6, shadow */
.value-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
}
.value-card:hover { box-shadow: var(--shadow-lg); }

/* Card icon — comp-cards.html: 44–48px, radius 10–12px, bg #EEF8F8 */
.value-card__icon {
  width: 48px; height: 48px;
  background: var(--teal-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

/* Card tag — ValuePillars.jsx */
.value-card__tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: var(--r-chip);
  align-self: flex-start;
}

/* Card title — ValuePillars.jsx: 600 22px/1.35 */
.value-card__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand);
  margin: 0;
}
/* Card description — 400 16px/1.6 */
.value-card__desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
}

/* ── Audience section ───────────────────────────────────────── */
/* Background image with overlay */
#who {
  background:
    linear-gradient(rgba(255,255,255,0.60), rgba(255,255,255,0.60)),
    url('assets/builtin_bg.png') center center / cover no-repeat;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
}
.audience-card:hover { box-shadow: var(--shadow-lg); }
.audience-card__icon {
  width: 48px; height: 48px;
  background: var(--teal-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
}
.audience-card__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand);
  margin-bottom: 6px;
}
.audience-card__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3D5C1E;
  margin-bottom: 14px;
}
.audience-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fg);
}

/* ── Mission band ───────────────────────────────────────────── */
/* Spec: gradient-teal-sweep from design system */
.mission {
  background: var(--gradient-teal-sweep);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.mission__blob {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--lime-600);
  border-radius: 50%;
  right: -140px; top: -140px;
  opacity: 0.05;
  pointer-events: none;
}
.mission__inner { position: relative; z-index: 1; max-width: 720px; }
.mission__eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.mission__title { color: #FFFFFF; margin-bottom: 24px; }
.mission__body {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 640px;
}
.mission__tags { display: flex; gap: 10px; flex-wrap: wrap; }
.mission__tag {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.22);
}

/* ── CTA / Stay informed ────────────────────────────────────── */
.cta-section { padding: 96px 0; background: var(--bg); }
.cta-box {
  background: var(--bg-tinted);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 64px 56px;
  max-width: 700px;
}
.cta-box__eyebrow { margin-bottom: 12px; }
.cta-box__title { color: var(--brand); margin-bottom: 14px; }
.cta-box__sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 520px;
}
.cta-box__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 14px;
}

/* Input — comp-form-inputs.html: radius 10px, border 1.5px #767676, min-height 48px */
.cta-box__input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--fg-subtle);
  border-radius: var(--r-input);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  background: var(--surface);
  min-height: 48px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-box__input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--teal-100);
}
.cta-box__input::placeholder { color: var(--fg-subtle); }
.cta-box__note {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
}

/* ── Footer ─────────────────────────────────────────────────── */
/* Spec: Footer.jsx — bg #1B5E6B, padding 64px 0 24px */
.footer {
  background: var(--brand);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
/* Logo — Footer.jsx: height 36px */
.footer__logo { height: 36px; width: auto; margin-bottom: 16px; }

/* Brand desc — Footer.jsx: 500 15px/1.55, color rgba(255,255,255,0.95) */
.footer__brand-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  max-width: 280px;
  margin-bottom: 12px;
}
.footer__legal {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Footer columns — Footer.jsx: 4-col grid */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }

/* Col title — Footer.jsx: 700 12px, letter-spacing 0.14em, uppercase, #C8E6E6 */
.footer__col-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-100);
  margin-bottom: 4px;
}
/* Col links — Footer.jsx: 500 14px/1.5, color #fff */
.footer__col a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: #FFFFFF; }

/* Footer bottom — Footer.jsx: border-top rgba(255,255,255,0.2), 12px text */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy, .footer__socials a, .footer__compliance {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer__socials { display: flex; gap: 24px; }
.footer__socials a { text-decoration: none; transition: color 0.2s; }
.footer__socials a:hover { color: rgba(255,255,255,0.95); }

/* ── CTA form — GDPR layout ─────────────────────────────────── */
.cta-box__form  { display: block; margin-bottom: 14px; }

.cta-box__row {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 16px;
}

/* Consent checkbox row */
.cta-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 520px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-muted);
}
.cta-consent-label a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-consent-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
  cursor: pointer;
  border-radius: 4px;
}
.cta-signup-success {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: #3D5C1E;
  line-height: 1.6;
  padding: 16px 0 4px;
}

.cta-box__form-error {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #9A2A1F;
  margin-top: 10px;
  min-height: 20px;
  line-height: 1.4;
}

/* ── Cookie banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--brand-darkest);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cookie-banner__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text a {
  color: var(--teal-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__actions { flex-shrink: 0; }
.cookie-banner__btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-btn);
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-banner__btn:hover  { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.cookie-banner__btn:focus-visible { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--teal-300); }

@media (max-width: 600px) {
  .cookie-banner__inner { padding: 16px 20px; }
  .cookie-banner__text  { font-size: 13px; }
  .cta-box__row { flex-direction: column; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values__grid   { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols   { grid-template-columns: repeat(2, 1fr); }
  .stats__grid    { gap: 32px; }
}

/* Mobile nav open state */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav__links.is-open .nav__cta { margin-left: 0; margin-top: 8px; }

@media (max-width: 768px) {
  .container       { padding: 0 20px; }
  .hero__inner     { padding: 64px 0; }
  .hero__content   { max-width: 100%; }
  .nav__links      { display: none; }
  .nav__hamburger  { display: flex; }
  .stats__grid     { grid-template-columns: 1fr; gap: 32px; }
  .audience__grid  { grid-template-columns: 1fr; }
  .cta-box         { padding: 40px 28px; }
  .footer__cols    { grid-template-columns: 1fr 1fr; }
  .footer__bottom  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .values__grid    { grid-template-columns: 1fr; }
  .section         { padding: 64px 0; }
  .cta-box__form   { flex-direction: column; }
  .hero__actions   { flex-direction: column; align-items: flex-start; }
  .footer__cols    { grid-template-columns: 1fr; }
  .stats__grid     { grid-template-columns: 1fr; }
}
