/* ==========================================================================
   Western Foods — CPG landing page
   Palette: WF navy #1C3E70, WF green #076746
   Fonts: Neusa Next Standard (headers) + Montserrat (body)
   ========================================================================== */

:root {
  /* Brand */
  --wf-navy: #1c3e70;
  --wf-navy-deep: #122b4f;
  --wf-navy-soft: #2a4f88;
  --wf-green: #076746;
  --wf-green-deep: #04492f;
  --wf-green-soft: #0b8059;

  /* Surfaces */
  --bg: #f7f4ec; /* warm off-white */
  --bg-cream: #efe9da;
  --bg-light: #faf7f0;
  --surface: #ffffff;
  --line: rgba(28, 62, 112, 0.14);
  --line-strong: rgba(28, 62, 112, 0.22);

  /* Text */
  --ink: #1a2540;
  --ink-soft: rgba(26, 37, 64, 0.74);
  --ink-mute: rgba(26, 37, 64, 0.58);
  --ink-light: rgba(255, 255, 255, 0.86);
  --ink-light-mute: rgba(255, 255, 255, 0.66);

  /* Fonts */
  --font-display: "Neusa Next Standard", "Neusa Next Std", "Oswald", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Type scale */
  --text-xs: clamp(0.72rem, 0.66rem + 0.2vw, 0.78rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.18vw, 0.92rem);
  --text-base: clamp(0.98rem, 0.92rem + 0.25vw, 1.07rem);
  --text-lg: clamp(1.13rem, 1.05rem + 0.35vw, 1.27rem);
  --text-xl: clamp(1.45rem, 1.3rem + 0.7vw, 1.85rem);
  --text-2xl: clamp(1.95rem, 1.6rem + 1.6vw, 2.85rem);
  --text-3xl: clamp(2.5rem, 2rem + 2.6vw, 4.1rem);
  --text-hero: clamp(3rem, 2.4rem + 3.4vw, 5.25rem);
  --text-metric: clamp(3rem, 2.4rem + 4.5vw, 6.25rem);

  /* Space */
  --container: 1240px;
  --gutter: clamp(1.25rem, 2vw + 0.25rem, 2.5rem);
  --section-y: clamp(4.5rem, 4vw + 3rem, 7.5rem);

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-soft: 0 2px 8px rgba(28, 62, 112, 0.06), 0 12px 32px rgba(28, 62, 112, 0.08);
  --shadow-card: 0 1px 2px rgba(28, 62, 112, 0.05), 0 8px 24px rgba(28, 62, 112, 0.07);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ol, ul { list-style: none; padding: 0; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--wf-navy);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ===== Typography helpers ===== */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-green);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.78); }

.footnote {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 2.5rem;
  max-width: 80ch;
}
.footnote--light { color: var(--ink-light-mute); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg {
  padding: 1rem 1.6rem;
  font-size: var(--text-base);
}
.btn--primary {
  background: var(--wf-green);
  color: white;
  border-color: var(--wf-green);
}
.btn--primary:hover {
  background: var(--wf-green-deep);
  border-color: var(--wf-green-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(7, 103, 70, 0.3);
}
.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 244, 236, 0.96);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__links a {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--wf-navy); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--wf-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 0.5rem;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { gap: 1rem; }
  .nav__logo img { height: 34px; }
  .nav__cta { margin-left: auto; padding: 0.65rem 1rem; font-size: var(--text-xs); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.82);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 26% 42%, rgba(18, 43, 79, 0.78) 0%, rgba(18, 43, 79, 0.58) 34%, rgba(18, 43, 79, 0.18) 58%, rgba(18, 43, 79, 0.45) 100%),
    linear-gradient(180deg, rgba(18, 43, 79, 0.76) 0%, rgba(18, 43, 79, 0.48) 30%, rgba(18, 43, 79, 0.86) 100%),
    linear-gradient(90deg, rgba(18, 43, 79, 0.96) 0%, rgba(18, 43, 79, 0.76) 42%, rgba(18, 43, 79, 0.34) 72%, rgba(18, 43, 79, 0.58) 100%);
}
@media (max-width: 720px) {
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(18, 43, 79, 0.88) 0%, rgba(18, 43, 79, 0.8) 55%, rgba(18, 43, 79, 0.92) 100%);
  }
}

