/* ==========================================================================
   Kizito Legacy Farm
   Dark, high-contrast theme · one palette · one type system
   Daylight photography sits on a near-black field like prints on a gallery wall.
   ========================================================================== */

:root {
  /* Surfaces: poster black, stepping up in small increments */
  --bg: #0A0A0A;
  --bg-alt: #121212;
  --bg-deep: #050505;
  --surface: #1B1B1B;

  /* Text: white first, then two quieter steps (all ≥ 8:1 on --bg) */
  --fg: #FFFFFF;
  --fg-2: #DCDCDA;
  --fg-3: #ABABA6;

  /* Hairlines */
  --line: rgba(255, 255, 255, .16);
  --line-strong: rgba(255, 255, 255, .32);

  /* The one accent: ripe-maize yellow (14:1 on --bg, black text on top) */
  --accent: #FFC61E;
  --accent-hi: #FFD75E;
  --accent-soft: rgba(255, 198, 30, .22);
  --on-accent: #0A0A0A;

  /* Type: one geometric family, heavy italics for display */
  --font-sans: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Poppins", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);

  /* Layout */
  --gutter: clamp(16px, 4vw, 48px);
  --maxw: 1320px;
  --header-h: 80px;
  --radius: 24px;
  --shadow: 0 1px 0 rgba(245, 242, 236, .06) inset, 0 24px 48px -24px rgba(0, 0, 0, .8);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  color-scheme: dark;
  background: var(--bg);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
button { font: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 12px 18px; border-radius: 999px;
  background: var(--fg); color: var(--bg);
  font-weight: 600; text-decoration: none;
  transform: translateY(-160%);
  transition: transform .4s var(--ease);
}
.skip-link:focus { transform: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(88px, 12vw, 176px); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 800;
  text-wrap: balance;
}

/* One accent word per headline, set italic in maize yellow */
.hero-title em,
.h2 em,
.claim-title em,
.brand-word em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}
.brand-word em { font-weight: 700; }

.lead {
  font-size: clamp(1.075rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 40ch;
}

/* ---------- Buttons & links ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .5s var(--ease), border-color .5s var(--ease), transform .6s var(--ease), box-shadow .6s var(--ease);
}
.btn-primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
  box-shadow: 0 14px 30px -16px rgba(255, 198, 30, .7);
}
.btn-primary:hover { --btn-bg: var(--accent-hi); transform: translateY(-2px); }
.btn-ghost { border-color: var(--fg); background: transparent; }
.btn-ghost:hover { background: var(--fg); color: var(--bg); }
.btn-sm { min-height: 46px; padding: 0 22px; font-size: .92rem; }
.btn-lg { min-height: 60px; padding: 0 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-arrow {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .6s var(--ease);
}
.btn:hover .btn-arrow,
.text-link:hover .btn-arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
  background: linear-gradient(currentColor, currentColor) left calc(100% - 8px) / 100% 1px no-repeat;
  transition: color .4s var(--ease), background-size .6s var(--ease);
}
.text-link:hover { color: var(--accent); background-size: 0 1px; background-position: right calc(100% - 8px); }

/* ---------- Media frames (shared image treatment) ---------- */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  isolation: isolate;
}
.frame > img[data-parallax] {
  position: absolute;
  left: 0; top: -7%;
  width: 100%; height: 114%;
  object-fit: cover;
  will-change: transform;
}
.frame > img:not([data-parallax]) {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Video that loops by cross-fading back to its own first frame */
.media-frame { position: relative; }
.media-frame .media-poster,
.media-frame .media-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Two stacked clips cross-fade into each other, so the loop never cuts */
.media-frame .media-video {
  opacity: 0;
  /* matches the HDR grade baked into the stills, so poster and video agree */
  filter: contrast(1.12) saturate(1.12);
  transition: opacity .9s linear;
}
.media-frame .media-video.is-front { opacity: 1; }

figcaption {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--fg-3);
}

