/* ============================================================
   PRISTINE AMERICA — Home Page Stylesheet v2
   Brand tokens sourced from pristine_america_brand_voice_and_copy_rules.md
   ============================================================ */

/* DESIGN TOKENS */
:root {
  --bg:          #EDE2C9;
  --bg-alt:      #DCD0B6;
  --bg-deep:     #1F1A12;
  --ink:         #1F1A12;
  --ink-muted:   #56493A;
  --rust:        #7A2F12;
  --rust-bright: #B43E16;
  --gold:        #C28614;
  --olive:       #4F4E27;
  --cream:       #F4EBD2;

  --font-display: 'Bitter', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

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

  --container-max: 1500px;
  --container-pad: clamp(1.5rem, 5vw, 3.5rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* UTILITY */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* SCROLL FADE-IN */
.fade-in { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 85%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* EYEBROW — standard small mono label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--rust);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow-light {
  color: var(--gold);
}

/* ============================================================
   CAUSE LABEL BANNER — display-scale cause identifier
   Used on Cause 01, 03, 04, 05, 06 sections
   ============================================================ */
.cause-label-banner {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.cause-display-label {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  line-height: 1;
}
.cause-display-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
/* Light variant — on cream bg, cause 03 */
.cause-label-banner--light .cause-display-label { color: var(--rust); }
.cause-label-banner--light .cause-display-name { color: var(--ink); }
/* Dark variant — on bg-deep */
.cause-label-banner--dark .cause-display-label { color: var(--gold); }
.cause-label-banner--dark .cause-display-name { color: var(--cream); }
/* Inline variant — on tinted bg */
.cause-label-banner--inline .cause-display-label { color: var(--rust); }
.cause-label-banner--inline .cause-display-name { color: var(--ink); }

/* DISPLAY HEADLINE */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.display-light { color: var(--cream); }
.display-footer {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    transform var(--transition-interactive);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--rust-bright);
  color: var(--cream);
}
.btn-primary:hover { background: var(--rust); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 14px 26px;
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--bg-deep);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* PULLQUOTE */
.pullquote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--rust-bright);
  border-left: 4px solid var(--rust-bright);
  padding-left: 28px;
  margin: 3rem 0;
  font-style: italic;
  line-height: 1.3;
}
.pullquote-dark {
  color: var(--cream);
  border-left-color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin: 2.5rem 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  transition: box-shadow 0.3s var(--ease-out);
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(31,26,18,0.08); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  color: var(--ink);
  height: 36px;
  transition: color var(--transition-interactive);
}
.nav-logo:hover { color: var(--rust-bright); }
.nav-logo svg { height: 36px; width: auto; }

.nav-links {
  display: flex;
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  transition: color var(--transition-interactive);
}
.nav-links a:hover { color: var(--rust-bright); }

.nav-cta { margin-left: 1.5rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: background var(--transition-interactive);
}
.nav-hamburger:hover span { background: var(--rust-bright); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem var(--container-pad) 2rem;
  gap: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.nav-mobile a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  transition: color var(--transition-interactive);
}
.nav-mobile a:hover { color: var(--rust-bright); }
.nav-mobile.open { display: flex; }

/* ============================================================
   FOLD SHARED
   ============================================================ */
.fold { position: relative; overflow: hidden; }

/* ============================================================
   FOLD 1 — HERO
   ============================================================ */
.fold-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-land {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(237,226,201,0.55) 0%,
    rgba(237,226,201,0.75) 45%,
    rgba(237,226,201,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding-top: 3rem;
}

/* Hero eyebrow — more prominent than standard eyebrow */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rust-bright);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid var(--rust-bright);
  background: rgba(180, 62, 22, 0.06);
  line-height: 1.5;
  white-space: nowrap;
}

/* Hero H1 — full three-beat display */
.hero-display {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--ink);
}
/* Middle lines — rust accent */
.hero-line-accent {
  color: var(--rust-bright);
}
/* Final line — soil beat */
.hero-line-soil {
  color: var(--ink-muted);
  font-style: italic;
}