.hero__content {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  margin-block: clamp(5rem, 10vh, 7rem) clamp(3rem, 7vh, 5rem);
  max-width: 980px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(18, 43, 79, 0.68) 0%, rgba(18, 43, 79, 0.52) 58%, rgba(18, 43, 79, 0.18) 100%);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0.5rem 0 1.5rem;
  max-width: 18ch;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
  margin-bottom: 2.25rem;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}
.hero__ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 760px;
}
.hero__meta dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.hero__meta dd {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 2px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollDown 1.8s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero__scroll { display: none; }
}

/* ============ SECTIONS ============ */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--light { background: var(--bg-light); }
.section--cream { background: var(--bg-cream); }
.section--navy {
  background: var(--wf-navy-deep);
  color: var(--ink-light);
}
.section--navy .section__title,
.section--navy h3,
.section--navy h4 { color: white; }

.section__head {
  max-width: 880px;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.section__head--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  max-width: none;
  align-items: end;
}
.section__head--inverted .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.section__mark {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.95;
  object-fit: contain;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--wf-navy);
  text-wrap: balance;
  max-width: 24ch;
}
.section__head--split .section__title { max-width: 18ch; }
.section__lede {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  max-width: 60ch;
}
.section--navy .section__lede { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 820px) {
  .section__head--split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }
}

/* ============ CHALLENGE ============ */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.challenge-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.challenge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}
.challenge-card__num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--wf-green);
  margin-bottom: 1rem;
}
.challenge-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 1.2;
  color: var(--wf-navy);
  margin-bottom: 0.65rem;
}
.challenge-card p {
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-card { padding: 1.5rem; }
}

/* ============ OPERATOR ============ */
.operator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 3rem;
  align-items: start;
}
.operator-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.operator-steps li {
  background: white;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--wf-green);
  border-radius: var(--radius);
  position: relative;
}
.operator-steps__num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--wf-green);
}
.operator-steps li h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--wf-navy);
  margin: 0.6rem 0 0.4rem;
  line-height: 1.2;
}
.operator-steps li p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.4;
}
.operator-video {
  position: sticky;
  top: 100px;
}
.operator-video video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #0d2241;
}
.operator-video figcaption {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 0.75rem;
  text-align: center;
}
@media (max-width: 920px) {
  .operator-grid { grid-template-columns: 1fr; gap: 2rem; }
  .operator-video { position: static; }
}
@media (max-width: 560px) {
  .operator-steps { grid-template-columns: 1fr; }
}

/* ============ INGREDIENT PLATFORM TABLE ============ */
.platform-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}
.platform-table__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--wf-navy);
  color: white;
  padding: 1.1rem 1.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.platform-table__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.platform-table__row:hover { background: var(--bg-light); }
.platform-table__row:nth-child(even) { background: rgba(28, 62, 112, 0.025); }
.platform-table__row:nth-child(even):hover { background: var(--bg-light); }
.platform-table__need {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--wf-navy);
}
.platform-table__row > div:last-child {
  color: var(--ink-soft);
  padding-top: 0.2rem;
}
@media (max-width: 680px) {
  .platform-table__head { grid-template-columns: 1fr; padding: 1rem 1.25rem; }
  .platform-table__head > div:last-child { display: none; }
  .platform-table__row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.25rem; }
}