/* ---------- Reveal motion ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 1.1s var(--ease), transform 1.3s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  transition: background-color .6s var(--ease), box-shadow .6s var(--ease), transform .7s var(--ease), backdrop-filter .6s;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(12, 14, 11, .86);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translate3d(0, -100%, 0); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1680px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  text-decoration: none;
  color: var(--fg);
  margin-right: auto;
}
.brand-logo {
  width: auto;
  height: 60px;
  flex: none;
}
.brand-divider {
  width: 1px;
  height: 28px;
  background: var(--line-strong);
  flex: none;
}
.brand-word {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-word em { font-size: 1.12em; }

/* Footer lock-up: sized to stay inside its own column */
.brand-footer {
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}
.brand-footer .brand-logo { height: 62px; }
.brand-footer .brand-divider { height: 26px; }
.brand-footer .brand-word { font-size: 1.05rem; white-space: normal; }
@media (max-width: 1099px) {
  .brand-footer .brand-logo { height: 72px; }
}

@media (max-width: 559px) {
  .site-header .brand-logo { height: 52px; }
  .brand { gap: 12px; }
}
@media (max-width: 359px) {
  .site-header .brand-divider,
  .site-header .brand-word { display: none; }
}

.nav-list { display: flex; gap: 4px; }
.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg-2);
  border-radius: 999px;
  transition: color .4s var(--ease), background-color .4s var(--ease);
}
.nav-list a:hover { color: var(--fg); background: rgba(245, 242, 236, .08); }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}
.menu-icon,
.menu-icon::before {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .5s var(--ease);
}
.menu-icon { position: relative; transform: translateY(-3.5px); }
.menu-icon::before { content: ""; position: absolute; left: 0; top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-icon { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(-7px) rotate(-90deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: calc(var(--header-h) + 24px) var(--gutter) max(32px, env(safe-area-inset-bottom));
  background: var(--bg);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  transition: opacity .5s var(--ease), transform .6s var(--ease), visibility 0s linear .6s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease), transform .6s var(--ease), visibility 0s;
}
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu li a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-height: 64px;
  padding-top: 16px;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -.03em;
  text-decoration: none;
}
.mobile-menu li a span {
  min-width: 1.6em;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--accent);
}
.mobile-menu-note { color: var(--fg-3); font-size: .95rem; }

@media (max-width: 899px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 559px) {
  .header-cta { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + 32px);
}

.hero-content { position: relative; z-index: 2; }
.hero-title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: none;
}
.hero-title .line-a,
.hero-title .line-b { display: block; }
.hero-title .line-a {
  color: var(--accent);
  font-size: clamp(3.4rem, 8.6vw, 7.5rem);
}
.hero-title .line-b {
  color: var(--fg);
  font-size: clamp(2.5rem, 6.2vw, 5.4rem);
  margin-top: .06em;
  padding-left: .06em;
}
.hero-sub {
  margin-top: 24px;
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg-2);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* The photo panel: heavy rounded corners with the accent outline offset behind */
.panel { position: relative; }
.panel::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px solid var(--accent);
  border-radius: 46px;
  pointer-events: none;
}
.panel .media-frame,
.panel .frame {
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 559px) {
  .panel::before { inset: -9px; border-radius: 34px; }
  .panel .media-frame,
  .panel .frame { border-radius: 26px; }
}

/* Stacked (phones, portrait tablets) */
.hero-media {
  position: relative;
  margin: 44px var(--gutter) 0;
}
.hero-media .media-frame { aspect-ratio: 4 / 5; }
.hero-media .media-poster,
.hero-media .media-video { object-position: 50% 20%; }

.hero-strip { position: relative; z-index: 2; margin-top: 20px; }
.hero-strip ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg-2);
  background: var(--bg-alt);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.hero-strip a:hover { color: var(--fg); border-color: var(--fg); }