.hero-deck {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 660px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   FOLD 2 — PROBLEM
   ============================================================ */
.fold-problem {
  background: var(--bg);
  padding: var(--section-pad) 0 0;
  border-top: 3px solid var(--rust-bright);
}
.fold-header { max-width: 900px; margin-bottom: 3rem; }
.problem-body {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.problem-body p {
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  font-size: 17px;
}

/* Dark stats strip — full-width */
.stats-strip {
  background: var(--bg-deep);
  width: 100%;
  margin-top: 3.5rem;
  border-top: 2px solid color-mix(in srgb, var(--rust-bright) 40%, transparent);
}
.stats-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: stretch;
  min-height: 110px;
}
.stats-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 2rem 2rem 2rem 0;
}
.stats-strip-item:first-child { padding-left: 0; }
.stats-strip-pipe {
  color: rgba(244,235,210,0.15);
  font-size: 2rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  flex-shrink: 0;
  user-select: none;
}
.stats-strip-glyph {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust-bright);
}
.stats-strip-divider {
  display: none;
}
.stats-strip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,235,210,0.45);
}
.stats-strip-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.stats-strip-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(244,235,210,0.5);
  line-height: 1.4;
}

/* ============================================================
   FOLD 3 — SOIL RECLAMATION
   ============================================================ */
.fold-soil-reclamation {
  background: var(--bg-alt);
  padding: var(--section-pad) 0;
}
.cause-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.cause-copy p {
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  font-size: 17px;
}
.cause-emphasis {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--rust-bright) !important;
  font-style: italic;
}

.inline-stats {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
  border-bottom: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
  margin: 2rem 0;
}
.inline-stat { display: flex; flex-direction: column; gap: 0.4rem; }
.inline-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--rust-bright);
  line-height: 1;
}
.inline-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Map */
.map-container {
  background: var(--bg);
  border: 1.5px solid var(--ink-muted);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.map-label-top { margin-bottom: 1rem; }
.map-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.powell-map { width: 100%; }
.map-caption {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1rem;
  text-align: center;
  opacity: 0.7;
}

/* ============================================================
   FOLD 4 — INFRASTRUCTURE
   ============================================================ */
.fold-infrastructure {
  background: var(--bg-deep);
  padding: var(--section-pad) 0;
}
.infra-layout {
  display: grid;
  grid-template-columns: 1fr 2.25fr;
  gap: 0;
  align-items: stretch;
}

/* Left column: big cause label */
.infra-label-col {
  display: flex;
  align-items: flex-start;
  padding-right: 4rem;
  border-right: 1px solid rgba(244,235,210,0.1);
}
.infra-cause-label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: sticky;
  top: 90px;
}
.infra-cause-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.infra-cause-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: block;
  opacity: 0.9;
}
.infra-cause-sub {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--gold);
  line-height: 1.15;
  display: block;
}

/* Right column: content */
.infra-content-col {
  padding-left: 4rem;
}
.infra-body p {
  color: rgba(244,235,210,0.75);
  margin-bottom: 1.1rem;
  font-size: 17px;
}
.infra-body { margin-bottom: 0; }

/* ============================================================
   FOLD 5 — FOOD QUALITY
   ============================================================ */