/* ============ PARTNER ECOSYSTEM ============ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.partner-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.partner-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
.partner-card--anchor {
  background: var(--wf-green);
  border-color: var(--wf-green);
}
.partner-card--anchor:hover { background: var(--wf-green-soft); border-color: var(--wf-green-soft); }
.partner-card__icon {
  height: 28px;
  width: auto;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  object-fit: contain;
}
.partner-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 1.15;
  color: white;
  margin-bottom: 0.35rem;
}
.partner-card__role {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}
.partner-card--anchor .partner-card__role { color: rgba(255, 255, 255, 0.8); }
.partner-card p:last-child {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* ============ PROOF (REGEN METRICS) ============ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: stretch;
}
.proof-video video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.proof-video figcaption {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 0.65rem;
}
.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.proof-metrics li {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 175px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.proof-metrics li:hover {
  border-color: var(--wf-green);
  transform: translateY(-2px);
}
.metric__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem);
  line-height: 1;
  color: var(--wf-green);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.metric__value span {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 0.04em;
}
.metric__value--lg {
  font-size: clamp(2.6rem, 2rem + 2.8vw, 4rem);
}
.metric__label {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 500;
}
.metric__sub {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-navy);
  margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .proof-video video { min-height: 280px; }
}
@media (max-width: 520px) {
  .proof-metrics { grid-template-columns: 1fr; }
}

/* ============ OUTCOMES ============ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.outcome {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.25rem);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.outcome:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}
.outcome__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-metric);
  line-height: 0.95;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}
.outcome__unit {
  font-size: 0.5em;
  font-weight: 500;
  margin-left: 0.02em;
}
.outcome__unit-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.outcome__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* ============ WATER METHODOLOGY ============ */
.water-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}
.water-chart {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}
.water-chart__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--wf-navy);
  margin-bottom: 0.25rem;
}
.water-chart__sub {
  font-size: var(--text-sm);
  color: var(--ink-mute);
  margin-bottom: 2rem;
}
.water-bar { margin-bottom: 1.5rem; }
.water-bar__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}
.water-bar__label > span:first-child {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}
.water-bar__label--accent { color: var(--wf-green) !important; }
.water-bar__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
}
.water-bar__num--accent { color: var(--wf-green); }
.water-bar__track {
  background: rgba(28, 62, 112, 0.07);
  height: 28px;
  border-radius: 3px;
  overflow: hidden;
}
.water-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.water-bar__fill--baseline { background: linear-gradient(90deg, #a8b4c7, #8a99b2); }
.water-bar__fill--wf {
  background: linear-gradient(90deg, var(--wf-green), var(--wf-green-soft));
  box-shadow: inset 0 0 0 1px rgba(7, 103, 70, 0.4);
}
.water-bar.is-animated .water-bar__fill { width: var(--w); }

.water-callout {
  background: rgba(7, 103, 70, 0.08);
  border-left: 3px solid var(--wf-green);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}
.water-callout strong {
  color: var(--wf-green);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}

.water-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.water-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.water-why {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.water-why h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wf-green);
  margin-bottom: 0.85rem;
}
.water-why p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}
.water-why p:last-child { margin-bottom: 0; }
.water-why strong { color: var(--wf-navy); font-weight: 600; }
@media (max-width: 880px) {
  .water-grid { grid-template-columns: 1fr; }
}

/* ============ AGRICAPTURE ============ */
.agri {
  background:
    radial-gradient(circle at 15% 12%, rgba(132, 171, 88, 0.24), transparent 32%),
    linear-gradient(135deg, var(--wf-navy-deep) 0%, #122b4f 58%, #0d223f 100%);
  overflow: hidden;
}
.agri-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.agri-copy .section__title {
  color: white;
  max-width: 13ch;
}
.agri-copy .section__lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}
.agri-metrics {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.agri-metrics li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.agri-metrics__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem);
  line-height: 1;
  color: white;
  letter-spacing: -0.02em;
}
.agri-metrics__label {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-sm);
  line-height: 1.35;
}
.agri-proof {
  border-left: 3px solid var(--wf-green);
  padding-left: 1.25rem;
  max-width: 62ch;
}
.agri-proof h3 {
  margin: 0 0 0.45rem;
  color: white;
  font-size: var(--text-lg);
}
.agri-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}
.agri-video {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}
.agri-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}
.agri-video figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(12, 28, 51, 0.72);
  backdrop-filter: blur(6px);
  font-size: var(--text-xs);
}
@media (max-width: 980px) {
  .agri-grid { grid-template-columns: 1fr; }
  .agri-copy .section__title { max-width: 16ch; }
}
@media (max-width: 640px) {
  .agri-metrics { grid-template-columns: 1fr; }
}