.hero-strip .num {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* Poster split (landscape screens): giant type left, photo panel right */
@media (min-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: calc(var(--header-h) + clamp(24px, 4vh, 56px));
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    column-gap: clamp(40px, 5vw, 88px);
    flex: 1;
  }
  .hero-media {
    margin: 0;
    will-change: transform;
  }
  .hero-media .media-frame {
    aspect-ratio: 3 / 4;
    width: min(100%, calc(70vh * 3 / 4));
    margin-left: auto;
  }
  .hero-media .panel { width: fit-content; margin-left: auto; }
  .hero-media .media-poster,
  .hero-media .media-video { object-position: 50% 22%; }

  .hero-strip {
    margin-top: clamp(24px, 4vh, 56px);
    border-top: 1px solid var(--line);
  }
  .hero-strip ol {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  .hero-strip li + li { border-left: 1px solid var(--line); }
  .hero-strip a {
    width: 100%;
    min-height: 72px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: .98rem;
    font-weight: 600;
  }
  .hero-strip li:first-child a { padding-left: 0; }
}

/* ==========================================================================
   Statement
   ========================================================================== */
.statement-text {
  margin-top: 28px;
  max-width: 30ch;
  font-size: clamp(1.75rem, 3.5vw, 3.35rem);
  line-height: 1.14;
  letter-spacing: -.024em;
  font-weight: 500;
  text-wrap: pretty;
}
.words-ready .w {
  opacity: .22;
  transition: opacity .6s var(--ease-soft);
}
.words-ready .w.is-lit { opacity: 1; }

.statement-figure { margin-top: clamp(56px, 8vw, 120px); }
/* Slightly wider than the 16:9 photo so the gentler overscan crops top/bottom, never the crops at the edges */
.frame-wide { aspect-ratio: 1.9 / 1; }
.frame-wide > img[data-parallax] { top: -4%; height: 108%; }
.statement-figure figcaption,
.farm-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}
.caption-meta { flex: none; }
@media (max-width: 719px) {
  .caption-meta { display: none; }
}

/* ==========================================================================
   Section head (shared)
   ========================================================================== */
.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 104px);
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
  }
  .section-head .head-main { grid-column: 1 / span 7; }
  .section-head .lead { grid-column: 9 / span 4; }
}

/* ==========================================================================
   Selected harvest
   ========================================================================== */
.harvest { padding-top: 0; }

.harvest-layout { display: grid; }
.harvest-index { display: none; }