.fold-food-quality {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.split-copy p {
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  font-size: 17px;
}
.split-copy .btn { margin-top: 1.5rem; }

/* Contrast block */
.contrast-block {
  border: 1.5px dashed var(--ink-muted);
  background: rgba(31,26,18,0.04);
  position: sticky;
  top: 90px;
}
.contrast-col {
  padding: 2rem 2.25rem;
}
.contrast-divider {
  height: 1.5px;
  background: var(--ink-muted);
  opacity: 0.25;
}
.contrast-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.contrast-heading-rust { color: var(--rust-bright); }
.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contrast-list li {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contrast-list-crossed li {
  text-decoration: line-through;
  color: var(--ink-muted);
  opacity: 0.6;
}
.contrast-list-crossed li::before { content: ''; }
.contrast-list-check li::before {
  content: '✓';
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--rust-bright);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOLD 6 — CHEMICAL BURDEN
   ============================================================ */
.fold-chemical {
  background: var(--bg-alt);
  padding: 0;
}
.fold-chemical-inner {
  padding: var(--section-pad) 0;
}
/* Cause banner sits at section top, full bg */
.fold-chemical .cause-label-banner {
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto 2.5rem;
}

.chemical-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.chemical-body p {
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  font-size: 17px;
}
.chemical-body em { font-style: italic; color: var(--rust-bright); }
.chemical-body .btn { margin-top: 1.5rem; }

/* ============================================================
   FOLD 7 — FARMER OF THE FUTURE
   ============================================================ */
.fold-farmer {
  background: var(--bg-alt);
  padding: 0;
}

/* Label bar at top of farmer section — separated from body */
.fold-farmer-label-bar {
  background: var(--bg);
  padding: 2.5rem 0 2.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.fold-farmer-label-bar .cause-label-banner {
  margin-bottom: 0;
}

.farmer-inner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
}
.farmer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.farmer-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.farmer-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.farmer-body p {
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
  font-size: 17px;
}

/* ============================================================
   FOLD 8 — PRISTINE STANDARD
   ============================================================ */
.fold-standard {
  background: var(--bg-deep);
  padding: var(--section-pad) 0;
}
.standard-header {
  margin-bottom: 3.5rem;
}

/* Full-width title — no max-width constraint */
.standard-title {
  max-width: none;
  width: 100%;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}

.standard-intro {
  color: rgba(244,235,210,0.75);
  font-size: 17px;
  margin-bottom: 1.1rem;
  line-height: 1.6;
  max-width: 760px;
}

/* Five-score grid */
.five-score-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1.5px dashed rgba(244,235,210,0.2);
  margin-bottom: 3rem;
}
.score-card {
  padding: 2rem 1.5rem;
  border-right: 1.5px dashed rgba(244,235,210,0.2);
  background: rgba(244,235,210,0.04);
}
.score-card:last-child { border-right: none; }
.score-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rust-bright);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.score-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
/* Brighter score descriptor text */
.score-desc {
  font-size: 13px;
  color: rgba(244,235,210,0.8);
  line-height: 1.55;
  font-family: var(--font-body);
}
.standard-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOLD 9 — JOIN
   ============================================================ */
.fold-join {
  background: var(--bg);
  padding: var(--section-pad) 0;
  border-top: 3px solid var(--rust-bright);
}

/* "Join the Movement" label at same display scale as cause labels */
.join-movement-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--rust-bright);
  line-height: 1;
  /* Override mono treatment from .cause-display-label */
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  letter-spacing: -0.02em !important;
}

.join-header { margin-bottom: 3.5rem; }

/* Full-width join title */
.join-title {
  max-width: none;
  width: 100%;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  margin-top: 1rem;
}

.join-intro {
  font-size: 17px;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  max-width: 640px;
  margin-top: 1.5rem;
}
.join-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rust-bright);
  font-style: italic;
  margin-top: 0.5rem;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
  margin-bottom: 3.5rem;
}
.lane-card {
  padding: 2.5rem 2rem;
  border-right: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lane-card:last-child { border-right: none; }

.lane-icon {
  width: 32px;
  height: 32px;
  color: var(--rust-bright);
}
.lane-icon svg {
  width: 100%;
  height: 100%;
}

/* Lane tag — bigger, more prominent */
.lane-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}

.lane-audience {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.5;
}
.lane-body {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  flex: 1;
}
.lane-btn {
  align-self: flex-start;
  font-size: 12px;
  padding: 12px 20px;
}

/* Follow block */
.follow-block {
  border-top: 1.5px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding-top: 3rem;
}
.follow-text {
  color: var(--ink-muted);
  font-size: 16px;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.follow-form {
  display: flex;
  gap: 0;
  max-width: 500px;
}
.follow-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--cream);
  border: 1.5px solid var(--ink-muted);
  border-right: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition-interactive);
}
.follow-input::placeholder { color: var(--ink-muted); opacity: 0.5; }
.follow-input:focus { border-color: var(--rust-bright); }
.follow-form .btn { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  padding: var(--section-pad) 0 3rem;
}

.footer-movement-line {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(244,235,210,0.1);
  text-align: center;
}