/* ============ CARBON ============ */
.carbon-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
}
.carbon-steps li {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border-top: 3px solid var(--wf-green);
}
.carbon-steps__num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--wf-green);
  text-transform: uppercase;
}
.carbon-steps li h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--wf-navy);
  margin: 0.65rem 0 0.4rem;
}
.carbon-steps li p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .carbon-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .carbon-steps { grid-template-columns: 1fr; }
}

.carbon-impact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
}
.carbon-video {
  display: flex;
  flex-direction: column;
}
.carbon-video video {
  width: 100%;
  flex: 1;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.carbon-video figcaption {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 0.65rem;
}
.carbon-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carbon-stats li {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.carbon-stats li > div:first-child { display: flex; flex-direction: column; gap: 0; min-width: 130px; }
.carbon-stats .metric__value { margin-bottom: 0.25rem; }
.carbon-stats p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .carbon-impact { grid-template-columns: 1fr; }
  .carbon-video video { min-height: 240px; }
}
@media (max-width: 520px) {
  .carbon-stats li { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============ STRATEGIC LOCATIONS ============ */
.locations {
  background:
    radial-gradient(circle at 12% 12%, rgba(132, 171, 88, 0.22), transparent 34%),
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #0d223f 0%, var(--wf-navy-deep) 45%, #122b4f 100%);
  overflow: hidden;
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.locations-copy .section__title {
  color: white;
  max-width: 13ch;
}

.locations-copy .section__lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}

.location-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--wf-green);
  box-shadow: 0 0 0 8px rgba(132, 171, 88, 0.14);
}

.location-card--accent::before {
  background: #f2c84b;
  box-shadow: 0 0 0 8px rgba(242, 200, 75, 0.14);
}

.location-card__state {
  display: block;
  color: var(--wf-green);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.location-card--accent .location-card__state { color: #f2c84b; }

.location-card h3 {
  color: white;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.location-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.locations-visual {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locations-map-field {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  min-height: 340px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  padding: clamp(3rem, 7vw, 5rem) 0 1rem;
}

.locations-map-field::before {
  content: "";
  position: absolute;
  inset: 14% 0 18%;
  background: radial-gradient(circle at 50% 50%, rgba(132, 171, 88, 0.18), transparent 58%);
  pointer-events: none;
}

.locations-bg-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(54%, 320px);
  height: auto;
  max-width: none;
  opacity: 0.11;
  transform: translate(-50%, -50%);
  filter: none;
  object-fit: contain;
  pointer-events: none;
}

.location-card--map {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(13, 34, 63, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(13, 34, 63, 0.22);
  backdrop-filter: blur(8px);
}

.location-card--map::before {
  top: 1rem;
  right: 1rem;
}

.location-card--map h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.45rem;
}

.location-card--map p {
  font-size: 0.78rem;
}

.location-card--ca {
  transform: translateY(-1.5rem);
}

.location-card--ar {
  transform: translateY(1.5rem);
}

@media (max-width: 980px) {
  .locations-grid { grid-template-columns: 1fr; }
  .locations-copy .section__title { max-width: 16ch; }
  .locations-visual { min-height: 390px; }
}

@media (max-width: 640px) {
  .locations-map-field {
    min-height: 430px;
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .location-card--map {
    width: 100%;
  }
  .location-card--ca,
  .location-card--ar {
    transform: none;
  }
}

/* ============ DOCUMENTATION ============ */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.doc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.doc-card:hover {
  transform: translateY(-3px);
  border-color: var(--wf-green);
  box-shadow: var(--shadow-card);
}
.doc-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--wf-navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.15;
}
.doc-card p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .doc-grid { grid-template-columns: 1fr; }
}

/* ============ PATH ============ */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.path-card {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--wf-green);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
}
.path-card__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1;
  color: var(--wf-green);
  display: block;
  margin-bottom: 1rem;
}
.path-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--wf-navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.path-card p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}