@media (min-width: 1024px) {
  .harvest-layout {
    grid-template-columns: minmax(210px, 3fr) 9fr;
    column-gap: clamp(40px, 5vw, 88px);
  }
  .harvest-index {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 40px);
    align-self: start;
  }
}
.harvest-index li a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--fg-3);
  transition: color .5s var(--ease);
}
.harvest-index li:last-child a { border-bottom: 1px solid var(--line); }
.harvest-index a:hover,
.harvest-index a.is-active { color: var(--fg); }
.harvest-index .num {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.harvest-index .bar {
  margin-left: auto;
  width: 28px; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .7s var(--ease);
}
.harvest-index a.is-active .bar { transform: scaleX(1); }
.index-note {
  margin-top: 24px;
  font-size: .9rem;
  color: var(--fg-3);
  max-width: 24ch;
}

.crop {
  display: grid;
  gap: 32px;
  padding-block: clamp(48px, 7vw, 104px);
  border-top: 1px solid var(--line);
}
.crop:first-child { padding-top: 0; border-top: 0; }
.crop:last-child { padding-bottom: 0; }

.crop-figure { position: relative; }
.crop-frame { aspect-ratio: 3 / 4; }

.crop-inset {
  position: absolute;
  right: 16px;
  bottom: -28px;
  width: 50%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.crop-has-inset .crop-figure { margin-bottom: 28px; }

.crop-num {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.crop-num b { color: var(--accent); font-weight: 600; margin-right: 8px; }
.crop h3 {
  margin-top: 16px;
  font-size: clamp(1.625rem, 2.6vw, 2.375rem);
  line-height: 1.08;
  letter-spacing: -.028em;
  font-weight: 600;
  text-wrap: balance;
}
.crop-text {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--fg-2);
}
.crop-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.crop-specs dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.crop-specs dd {
  margin-top: 6px;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--fg);
}
.crop .text-link { margin-top: 24px; }

@media (min-width: 720px) {
  .crop {
    grid-template-columns: 1.08fr 1fr;
    column-gap: clamp(28px, 4.5vw, 72px);
    align-items: center;
  }
  .crop:nth-child(even) .crop-figure { order: 2; }
  .crop-inset { right: -8%; bottom: -8%; width: 54%; }
  .crop-has-inset .crop-figure { margin-bottom: 0; }
}

/* ==========================================================================
   Standout claim
   ========================================================================== */
.claim {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.claim-intro { display: grid; gap: 28px; }
.claim-title {
  margin-top: 20px;
  max-width: 13ch;
  font-size: clamp(2.6rem, 6.6vw, 6.25rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 600;
  text-wrap: balance;
}
.claim-title em { color: var(--accent); }

@media (min-width: 900px) {
  .claim-intro {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
  }
  .claim-main { grid-column: 1 / span 8; }
  .claim-intro .lead { grid-column: 9 / span 4; }
}

.timeline {
  position: relative;
  display: grid;
  gap: 32px;
  margin-top: clamp(56px, 8vw, 112px);
}
.timeline li { position: relative; padding-left: 28px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 3px; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--line-strong);
  transform-origin: top;
  transform: scaleY(1);
  transition: transform 1.6s var(--ease) .2s;
}
.js .timeline:not(.is-in)::before { transform: scaleY(0); }

.time {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.timeline h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -.018em;
  font-weight: 600;
}
.timeline li p:last-child {
  margin-top: 8px;
  font-size: .975rem;
  color: var(--fg-2);
  max-width: 30ch;
}
.claim-link { margin-top: clamp(40px, 5vw, 64px); }

@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); }
  .timeline li { padding-left: 0; padding-top: 32px; }
  .timeline li::before { top: -3px; }
  .timeline::before {
    left: 0; right: 0; top: 0; bottom: auto;
    width: auto; height: 1px;
    transform-origin: left;
    transform: scaleX(1);
  }
  .js .timeline:not(.is-in)::before { transform: scaleX(0); }
}

/* ==========================================================================
   Approach
   ========================================================================== */
.steps { display: grid; gap: 56px; }
.step-frame { aspect-ratio: 4 / 3; }
.step-body {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}
.step-num {
  flex: none;
  padding-top: 5px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 600;
}
.step p {
  margin-top: 8px;
  color: var(--fg-2);
  max-width: 44ch;
}

@media (min-width: 720px) and (max-width: 899px) {
  .steps { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .step:nth-child(even) { margin-top: 64px; }
  .step-frame { aspect-ratio: 4 / 5; }
}
@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(20px, 2.4vw, 32px);
    row-gap: clamp(64px, 9vw, 128px);
  }
  .step:nth-child(1) { grid-column: 1 / span 7; }
  .step:nth-child(2) { grid-column: 9 / span 4; margin-top: clamp(64px, 12vw, 180px); }
  .step:nth-child(3) { grid-column: 2 / span 4; }
  .step:nth-child(4) { grid-column: 7 / span 6; margin-top: clamp(48px, 9vw, 140px); }
  .step-tall .step-frame { aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   The farm (credibility)
   ========================================================================== */
.farm {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
/* The one daylight frame on the page: vignetted so it sits in the dark campaign */
.farm-figure .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, .5) 0%, rgba(10, 10, 10, 0) 26%, rgba(10, 10, 10, 0) 68%, rgba(10, 10, 10, .55) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, .45) 0%, rgba(10, 10, 10, 0) 22%, rgba(10, 10, 10, 0) 78%, rgba(10, 10, 10, .45) 100%);
}
.media-video-aerial { filter: contrast(1.2) saturate(1.1) brightness(.9); }
.frame-cinema { aspect-ratio: 4 / 3; }
@media (min-width: 720px) { .frame-cinema { aspect-ratio: 16 / 9; } }
@media (min-width: 1100px) { .frame-cinema { aspect-ratio: 21 / 9; } }

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px;
  margin-top: clamp(56px, 7vw, 96px);
}
@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.stat {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}
.stat-num {
  font-size: clamp(3.25rem, 6.4vw, 6rem);
  line-height: .9;
  letter-spacing: -.05em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat-num small {
  font-size: .5em;
  letter-spacing: -.02em;
  vertical-align: .6em;
  margin-left: 2px;
  color: var(--accent);
}
.stat-label {
  margin-top: 14px;
  max-width: 20ch;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--fg-2);
}