/* ── Footer quote rotator ─────────────────────────────── */
.footer-rotator {
  position: relative;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-rotator-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  text-align: center;
  padding: 0 1rem;
}
.footer-rotator-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  inset: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
/* Footer col head — 10% larger than before (was 10px → 11px) */
.footer-col-head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
/* Footer links — 10% larger (was 13px → ~14px) */
.footer-col a {
  font-size: 14px;
  color: rgba(244,235,210,0.6);
  transition: color var(--transition-interactive);
  line-height: 1.4;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(244,235,210,0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
/* Footer copy — 10% larger (was 10px → 11px) */
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,235,210,0.4);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
/* Footer bottom links — 10% larger (was 10px → 11px) */
.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,235,210,0.4);
  transition: color var(--transition-interactive);
}
.footer-links a:hover { color: var(--cream); }

/* Press & Media accent color */
.footer-link-accent {
  color: var(--gold) !important;
}
.footer-link-accent:hover { color: var(--cream) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .infra-layout {
    grid-template-columns: 1fr 2fr;
  }
  .infra-label-col {
    padding-right: 3rem;
  }
  .infra-content-col {
    padding-left: 3rem;
  }
}

@media (max-width: 1024px) {
  .five-score-grid { grid-template-columns: repeat(3, 1fr); }
  .score-card:nth-child(3) { border-right: none; }
  .score-card:nth-child(4),
  .score-card:nth-child(5) {
    border-top: 1.5px dashed rgba(244,235,210,0.2);
  }
  .score-card:nth-child(5) { border-right: none; }

  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .cause-layout { gap: 3rem; }
  .split-layout { gap: 3rem; }
  .chemical-layout { gap: 3rem; }

  .stats-strip-inner { flex-wrap: wrap; }
  .stats-strip-item { flex: 0 0 calc(50% - 1rem); min-width: 180px; }
  .stats-strip-pipe { display: none; }
  .stats-strip-item { border-right: 1px solid rgba(244,235,210,0.08); }
  .stats-strip-item:nth-child(even) { border-right: none; }
}