.path-incentive {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background:
    linear-gradient(135deg, rgba(132, 171, 88, 0.16), rgba(255, 255, 255, 0.95)),
    white;
  border: 1px solid rgba(132, 171, 88, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin: -1.5rem 0 2rem;
  box-shadow: var(--shadow-soft);
}

.path-incentive img {
  height: 54px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.path-incentive__label {
  color: var(--wf-green);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.path-incentive h3 {
  font-family: var(--font-display);
  color: var(--wf-navy);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.path-incentive p:last-child {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.45;
}

@media (max-width: 880px) {
  .path-grid { grid-template-columns: 1fr; }
}

.flow {
  background: var(--wf-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.flow__title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.flow__steps li {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.1rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.flow__steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wf-green);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.flow__steps li strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  color: white;
  line-height: 1.15;
}
.flow__steps li em {
  font-style: normal;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
@media (max-width: 980px) {
  .flow__steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .flow__steps { grid-template-columns: repeat(2, 1fr); }
}

/* ============ FINAL CTA ============ */
.cta {
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
  padding-top: clamp(5rem, 7vw, 8rem);
  padding-bottom: clamp(5rem, 7vw, 8rem);
}
.cta__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.cta__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.cta__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 43, 79, 0.96) 0%, rgba(18, 43, 79, 0.78) 55%, rgba(18, 43, 79, 0.55) 100%),
    linear-gradient(180deg, rgba(18, 43, 79, 0.3) 0%, rgba(18, 43, 79, 0.55) 100%);
}
.cta__content { max-width: 880px; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-3xl);
  line-height: 1.07;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
  max-width: 22ch;
  text-wrap: balance;
}
.cta__sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.84);
  max-width: 60ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.cta__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  max-width: 540px;
}
.cta__card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.cta__contact-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  color: white;
  margin-bottom: 0.2rem;
}
.cta__contact-org {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
}
.cta__contact-email {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.1rem;
  margin-bottom: 1.75rem;
  transition: border-color 0.2s var(--ease);
}
.cta__contact-email:hover { border-color: white; }
.cta__btn { width: auto; }

/* ============ FOOTER ============ */
.footer {
  background: var(--wf-navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer__tag {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 36ch;
  line-height: 1.55;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.75rem;
}
.footer__cols p {
  font-size: var(--text-sm);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}
.footer__cols a { transition: color 0.2s var(--ease); }
.footer__cols a:hover { color: white; }
.footer__bar {
  padding: 1.5rem 0 2rem;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: start;
}
.footer__bar p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.footer__note { max-width: 60ch; }
@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bar-inner { flex-direction: column; gap: 0.85rem; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============ REVEAL (subtle scroll-in) ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__scroll { display: none; }
  /* Pause autoplay videos and show poster instead */
  video[autoplay] {
    /* Visually keep them in layout but they should not loop */
  }
  .reveal { opacity: 1; transform: none; }
  .water-bar__fill { width: var(--w) !important; transition: none !important; }
}

/* ============ FOCUS STATES ============ */
:focus-visible {
  outline: 2px solid var(--wf-green);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav__links a:focus-visible,
.btn:focus-visible { outline-offset: 4px; }
