@font-face {
  font-family: "Founders Grotesk";
  src: url("../font/FoundersGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../font/FoundersGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../font/FoundersGrotesk-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../font/FoundersGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-green-dark: #064e21;      /* JNI Brand Forest Green */
  --color-copy: #18331d;            /* JNI Copy Charcoal-Green */
  --color-sage: #e9f0e6;            /* JNI Soft Sage Nav Background */
  --color-yellow: #f9eebb;          /* JNI Harvest Yellow Accent */
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  /* clip on html — doesn't break position: sticky like body overflow-x:hidden does in Safari */
}

body {
  font-family: 'Founders Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--color-copy);
  background-color: #f5f5f5;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background-color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}

.preloader--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader__text {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: -0.02em;
}

a,
button,
label[for],
.hero-link,
.audience-paths__item,
.nav-toggle,
.nav-overlay__close,
summary,
[role="button"] {
  cursor: pointer;
}

/* ── Shared content container ── */
.content-container {
  width: min(100% - 2rem, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

/* ── Floating pill nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: clamp(0.85rem, 2vw, 1.35rem);
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.nav-brand {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a853;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 16rem;
  opacity: 1;
  overflow: hidden;
}

.nav-brand:hover,
.nav-brand:focus-visible {
  color: #2b5731;
}

.nav-overlay {
  display: none;
}

.nav-overlay__head {
  display: none;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem clamp(0.85rem, 1.8vw, 1.65rem);
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding-block: 0.25rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--color-yellow);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  line-height: 0;
  border: none;
  border-radius: 9999px;
  background: var(--color-yellow);
  box-shadow: 0 4px 20px rgba(249, 238, 187, 0.35);
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: auto;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle__line {
  display: block;
  height: 3.5px;
  border-radius: 999px;
  background-color: #19331d;
  flex-shrink: 0;
}

.nav-toggle__line:nth-child(1) {
  width: 1.35rem;
}

.nav-toggle__line:nth-child(2) {
  width: 0.85rem;
}

.nav-toggle__line:nth-child(3) {
  width: 1.15rem;
}

/* ── Scrolled: hamburger only, right, glass circle ── */
.site-header.is-collapsed .content-container {
  display: flex;
  justify-content: flex-end;
}

.site-header.is-collapsed .navbar {
  width: auto;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-content: flex-end;
  transition: none;
}

.site-header.is-collapsed .nav-brand {
  max-width: 0;
  opacity: 0;
  margin-right: 0;
  pointer-events: none;
  transition: none;
}

.site-header.is-collapsed .nav-toggle {
  display: inline-flex;
  pointer-events: auto;
  transition: none;
}

/* Overlay is completely off-screen and off-GPU when closed — prevents backdrop-filter flash */
/* (Handled by default .nav-overlay display: none) */

/* Only paint the full-screen overlay when the menu is actually open */
.navbar.is-open .nav-overlay {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100dvh;
  gap: 1rem;
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 1rem;
  background: #19331d;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  animation: navOverlayIn 0.22s ease forwards;
}

@keyframes navOverlayIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextCinematic {
  0% {
    opacity: 0;
    filter: blur(12px);
    letter-spacing: -0.1em;
    transform: scale(0.96) translateY(20px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: -0.03em;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.is-open .nav-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar.is-open .nav-overlay__brand {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #d4a853;
  text-decoration: none;
}

.navbar.is-open .nav-overlay__close {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.is-open .nav-overlay__close:hover,
.navbar.is-open .nav-overlay__close:focus-visible {
  color: #fff;
  transform: rotate(90deg) scale(1.15);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar.is-open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0;
}

.navbar.is-open .nav-links a {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}


@media (prefers-reduced-motion: reduce) {

  .navbar,
  .nav-brand,
  .nav-toggle {
    transition-duration: 0.01ms;
  }
}

/*
 * Stage height is calculated by JS and written inline.
 * It = viewportH + column travel distance + padding.
 */
.hero-stage {
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  overflow: hidden;
}

.hero-content {
  height: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero>.content-container {
  height: 100%;
}

/* ── LEFT: text, never moves ── */
.hero-left {
  position: relative;
  padding: calc(12vh + 6rem) 0 9vh 0;
}

.hero-title-wrap {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #19331d;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.accent-serif {
  font-family: 'Newsreader', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #19331d;
  display: inline-block;
}

.hero-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-word {
  display: inline-block;
  transform: translateY(110%);
  animation: heroWordReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

@keyframes heroWordReveal {
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-title,
  .hero-copy {
    opacity: 1 !important;
  }

  .hero-word {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
}

.hero-subline {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.4;
  color: #19331d;
}

.hero-subline:empty {
  display: none;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  text-decoration: none;
  cursor: var(--jni-cursor-pointer, pointer);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

.hero-link__text {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #19331d;
  letter-spacing: -0.01em;
}

body.is-loaded .hero-link {
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-link:hover {
  transform: scale(1.05);
}

/* Icon Container */
.hero-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-yellow);
  clip-path: polygon(29% 0%,
      71% 0%,
      100% 29%,
      100% 71%,
      71% 100%,
      29% 100%,
      0% 71%,
      0% 29%);
  color: var(--color-copy);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  flex-shrink: 0;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.hero-link__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  animation: bounceDown 1.8s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

/* Hover effects */
.hero-link:hover .hero-link__icon {
  transform: scale(1.08);
  background-color: #d4eb00;
  /* slightly darker lime-green on hover */
}

.hero-link:focus-visible {
  outline: 2px solid #064e21;
  outline-offset: 4px;
}

.hero-copy {
  max-width: 560px;
  margin-top: 1.25rem;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.4;
  color: #19331d;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ── RIGHT: clipping boundary for the card column ── */
.hero-right {
  position: relative;
  overflow: visible;
}

/*
 * Each card: position absolute, same z-index order as the AI explained.
 * JS drives left, top, and transform: rotate() per card.
 * Higher-indexed cards have higher z-index — they enter from below
 * and slide ON TOP of the cards already visible.
 */
.card {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(180px, 45vw, 420px);
  aspect-ratio: 2 / 3;
  transform-origin: center center;
  will-change: transform, opacity;
}

.card-float-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  background-size: cover;
  background-position: center;
  animation: heroCardFloat 6s ease-in-out infinite;
  will-change: transform;
}

.card-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.card--1 .card-float-wrapper {
  background-image: url('../img/hero-cards/farmer-woman-1.png');
  animation-delay: 0s;
  animation-duration: 6s;
}

.card--2 .card-float-wrapper {
  background-image: url('../img/hero-cards/hero-1.jpeg');
  animation-delay: -1.2s;
  animation-duration: 6.8s;
}

.card--3 .card-float-wrapper {
  background-image: url('../img/hero-cards/hero-2.jpeg');
  animation-delay: -2.4s;
  animation-duration: 7.5s;
}

.card--4 .card-float-wrapper {
  background-image: url('../img/hero-cards/farmer-woman-2.png');
  animation-delay: -3.6s;
  animation-duration: 6.2s;
}

.card--5 .card-float-wrapper {
  background-image: url('../img/hero-cards/hero-3.jpeg');
  animation-delay: -4.8s;
  animation-duration: 8s;
}

.card--6 .card-float-wrapper {
  background-image: url('../img/hero-cards/farmer-man-2.png');
  animation-delay: -5.5s;
  animation-duration: 7.2s;
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-float-wrapper {
    animation: none !important;
  }
}

/* ── Seeds / Commodities section ── */
.seeds-stage {
  position: relative;
}

.seeds-section {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
  /* Video fallback */
}

.seeds-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/*
 * Gradient vignette: solid dark at top (text zone) → transparent at bottom (video visible).
 */
.seeds-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
      var(--color-green-dark) 0%,
      var(--color-green-dark) 25%,
      rgba(6, 78, 33, 0.85) 45%,
      rgba(6, 78, 33, 0.2) 75%,
      rgba(0, 0, 0, 0.3) 100%);
}

.seeds-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-top: clamp(6.5rem, 14vh, 10rem);
}

.seeds-headline {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin: 0 0 1.25rem;
}

.seeds-paragraph {
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.seeds-word {
  opacity: 0.22;
  will-change: opacity;
}

@media (max-width: 860px) {
  .seeds-text-wrap {
    padding-top: 5rem;
  }

  .seeds-vignette {
    background: linear-gradient(to bottom,
        var(--color-green-dark) 0%,
        var(--color-green-dark) 55%,
        rgba(6, 78, 33, 0.9) 70%,
        rgba(6, 78, 33, 0.4) 85%,
        rgba(0, 0, 0, 0.3) 100%);
  }

  .seeds-headline {
    font-size: 18px;
  }

  .seeds-paragraph {
    font-size: 32px;
    max-width: 100%;
  }
}

.statement-stage {
  position: relative;
  background-color: var(--color-yellow);
}

.statement-section {
  position: sticky;
  top: 0;
  height: 56rem;
  overflow: clip;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  background-color: var(--color-yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.22 0 0 0 0.72 0.18 0 0 0 0.58 0.08 0 0 0 0.22 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.statement-text-wrap {
  flex-shrink: 0;
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  position: relative;
  z-index: 1;
  text-align: center;
}

.statement-headline {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #19331d;
  margin: 0 0 1.75rem;
}

.statement-paragraph {
  max-width: 68rem;
  margin-inline: auto;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #19331d;
}

@media (max-width: 860px) {
  .statement-text-wrap {
    padding-top: 5rem;
  }

  .statement-headline {
    font-size: 18px;
  }

  .statement-paragraph {
    font-size: 32px;
    max-width: 100%;
  }
}

/* ── Statement section cards (below text) ── */
.statement-cards-wrap {
  position: relative;
  flex: 0 0 25rem;
  height: 25rem;
  width: 100%;
  max-width: min(100% - 2rem, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  padding-bottom: 5rem;
  box-sizing: border-box;
  z-index: 1;
}

.statement-cards {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 5rem;
  overflow: visible;
}

.statement-card {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(140px, 15vw, 210px);
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transform-origin: center center;
  will-change: transform;
  background-size: cover;
  background-position: center;
}

.sc--1 {
  background-image: url('../img/hero-cards/farmer-woman-1.png');
}

.sc--2 {
  background-image: url('../img/hero-cards/farmer-man-1.png');
}

.sc--3 {
  background-image: url('../img/hero-cards/hero-2.jpeg');
}

.sc--4 {
  background-image: url('../img/hero-cards/farmer-woman-2.png');
}

.sc--5 {
  background-image: url('../img/hero-cards/hero-1.jpeg');
}

.sc--6 {
  background-image: url('../img/hero-cards/hero-3.jpeg');
}

/* ── Three stages / Scroll Words ── */
.three-stages-word,
.audience-word {
  opacity: 0.22;
  will-change: opacity;
}

.three-stages-word--accent {
  color: #d4a853;
}

.three-stages {
  padding: clamp(6.5rem, 14vh, 10rem) 0 clamp(6rem, 14vh, 10rem);
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .three-stages {
    padding: 4rem 0 5rem;
  }
}

.three-stages__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(3.5rem, 8vh, 5.5rem);
}

.three-stages__headline {
  max-width: clamp(20rem, 50vw, 48rem);
  margin: 0 auto;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #19331d;
}

.three-stages__headline-accent {
  color: #d4a853;
}

.three-stages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.three-stages__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e1e5e0;
  border-radius: 24px;
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem) clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 10px 30px -15px rgba(25, 51, 29, 0.04),
    0 2px 6px -4px rgba(25, 51, 29, 0.02);
  transition: 
    transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform-reveal 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, box-shadow;
  
  /* Initial hidden state for reveal animation */
  opacity: 0;
  transform: translateY(40px);
}

.three-stages__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger card reveals on desktop */
@media (min-width: 992px) {
  .three-stages__grid .three-stages__card:nth-child(1) { transition-delay: 0s, 0s, 0s, 0s, 0s; }
  .three-stages__grid .three-stages__card:nth-child(2) { transition-delay: 0s, 0s, 0s, 0.15s, 0.15s; }
  .three-stages__grid .three-stages__card:nth-child(3) { transition-delay: 0s, 0s, 0s, 0.3s, 0.3s; }
}

@media (prefers-reduced-motion: reduce) {
  .three-stages__card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.three-stages__card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 60px -25px rgba(6, 78, 33, 0.12),
    0 10px 20px -15px rgba(6, 78, 33, 0.06);
  border-color: #cdd5cb;
}

/* Badge label at top overlapping the card border */
.three-stages__card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-copy);
  background: var(--color-yellow);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  border: 1px solid #d4a853;
  white-space: nowrap;
}

/* Title */
.three-stages__card-title {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-copy);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

/* Text paragraph inside card */
.three-stages__card-text {
  font-size: clamp(16px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(25, 51, 29, 0.85);
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

/* Card Figure */
.three-stages__card-figure {
  margin: 0;
  width: 100%;
}

.three-stages__card-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-sage);
  box-shadow: inset 0 0 20px rgba(25, 51, 29, 0.03);
}

.three-stages__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.three-stages__card:hover .three-stages__card-image {
  transform: scale(1.07);
}

@media (max-width: 991px) {
  .three-stages__grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-brand {
    color: #19331d;
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-header.is-collapsed .navbar {
    display: flex;
  }

  .site-header.is-collapsed .nav-toggle {
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    z-index: 101;
  }

  .navbar.is-open .nav-toggle {
    display: none !important;
  }

  .nav-overlay {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100dvh;
    gap: 1rem;
    position: fixed;
    inset: 0;
    z-index: 90;
    padding: 1rem;
    background: #19331d;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 0.32s ease,
      transform 0.32s ease,
      visibility 0s linear 0.32s;
  }

  .navbar.is-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.32s ease,
      transform 0.32s ease,
      visibility 0s;
  }

  .nav-overlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-overlay__brand {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #d4a853;
    text-decoration: none;
  }

  .nav-overlay__close {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    background: transparent;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-overlay__close:hover {
    color: #fff;
    transform: rotate(90deg) scale(1.15);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0;
  }

  .nav-links a {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .content-container {
    width: auto;
    padding-inline: 1.25rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-left {
    height: auto;
    flex-shrink: 0;
    padding: clamp(6rem, 12vh, 8rem) 0 1rem 0;
    z-index: 10;
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 3.25rem);
    line-height: 0.95;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    line-height: 1.2;
  }

  .hero-right {
    height: auto;
    flex-grow: 1;
    min-height: 25vh;
    overflow: visible;
  }

  .card {
    width: clamp(200px, 55vw, 320px);
  }
}

/* ════════════════════════════════════════
   Track Record Section
   ════════════════════════════════════════ */

.section-track {
  padding-top: clamp(5rem, 12vh, 8rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
  background-color: var(--color-green-dark);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.section-track>.content-container,
.section-track>.track-alt {
  position: relative;
  z-index: 1;
}

/* ── Track Record Inner ── */
.track-inner {
  display: block;
}

/* ── Header ── */
.track-header {
  display: block;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.track-headline {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

.track-headline__accent {
  color: var(--color-yellow);
}

/* ── Stats list ── */
.track-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.track-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2rem, 4.5vh, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.track-stat:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.track-stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.track-stat:nth-child(1) {
  transition-delay: 0s;
}

.track-stat:nth-child(2) {
  transition-delay: 0.08s;
}

.track-stat:nth-child(3) {
  transition-delay: 0.16s;
}

.track-stat:nth-child(4) {
  transition-delay: 0.24s;
}

.track-stat:nth-child(5) {
  transition-delay: 0.32s;
}

.track-stat__label {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  margin: 0;
  max-width: 34rem;
  text-align: left;
}

.track-stat__value-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.track-stat__value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.25rem 0.5rem;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.track-stat__prefix {
  font-size: clamp(1.5rem, 2.2vw, 2.75rem);
  font-weight: 500;
  color: rgba(230, 255, 0, 0.7);
  letter-spacing: 0.04em;
  align-self: center;
}

.track-stat__value {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-yellow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.track-stat__value--large {
  font-size: clamp(4rem, 7.5vw, 7.5rem);
}

.track-stat__years-label {
  font-size: clamp(1.85rem, 3.5vw, 4rem);
  font-weight: 600;
  color: var(--color-yellow);
  letter-spacing: -0.02em;
  align-self: baseline;
}

.track-stat__badge-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.track-stat__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: var(--color-yellow);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-copy);
  text-transform: uppercase;
  margin-left: 0;
  align-self: center;
}

@media (max-width: 900px) {
  .track-header {
    margin-bottom: clamp(2rem, 4vh, 3.5rem);
  }

  .track-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-block: 2.25rem;
  }

  .track-stat__label {
    max-width: none;
    font-size: 1.15rem;
  }

  .track-stat__value-block {
    align-items: flex-start;
    width: 100%;
  }

  .track-stat__value-wrap {
    justify-content: flex-start;
    width: 100%;
  }

  .track-stat__badge-wrap {
    justify-content: flex-start;
    width: 100%;
  }

  .track-stat__value {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .track-stat__value--large {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .track-stat__years-label {
    font-size: clamp(1.75rem, 7vw, 2.75rem);
  }
}

/* ════════════════════════════════════════
   Value Home Section
   ════════════════════════════════════════ */

.value-home-stage {
  position: relative;
}

.value-home {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  padding-top: clamp(4.5rem, 9vh, 7.5rem);
  padding-bottom: clamp(3.5rem, 8vh, 6.5rem);
}

.value-home__inner {
  width: 100%;
  max-width: clamp(30rem, 80vw, 75rem);
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2rem;
}

/* ── Value Home section cards (below text) ── */
.value-home-cards-wrap {
  position: relative;
  flex: 0 1 25rem;
  height: clamp(16rem, 28vh, 25rem);
  width: 100%;
  max-width: min(100% - 2rem, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
  box-sizing: border-box;
  z-index: 1;
}

.value-home-cards {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: clamp(2rem, 5vh, 4rem);
  overflow: visible;
}

.value-home-card {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(140px, 15vw, 210px);
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transform-origin: center center;
  will-change: transform;
  background-size: cover;
  background-position: center;
}

.vhc--1 {
  background-image: url('../img/hero-cards/farmer-man-2.png');
}

.vhc--2 {
  background-image: url('../img/hero-cards/produce-hands-1.png');
}

.vhc--3 {
  background-image: url('../img/hero-cards/farmer-woman-2.png');
}

.vhc--4 {
  background-image: url('../img/hero-cards/hero-2.jpeg');
}

.vhc--5 {
  background-image: url('../img/hero-cards/hero-3.jpeg');
}

.value-home__headline {
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4a853;
  margin: 0 0 1.25rem;
}

.value-home__headline-accent {
  color: inherit;
}

.value-home__body {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #19331d;
  margin: 0;
}

.value-home-word {
  opacity: 0.22;
  will-change: opacity;
}

.value-home-word--accent {
  color: var(--color-copy);
  background-color: var(--color-yellow);
  padding: 0.05rem 0.25rem;
  border-radius: 4px;
}

@media (max-width: 860px) {
  .value-home-stage {
    height: auto !important;
  }

  .value-home {
    position: relative !important;
    top: auto;
    height: auto;
    overflow: visible;
    padding-top: 4rem;
    padding-bottom: 4rem;
    justify-content: center;
    gap: 2rem;
  }

  .value-home__inner {
    margin-bottom: 0;
  }

  .value-home__headline {
    font-size: 18px;
  }

  .value-home__body {
    font-size: 32px;
  }

  .value-home-cards-wrap {
    flex: 0 0 clamp(18rem, 40vh, 24rem);
    height: clamp(18rem, 40vh, 24rem);
    padding-bottom: 0;
    width: 100%;
  }

  .value-home-cards {
    bottom: 0;
  }

  .value-home-card {
    width: clamp(165px, 45vw, 210px);
  }
}

/* ── Section: Audience Paths / CTAs ── */
.audience-paths__item {
  will-change: transform, opacity;
  transform-origin: center center;
}

.audience-paths {
  padding: clamp(4.5rem, 10vh, 7.5rem) 0;
  background-color: var(--color-green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.22 0 0 0 0.72 0.18 0 0 0 0.58 0.08 0 0 0 0.22 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Split Grid Layout */
.audience-paths__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.audience-paths__left {
  position: sticky;
  top: clamp(2rem, 5vh, 4rem);
}

.audience-paths__title {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #d4a853;
  margin: 0;
  text-transform: none;
  text-align: left;
}

/* Card List */
.audience-paths__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual Card (Outer Link) */
.audience-paths__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vh, 2.5rem);
  background: #ffffff;
  border: 1px solid #e1e5e0;
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-paths__card:hover,
.audience-paths__card:focus-visible {
  background: #fafbfa;
  border-color: #cdd5cb;
  transform: translateY(-3px);
  outline: none;
}

/* Card CTA Area (Left Column inside Card) */
.audience-paths__card-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.audience-paths__role {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #19331d;
}

/* Button style inside Card */
.audience-paths__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
  text-transform: capitalize;
  border: 1.5px solid #19331d;
  border-radius: 9999px;
  padding: 0.4rem 0.5rem 0.4rem 1.25rem;
  background-color: #19331d;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-paths__card:hover .audience-paths__btn {
  background-color: #064e21;
  border-color: #064e21;
  gap: 1rem;
}

/* Octagonal Icon */
.audience-paths__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-yellow);
  clip-path: polygon(29% 0%,
      71% 0%,
      100% 29%,
      100% 71%,
      71% 100%,
      29% 100%,
      0% 71%,
      0% 29%);
  color: #19331d;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  flex-shrink: 0;
}

.audience-paths__icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-paths__card:hover .audience-paths__icon {
  transform: scale(1.08);
  background-color: #d4eb00;
}

.audience-paths__card:hover .audience-paths__icon svg {
  transform: translate(1px, -1px);
}

/* Description Area (Right Column inside Card) */
.audience-paths__card-info {
  display: flex;
  align-items: center;
}

.audience-paths__desc {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.55;
  color: rgba(25, 51, 29, 0.7);
  text-align: left;
  transition: color 0.2s ease;
}

.audience-paths__card:hover .audience-paths__desc {
  color: #19331d;
}

/* Responsive styles */
@media (max-width: 960px) {
  .audience-paths__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .audience-paths__left {
    position: static;
  }

  .audience-paths__title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .audience-paths__card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .audience-paths__card-cta {
    gap: 1rem;
  }

  .audience-paths__role {
    font-size: 32px;
  }

  .audience-paths__desc {
    font-size: 17px;
    line-height: 1.2;
  }
}

/* ════════════════════════════════════════
   Landing Close Section
   ════════════════════════════════════════ */

.landing-close {
  padding: clamp(6rem, 14vh, 11rem) 0 clamp(4rem, 8vh, 6rem);
  background: #f5f5f5;
}

.landing-close__inner {
  max-width: clamp(20rem, 58vw, 52rem);
  margin-inline: auto;
  text-align: center;
}

.landing-close__statement {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #19331d;
}

.landing-close__accent {
  color: var(--color-copy);
  background-color: var(--color-yellow);
  padding: 0.05rem 0.35rem;
  border-radius: 6px;
}

@media (max-width: 860px) {
  .landing-close {
    padding-top: clamp(4rem, 8vh, 5rem);
  }
}

/* ════════════════════════════════════════
   Landing Footer
   ════════════════════════════════════════ */

.landing-footer {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0 clamp(3rem, 7vh, 4.5rem);
  background-color: var(--color-green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0.22 0 0 0 0.72 0.18 0 0 0 0.58 0.08 0 0 0 0.22 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  color: rgba(255, 255, 255, 0.88);
}

.landing-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr) minmax(0, 0.65fr);
  grid-template-areas:
    "brand nav nav"
    "meta  legal legal";
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: clamp(3rem, 7vh, 4.5rem);
  align-items: start;
}

.landing-footer__brand {
  grid-area: brand;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-yellow);
  text-decoration: none;
  align-self: start;
}

.landing-footer__brand:hover,
.landing-footer__brand:focus-visible {
  color: var(--color-yellow);
  outline: none;
}

.landing-footer__nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  justify-self: end;
  width: 100%;
  max-width: 28rem;
}

.landing-footer__nav-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.landing-footer__nav-col a {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-footer__nav-col a:hover,
.landing-footer__nav-col a:focus-visible {
  color: var(--color-yellow);
  outline: none;
}

.landing-footer__meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.landing-footer__address {
  margin: 0;
  font-style: normal;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.landing-footer__external {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.landing-footer__external a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-footer__external a:hover,
.landing-footer__external a:focus-visible {
  color: var(--color-yellow);
  outline: none;
}

.landing-footer__arrow {
  font-size: 0.9em;
  line-height: 1;
}

.landing-footer__legal {
  grid-area: legal;
  display: grid;
  gap: clamp(1.25rem, 2.5vh, 1.75rem);
  width: 100%;
  max-width: 28rem;
  justify-self: end;
}

.landing-footer__legal p {
  margin: 0;
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .landing-footer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "nav   nav"
      "meta  meta"
      "legal legal";
    row-gap: clamp(2rem, 5vh, 3rem);
  }

  .landing-footer__nav {
    justify-self: start;
    max-width: none;
  }

  .landing-footer__legal {
    justify-self: start;
    max-width: none;
  }

  .landing-footer__nav-col a,
  .landing-footer__external a {
    font-size: 1.25rem;
    /* ~20px */
  }

  .landing-footer__address {
    font-size: 1.15rem;
    /* ~18px */
    line-height: 1.5;
  }

  .landing-footer__nav-col,
  .landing-footer__external {
    gap: 0.85rem;
  }
}

@media (max-width: 560px) {
  .landing-footer__nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .landing-footer__meta {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}



/* ════════════════════════════════════════
   Stacked Sections Scroll Effect
   ════════════════════════════════════════ */

/* Only sections whose JS extends the stage height by 100vh
   get the negative margin so they overlap the pinned stage above. */
.seeds-stage,
.statement-stage {
  margin-top: -100vh;
}

/* Stack context and depth shadows */
.hero-stage {
  position: relative;
  z-index: 1;
}

.seeds-stage {
  position: relative;
  z-index: 2;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.10);
}

.statement-stage {
  position: relative;
  z-index: 3;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.10);
}

.three-stages {
  position: relative;
  z-index: 4;
  background-color: #f5f5f5;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.10);
}

.section-track {
  position: relative;
  z-index: 5;
}

.value-home-stage {
  position: relative;
  z-index: 6;
}

.audience-paths {
  position: relative;
  z-index: 7;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.10);
}

.audience-paths {
  position: relative;
  z-index: 7;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.10);
}