@media (max-width: 900px) {
  .infra-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .infra-label-col {
    border-right: none;
    border-bottom: 1px solid rgba(244,235,210,0.1);
    padding-right: 0;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .infra-cause-label {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    position: static;
  }
  .infra-cause-big {
    font-size: clamp(3rem, 8vw, 6rem);
  }
  .infra-content-col {
    padding-left: 0;
  }
}

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

  .cause-layout,
  .split-layout,
  .chemical-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cause-visual { order: -1; }
  .map-container { position: static; }

  .five-score-grid { grid-template-columns: 1fr 1fr; }
  .score-card:nth-child(2) { border-right: none; }
  .score-card:nth-child(3),
  .score-card:nth-child(4),
  .score-card:nth-child(5) {
    border-top: 1.5px dashed rgba(244,235,210,0.2);
  }
  .score-card:nth-child(4) { border-right: none; }
  .score-card:nth-child(5) { border-right: none; grid-column: span 2; }

  .lane-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lane-card:nth-child(2) { border-right: none; }
  .lane-card:nth-child(3),
  .lane-card:nth-child(4) {
    border-top: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
  }
  .lane-card:nth-child(4) { border-right: none; }

  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  .inline-stats { flex-wrap: wrap; gap: 1.5rem; }

  .follow-form { flex-direction: column; }
  .follow-input { border-right: 1.5px solid var(--ink-muted); border-bottom: none; }

  .hero-content .display { font-size: clamp(2.25rem, 7vw, 3.5rem); }

  .stats-strip-item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(244,235,210,0.08); }
  .stats-strip-item:last-child { border-bottom: none; }

  .cause-display-name { font-size: clamp(1.75rem, 6vw, 3rem); }

  .standard-title { font-size: clamp(1.75rem, 5vw, 2.75rem); }
  .join-title { font-size: clamp(1.75rem, 5vw, 2.75rem); }

  /* Hero eyebrow — allow wrapping on mobile so it doesn't blow out layout */
  .hero-eyebrow {
    white-space: normal;
    font-size: 10px;
    letter-spacing: 0.15em;
    padding: 7px 14px;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Cause 2 infra — prevent large number overflowing on narrow viewports */
  .infra-cause-big {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .infra-cause-sub {
    font-size: clamp(0.9rem, 3.5vw, 1.25rem);
  }
  .infra-layout {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .lane-grid { grid-template-columns: 1fr; }
  .lane-card { border-right: none; border-bottom: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent); }
  .lane-card:last-child { border-bottom: none; }

  .five-score-grid { grid-template-columns: 1fr; }
  .score-card { border-right: none; }
  .score-card:nth-child(5) { grid-column: span 1; }

  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-row { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .standard-ctas { flex-direction: column; }

  .farmer-inner { padding: var(--section-pad) 0; }

  .cause-display-name { font-size: clamp(1.5rem, 7vw, 2.25rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .fade-in { opacity: 1 !important; }
}

/* ============================================================
   MEGA MENU
   ============================================================ */

/* Nav items — shared wrapper for plain links and mega triggers */
.nav-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  transition: color var(--transition-interactive);
  position: relative;
}
a.nav-item:hover { color: var(--rust-bright); }

/* Mega trigger button — looks identical to a nav link */
.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color var(--transition-interactive);
  white-space: nowrap;
}
.nav-mega-trigger:hover,
.nav-item--has-mega.is-open .nav-mega-trigger { color: var(--rust-bright); }

/* Chevron — rotates when open */
.nav-chevron {
  width: 10px;
  height: 7px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}
.nav-item--has-mega.is-open .nav-chevron { transform: rotate(180deg); }

/* Mega panel — full-width dropdown anchored to the nav bar */
.mega-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 68px; /* matches .nav-inner height */
  background: var(--bg);
  border-top: 2px solid color-mix(in srgb, var(--rust-bright) 30%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  box-shadow: 0 12px 40px rgba(31,26,18,0.12);
  z-index: 90;
  animation: mega-enter 200ms var(--ease-out) both;
}
.nav-item--has-mega.is-open .mega-panel { display: block; }

@keyframes mega-enter {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Inner layout — intro col + content col */
.mega-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2.5rem var(--container-pad);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Intro column */
.mega-col--intro {
  padding-right: 2rem;
  border-right: 1px solid rgba(31,26,18,0.1);
}
.mega-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.mega-intro-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.mega-see-all {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust-bright);
  text-decoration: none;
  transition: opacity var(--transition-interactive);
}
.mega-see-all:hover { opacity: 0.7; }

/* Content column — grid (for Causes) */
.mega-col--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Content column — list (for Work + People) */
.mega-col--list {
  display: flex;
  flex-direction: column;
}

/* Mega item — grid variant */
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  border-right: 1px solid rgba(31,26,18,0.08);
  border-bottom: 1px solid rgba(31,26,18,0.08);
  transition: background var(--transition-interactive);
}
.mega-item:hover { background: var(--bg-alt); }
/* Remove borders on last column and last row */
.mega-col--grid .mega-item:nth-child(3n)   { border-right: none; }
.mega-col--grid .mega-item:nth-last-child(-n+3) { border-bottom: none; }

/* Mega item — list variant */
.mega-item--list {
  padding: 0.85rem 0;
  border-right: none;
  border-bottom: 1px solid rgba(31,26,18,0.08);
  border-radius: 0;
}
.mega-item--list:last-child { border-bottom: none; }
.mega-item--list:hover { background: transparent; }
.mega-item--list .mega-item-name { color: var(--rust-bright); }

/* Number badge */
.mega-item-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--rust);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 18px;
}

/* Item name + desc */
.mega-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mega-item-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  transition: color var(--transition-interactive);
}
.mega-item:hover .mega-item-name { color: var(--rust-bright); }
.mega-item-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ---- MOBILE NAV ACCORDIONS ---- */
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color var(--transition-interactive);
}
.nav-mobile-toggle:hover,
.nav-mobile-toggle[aria-expanded="true"] { color: var(--rust-bright); }
.nav-mobile-toggle svg {
  width: 10px;
  height: 7px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}
.nav-mobile-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-mobile-sub {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.75rem 0 0.5rem 1rem;
  border-left: 2px solid color-mix(in srgb, var(--rust-bright) 30%, transparent);
  margin-left: 0.25rem;
}
.nav-mobile-sub.open { display: flex; }
.nav-mobile-sub a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.nav-mobile-sub a:hover { color: var(--rust-bright); }

/* ---- RESPONSIVE: hide mega on small screens ---- */
@media (max-width: 900px) {
  .nav-item--has-mega .mega-panel { display: none !important; }
  .nav-item--has-mega .nav-mega-trigger { display: none; }
}