.farm-bottom {
  display: grid;
  gap: 64px;
  margin-top: clamp(80px, 10vw, 144px);
}
@media (min-width: 900px) {
  .farm-bottom {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .quote { grid-column: 1 / span 6; }
  .clients { grid-column: 8 / span 5; }
}
.quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  text-wrap: pretty;
}
.quote figcaption {
  margin-top: 24px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.clients-title {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.clients li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.clients li:last-child { border-bottom: 1px solid var(--line); }
.clients li span:first-child { font-weight: 600; letter-spacing: -.01em; }
.clients li span:last-child { color: var(--fg-3); font-size: .95rem; }

/* ==========================================================================
   Order
   ========================================================================== */
.order-grid { display: grid; gap: 56px; }
@media (min-width: 900px) {
  .order-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
  }
  .order-copy { grid-column: 1 / span 6; }
  .order-figure {
    grid-column: 8 / span 5;
    position: sticky;
    top: calc(var(--header-h) + 32px);
  }
}
.order-frame { aspect-ratio: 1 / 1; }
.order-frame > img[data-parallax] { object-position: 92% 50%; }
.order-figure figcaption { margin-top: 16px; }
@media (max-width: 899px) {
  .order-figure { order: -1; }
  .order-frame { aspect-ratio: 4 / 3; }
  .order-frame > img[data-parallax] { object-position: 100% 50%; }
}

.order-copy .lead { margin-top: 24px; }

.order-form {
  display: grid;
  gap: 26px;
  margin-top: 44px;
}
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
.field-label {
  display: block;
  margin-bottom: 12px;
  padding: 0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background-color .4s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-3); opacity: 1; }
.field input:hover,
.field textarea:hover { border-color: rgba(245, 242, 236, .5); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #20251C;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field input[aria-invalid="true"] { border-color: var(--accent); }

.field-row { display: grid; gap: 26px; }
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--fg);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.chip span::before {
  content: "";
  width: 16px; height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: .6;
  flex: none;
  transition: opacity .3s, background-color .3s, box-shadow .3s;
}
.chip:hover span { border-color: var(--fg); }
.chip input:checked + span {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}
.chip input:checked + span::before {
  opacity: 1;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 3px var(--fg);
}
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 3px; }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 6px;
}
.form-note { max-width: 32ch; font-size: .875rem; color: var(--fg-3); }
.form-status { min-height: 1.5em; font-size: .95rem; font-weight: 500; }
.form-status.is-error { color: var(--accent); }
.form-status.is-ok { color: var(--fg); }
.form-status:empty { display: none; }

.order-contact {
  display: grid;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 560px) {
  .order-contact { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.order-contact-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.order-phone {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--accent);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.order-phone:hover { color: var(--accent-hi); }
.order-contact-note { margin-top: 6px; font-size: .9rem; color: var(--fg-3); }
.order-contact-note a { color: var(--fg-2); text-underline-offset: 4px; }
.order-contact-note a:hover { color: var(--accent); }
.order-address {
  margin-top: 10px;
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--fg);
  max-width: 24ch;
}
.order-contact .text-link { margin-top: 6px; }

/* ---------- WhatsApp ---------- */
.icon-whatsapp {
  width: 20px; height: 20px;
  fill: currentColor;
  flex: none;
}
.btn .icon-whatsapp { width: 19px; height: 19px; }
.footer-col a .icon-whatsapp { width: 17px; height: 17px; margin-right: 8px; }

.whatsapp-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 20px 0 18px;
  border-radius: 999px;
  background: #25D366;
  color: #062B14;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, .8);
  transition: transform .5s var(--ease), background-color .4s var(--ease);
}
.whatsapp-fab svg { width: 26px; height: 26px; fill: currentColor; }
.whatsapp-fab:hover { background: #1FBE5A; transform: translateY(-2px); }
@media (max-width: 559px) {
  .whatsapp-fab { height: 54px; padding: 0; width: 54px; justify-content: center; }
  .whatsapp-fab-label { display: none; }
}

/* ---------- Mobile Money ---------- */
.pay {
  margin-top: 36px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.pay-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.pay-intro { margin-top: 10px; font-size: .95rem; color: var(--fg-2); max-width: 46ch; }
.pay-methods { display: grid; gap: 12px; margin-top: 20px; }
@media (min-width: 560px) { .pay-methods { grid-template-columns: 1fr 1fr; } }
.pay-methods li {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.pay-brand {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.pay-number {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.pay-name { font-size: .85rem; color: var(--fg-3); }
.pay-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 18px; }
.pay-copied { font-size: .88rem; font-weight: 600; color: var(--accent); }
.pay-note { margin-top: 14px; font-size: .85rem; color: var(--fg-3); max-width: 44ch; }

.form-alt { margin-top: -6px; }
.link-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--fg-3);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.link-button:hover { color: var(--accent); }

.footer-address {
  font-style: normal;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 8px;
}
.footer-directions { min-height: 40px; font-size: .92rem; }

@media (max-width: 559px) {
  .form-foot .btn { width: 100%; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding-top: clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 24px;
}
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.1fr 1.2fr; }
  .footer-brand { grid-column: auto; }
}
.footer-tag {
  margin: 18px 0 28px;
  max-width: 30ch;
  color: var(--fg-2);
}
.footer-title {
  margin-bottom: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.footer-col a,
.footer-col span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .98rem;
  color: var(--fg);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-col span { color: var(--fg-2); }
.footer-col a {
  background: linear-gradient(currentColor, currentColor) right calc(100% - 10px) / 0 1px no-repeat;
  transition: background-size .6s var(--ease), color .4s var(--ease);
}
.footer-col a:hover { color: var(--accent); background-size: 100% 1px; background-position: left calc(100% - 10px); }

.footer-word {
  margin-top: clamp(56px, 8vw, 104px);
  padding-inline: var(--gutter);
  font-size: clamp(3.5rem, 14.2vw, 16rem);
  line-height: .78;
  letter-spacing: -.055em;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  color: rgba(245, 242, 236, .07);
  user-select: none;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 24px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--fg-3);
  max-width: none;
}
.to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--fg);
  font-weight: 500;
  text-decoration: none;
}
.to-top svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .6s var(--ease);
}
.to-top:hover svg { transform: translateY(-3px); }

/* ==========================================================================
   Windows high-contrast / forced colors
   ========================================================================== */
@media (forced-colors: active) {
  .btn, .chip span, .field input, .field textarea { border: 1px solid CanvasText; }
  .hero-media::after { display: none; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    animation-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .words-ready .w { opacity: 1; }
  .js .timeline:not(.is-in)::before { transform: none; }
  .frame > img[data-parallax] { transform: none !important; }
  .hero-media { transform: none !important; }
}
