/* ============================================================
   Honour Agriculture — Monochrome Editorial
   Pure white · warm near-black ink · one tomato accent.
   Flat. Hairlines. Whitespace. Big serif. No shadow/gradient/blur.
   ============================================================ */

:root {
  /* — palette — */
  --bg:       #ffffff;
  --bg-soft:  #f6f6f3;
  --ink:      #17150f;            /* warm near-black */
  --ink-80:   rgba(23, 21, 15, .82);
  --muted:    rgba(23, 21, 15, .56);
  --muted-2:  rgba(23, 21, 15, .40);
  --line:     rgba(23, 21, 15, .14);
  --line-soft:rgba(23, 21, 15, .07);
  --tomato:   #16a34a;

  /* — type — */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, monospace;

  /* — rhythm (generous) — */
  --container: 1140px;
  --gutter: clamp(22px, 5vw, 68px);
  --section-y: clamp(88px, 12vw, 184px);

  /* — motion — */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --radius: 6px;
  --radius-pill: 999px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: transparent; color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.65; letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

::selection { background: var(--tomato); color: #fff; }

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

/* hide leftover decorative layers from prior themes */
.grain { display: none; }

/* scroll progress — thin tomato hairline */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 100%; background: var(--tomato); transform: scaleX(0); transform-origin: left; }

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1.06; letter-spacing: -0.028em; margin: 0; color: var(--ink);
  font-optical-sizing: auto;
}
.display em { font-style: italic; font-weight: 400; color: var(--tomato); }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.62; color: var(--muted); letter-spacing: -0.013em; margin: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--muted); margin: 0 0 1.6rem;
}
.kicker span { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 1rem; color: var(--tomato); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--muted); margin: 0 0 1.7rem;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tomato); }

/* ============================================================
   Buttons
   ============================================================ */
.pill {
  position: relative; display: inline-flex; align-items: center; gap: .6em;
  padding: .9em 1.5em; border-radius: var(--radius-pill);
  font-size: .92rem; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid var(--ink); cursor: pointer; color: var(--ink); background: transparent;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.pill svg { width: 15px; height: 15px; transition: transform .4s var(--ease-out); }
.pill:hover svg { transform: translateX(3px); }

.pill--solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill--solid:hover { background: var(--tomato); border-color: var(--tomato); }

.pill--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.pill--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.pill--lg { padding: 1.05em 1.8em; font-size: 1rem; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform .5s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 2rem; }
.nav.is-scrolled { background: var(--bg); border-bottom-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }

.brand { display: inline-flex; align-items: center; gap: .6em; font-family: var(--serif); font-weight: 500; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--ink); }
.brand__mark { width: 26px; height: 26px; flex: none; color: var(--tomato); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name { display: inline-flex; align-items: baseline; gap: .4em; }
.brand__sub { font-family: var(--sans); font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }

.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a { position: relative; font-size: .92rem; font-weight: 450; color: var(--muted); padding: .3em 0; transition: color .3s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--tomato); transition: width .35s var(--ease-out); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { width: 100%; }

.nav__cta { font-size: .88rem; padding: .7em 1.2em; }
.nav__toggle { display: none; }

/* ============================================================
   Hero — type-driven, no imagery
   ============================================================ */
.hero {
  position: relative; min-height: 92svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 140px; padding-bottom: clamp(56px, 9vh, 110px);
  color: var(--ink); background: transparent;
}
.hero__slides, .hero__slide, .hero__veil { display: none; }
.hero__bg { display: block; position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(9,7,11,.72) 0%, rgba(9,7,11,.44) 46%, rgba(9,7,11,.20) 82%, rgba(9,7,11,.34) 100%),
    linear-gradient(180deg, rgba(9,7,11,.28) 0%, rgba(9,7,11,.14) 45%, rgba(9,7,11,.52) 100%);
}

/* background video for the page header (injected) */
.fx-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* halftone particle canvas (injected) */
.fx-dots { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
@keyframes glow-pulse { 0%, 100% { opacity: .5; transform: scale(1); } 50% { opacity: .9; transform: scale(1.06); } }

/* showcase video frame */
.video-frame { position: relative; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #0c0a08; aspect-ratio: 16 / 9; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.video-cap { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 1.1rem .2rem 0; font-size: .9rem; color: var(--muted); }
.video-mute { position: absolute; right: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(12,10,8,.45); color: #fff; cursor: pointer; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: background-color .3s var(--ease), border-color .3s var(--ease); }
.video-mute:hover { background: var(--tomato); border-color: var(--tomato); }
.video-mute svg { width: 17px; height: 17px; }
.video-mute .icon-on { display: none; }
.video-mute.is-on .icon-on { display: block; }
.video-mute.is-on .icon-off { display: none; }

/* site-wide halftone background (injected, behind everything) */
.fx-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.fx-bg::before, .fx-bg::after { content: ""; position: absolute; border-radius: 50%; will-change: transform; }
.fx-bg::before { width: 62vw; height: 62vw; left: -12vw; top: -12vw; background: radial-gradient(circle, rgba(22,163,74,.10), transparent 60%); animation: gfloat-a 34s var(--ease) infinite alternate; }
.fx-bg::after { width: 56vw; height: 56vw; right: -14vw; bottom: -16vw; background: radial-gradient(circle, rgba(22,163,74,.08), transparent 60%); animation: gfloat-b 40s var(--ease) infinite alternate; }
@keyframes gfloat-a { to { transform: translate3d(12vw, 9vh, 0); } }
@keyframes gfloat-b { to { transform: translate3d(-12vw, -8vh, 0); } }

.hero__inner { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--serif); font-weight: 340;
  font-size: clamp(2.7rem, 8vw, 6rem); line-height: 1.0; letter-spacing: -0.038em;
  margin: 0 0 1.7rem; max-width: 18ch; font-optical-sizing: auto;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--accent em { font-style: italic; color: var(--tomato); }
.hero__title [data-reveal-word] { display: inline-block; transform: translateY(110%); opacity: 0; }

.hero__lede { max-width: 58ch; font-size: clamp(1.08rem, 1.55vw, 1.3rem); line-height: 1.62; color: var(--muted); margin: 0 0 2.4rem; letter-spacing: -0.013em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: clamp(2.6rem, 6vw, 4rem); }

.hero__stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.6rem, 5vw, 4.5rem); margin: 0; padding-top: 2rem; border-top: 1px solid var(--line); width: fit-content; max-width: 100%; }
.stat dt { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .5rem; }
.stat dd { margin: 0; font-family: var(--serif); font-weight: 380; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); display: flex; align-items: baseline; gap: .12em; }

.hero__cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); }
.hero__cue-line { width: 1px; height: 44px; background: var(--line); position: relative; overflow: hidden; }
.hero__cue-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--tomato); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { top: -50%; } 60%, 100% { top: 100%; } }

/* ============================================================
   Marquee — quiet
   ============================================================ */
.marquee { border-block: 1px solid var(--line); background: var(--bg); overflow: hidden; padding: 1.1rem 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 1.5rem; white-space: nowrap; font-family: var(--serif); font-style: italic; font-weight: 360; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--ink); animation: marquee 40s linear infinite; }
.marquee__track .dot { font-style: normal; color: var(--tomato); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Sections / layout
   ============================================================ */
.section { position: relative; padding-block: var(--section-y); }
.grid-2 { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.6rem, 7vw, 7rem); }
.grid-2--top { align-items: start; }

.section__head--center { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: clamp(3.2rem, 6vw, 5.5rem); }
.section__head--center .kicker { justify-content: center; }
.section__head--center .lede { margin-inline: auto; max-width: 56ch; margin-top: 1.5rem; }
.section__head--sticky { position: sticky; top: 116px; }
.section__head .lede { margin-top: 1.5rem; }
.section__head .chip { margin-top: 1.9rem; }

/* hairline divider between consecutive sections */
.section + .section::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--line-soft); }

.section--tint { background: var(--bg-soft); }

.chip { display: inline-flex; align-items: center; gap: .6em; padding: .55em 1.1em; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: .82rem; color: var(--muted); background: var(--bg); }
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tomato); }

/* ============================================================
   Problem / quote
   ============================================================ */
.problem__body p + p { margin-top: 1.3rem; }
.problem .lede { color: var(--ink-80); }
.pull { margin: 2.8rem 0 0; padding: 2rem 0 0; border-top: 1px solid var(--line); }
.pull__quote { font-family: var(--serif); font-style: italic; font-weight: 360; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.28; letter-spacing: -0.025em; color: var(--ink); }

/* ============================================================
   Steps
   ============================================================ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { position: relative; padding: clamp(1.7rem, 2.6vw, 2.6rem); border-right: 1px solid var(--line); transition: background-color .4s var(--ease); }
.step:last-child { border-right: none; }
.step:hover { background: var(--bg-soft); }
.step__no { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--tomato); display: block; margin-bottom: 1.7rem; }
.step__icon { width: 44px; height: 44px; color: var(--ink); margin-bottom: 1.4rem; transition: color .4s var(--ease); }
.step__icon svg { width: 100%; height: 100%; }
.step:hover .step__icon { color: var(--tomato); }
.step h3 { font-family: var(--serif); font-weight: 440; font-size: 1.24rem; letter-spacing: -0.02em; margin: 0 0 .6rem; color: var(--ink); }
.step p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.55; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   Cards
   ============================================================ */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 2.6vw, 2.2rem); background: var(--bg); transition: border-color .4s var(--ease); }
.card:hover { border-color: var(--ink); }
.card__top { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.card__no { width: 32px; height: 32px; flex: none; display: grid; place-items: center; border: 1px solid var(--tomato); color: var(--tomato); border-radius: 50%; font-family: var(--serif); font-style: italic; font-size: .95rem; }
.card h3 { font-family: var(--serif); font-weight: 440; font-size: 1.3rem; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ripeness bar */
.ripeness { margin-top: 1.5rem; }
.ripeness__bar { display: flex; height: 44px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.ripeness .seg { width: var(--w); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-left: .7em; font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-80); overflow: hidden; white-space: nowrap; transform: scaleX(0); transform-origin: left; }
.is-revealed .ripeness .seg { transform: scaleX(1); transition: transform .9s var(--ease-out); }
.is-revealed .ripeness .seg--turn { transition-delay: .12s; }
.is-revealed .ripeness .seg--red { transition-delay: .24s; }
.ripeness .seg b { font-family: var(--serif); font-style: italic; font-size: .95rem; text-transform: none; letter-spacing: 0; color: var(--ink); }
.ripeness .seg--pink { background: rgba(22,163,74,.14); }
.ripeness .seg--turn { background: rgba(22,163,74,.34); }
.ripeness .seg--red  { background: var(--tomato); }
.ripeness .seg--red b, .ripeness .seg--red { color: #fff; }

/* calibration */
.calib { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--muted); }
.calib__ref, .calib__out { display: flex; align-items: center; gap: .6em; }
.calib__disc { width: 22px; height: 22px; border-radius: 50%; background: var(--bg); border: 1px solid var(--ink); flex: none; }
.calib__tomato { width: 32px; height: 32px; border-radius: 50%; background: var(--tomato); flex: none; }
.calib__arrow { color: var(--tomato); font-size: 1.2rem; }
.calib b { font-family: var(--serif); font-style: italic; color: var(--ink); }

/* tags */
.tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { padding: .45em 1em; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: .78rem; color: var(--muted); transition: border-color .3s var(--ease), color .3s var(--ease); }
.card:hover .tag { border-color: var(--tomato); color: var(--tomato); }

/* ============================================================
   Cost table
   ============================================================ */
.cost { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 940px; margin-inline: auto; }
.cost__row { display: grid; grid-template-columns: 1.1fr 1.8fr .9fr; gap: 1.5rem; align-items: center; padding: 1.35rem clamp(1.5rem, 2.4vw, 2.2rem); border-bottom: 1px solid var(--line); transition: background-color .4s var(--ease); }
.cost__row:last-child { border-bottom: none; }
.cost__row:not(.cost__row--head):not(.cost__row--total):hover { background: var(--bg-soft); }
.cost__row--head { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); background: var(--bg-soft); }
.cost__name { font-family: var(--serif); font-weight: 440; font-size: 1.08rem; letter-spacing: -0.015em; color: var(--ink); }
.cost__desc { font-size: .9rem; color: var(--muted); }
.cost__amt { text-align: right; font-family: var(--serif); font-size: 1.18rem; white-space: nowrap; color: var(--ink); }
.cost__amt small { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2); margin-top: .2rem; }
.cost__row--total { background: var(--ink); color: #fff; }
.cost__row--total .cost__name { font-size: 1.2rem; color: #fff; }
.cost__row--total .cost__desc { color: rgba(255,255,255,.6); }
.cost__row--total .cost__amt { font-size: 1.6rem; color: var(--tomato); }
.cost__row--total .cost__amt small { color: rgba(255,255,255,.6); }

/* ============================================================
   Integrity / risk
   ============================================================ */
.integrity__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.risk { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.9rem, 3vw, 2.7rem); display: flex; flex-direction: column; transition: border-color .4s var(--ease); }
.risk:hover { border-color: var(--ink); }
.risk__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.risk__head h3 { font-family: var(--serif); font-weight: 440; font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.risk__label { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: .4em .85em; border-radius: var(--radius-pill); }
.risk__label--threat { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.risk__label--fix { background: var(--tomato); color: #fff; }
.risk__text { color: var(--muted); margin: 0 0 1.8rem; }
.risk__fix { margin-top: auto; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.risk__fix p { margin: 1rem 0 0; color: var(--ink-80); }

/* ============================================================
   Figure — grayscale photos warm to colour on hover
   ============================================================ */
.figure { margin: clamp(2.8rem, 5vw, 4.4rem) 0 0; }
.figure--banner { margin: 0 0 clamp(2.8rem, 5vw, 4.6rem); }
.figure__media { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg); }
.figure__media--wide { aspect-ratio: 16 / 7; }
.figure__media--cine { aspect-ratio: 16 / 6; }
@media (max-width: 700px) { .figure__media--wide, .figure__media--cine { aspect-ratio: 4 / 3; } }
.figure__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: filter .6s var(--ease), transform 1.2s var(--ease-out); }
.figure__media:hover img { filter: grayscale(0); }
.figure__media--auto { aspect-ratio: auto; background: var(--bg); }
.figure__media--auto img { position: static; width: 100%; height: auto; object-fit: contain; filter: none !important; }
.figure__media--auto:hover img { transform: none; }
figcaption { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 1.1rem .2rem 0; font-size: .9rem; color: var(--muted); }
.figure__label { display: inline-flex; align-items: center; gap: .55em; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink); white-space: nowrap; }
.figure__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tomato); }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { position: relative; color: var(--ink); background: transparent; padding-top: clamp(150px, 19vh, 230px); padding-bottom: clamp(58px, 9vw, 110px); border-bottom: 1px solid var(--line); }
.page-hero__bg { display: block; position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(9,7,11,.74) 0%, rgba(9,7,11,.48) 46%, rgba(9,7,11,.26) 82%, rgba(9,7,11,.4) 100%),
    linear-gradient(180deg, rgba(9,7,11,.3) 0%, rgba(9,7,11,.2) 50%, rgba(9,7,11,.55) 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title { font-family: var(--serif); font-weight: 350; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.04; letter-spacing: -0.032em; margin: 0 0 1.4rem; max-width: 18ch; font-optical-sizing: auto; color: var(--ink); }
.page-hero__title em { font-style: italic; color: var(--tomato); }
.page-hero__lede { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.62; max-width: 60ch; margin: 0; letter-spacing: -0.013em; }

/* ============================================================
   Badges
   ============================================================ */
.badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.badge { display: inline-flex; align-items: center; gap: .55em; padding: .55em 1.05em; border-radius: var(--radius-pill); font-size: .8rem; letter-spacing: -0.005em; color: var(--ink-80); border: 1px solid var(--line); background: var(--bg); }
.badge svg { width: 14px; height: 14px; color: var(--tomato); flex: none; }

/* ============================================================
   Metric cards
   ============================================================ */
.metrics { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.metric { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.7rem, 2.6vw, 2.5rem); background: var(--bg); transition: border-color .4s var(--ease); }
.metric:hover { border-color: var(--ink); }
.metric__num { font-family: var(--serif); font-weight: 360; letter-spacing: -0.03em; font-size: clamp(2.5rem, 5vw, 3.6rem); line-height: 1; color: var(--tomato); display: flex; align-items: baseline; gap: .1em; }
.metric__num small { font-family: var(--sans); font-size: .32em; letter-spacing: .02em; color: var(--muted-2); text-transform: uppercase; }
.metric h3 { font-family: var(--serif); font-weight: 440; font-size: 1.2rem; letter-spacing: -0.02em; margin: 1.2rem 0 .5rem; color: var(--ink); }
.metric p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ============================================================
   Stack panel
   ============================================================ */
.stack { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.stack__head { display: flex; align-items: center; gap: .7em; padding: 1.1rem clamp(1.5rem, 2.4vw, 2rem); border-bottom: 1px solid var(--line); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.stack__head .stack__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tomato); }
.stack__item { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1.5rem, 2.4vw, 2rem); border-bottom: 1px solid var(--line); transition: background-color .4s var(--ease); }
.stack__item:last-child { border-bottom: none; }
.stack__item:hover { background: var(--bg-soft); }
.stack__no { font-family: var(--serif); font-style: italic; color: var(--tomato); font-size: 1.3rem; line-height: 1.2; }
.stack__item h3 { font-family: var(--serif); font-weight: 440; font-size: 1.22rem; letter-spacing: -0.02em; margin: 0 0 .4rem; color: var(--ink); }
.stack__item p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.stack__item p strong { color: var(--ink); }

/* ============================================================
   Facts table
   ============================================================ */
.facts { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 880px; margin-inline: auto; }
.facts__row { display: grid; grid-template-columns: .82fr 1.4fr; gap: 1.5rem; align-items: baseline; padding: 1.2rem clamp(1.5rem, 2.4vw, 2rem); border-bottom: 1px solid var(--line); }
.facts__row:last-child { border-bottom: none; }
.facts__key { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.facts__val { font-family: var(--serif); font-weight: 440; font-size: 1.05rem; letter-spacing: -0.015em; color: var(--ink); }
.facts__val a { border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.facts__val a:hover { color: var(--tomato); border-color: var(--tomato); }

/* ============================================================
   Value list / value card
   ============================================================ */
.vlist { list-style: none; margin: .2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.vlist li { position: relative; padding-left: 1.7rem; color: var(--ink-80); font-size: .96rem; line-height: 1.55; }
.vlist li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 2px; background: var(--tomato); }
.vlist strong { font-weight: 600; }

.vcard { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.9rem, 3vw, 2.7rem); transition: border-color .4s var(--ease); }
.vcard:hover { border-color: var(--ink); }
.vcard__label { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--tomato); }
.vcard h3 { font-family: var(--serif); font-weight: 440; font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -0.02em; margin: .7rem 0 1.5rem; color: var(--ink); }

/* ============================================================
   CTA
   ============================================================ */
.cta__panel { position: relative; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(3.2rem, 7vw, 6rem) var(--gutter); background: var(--bg); }
.cta__panel .kicker { justify-content: center; }
.cta__panel .display { max-width: 18ch; margin-inline: auto; }
.cta__panel .lede { max-width: 52ch; margin: 1.5rem auto 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.6rem; }
.cta__contact { display: inline-flex; align-items: center; gap: .8rem; flex-wrap: wrap; justify-content: center; margin-top: 1.9rem; font-size: .92rem; color: var(--muted); }
.cta__contact a { color: var(--ink-80); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.cta__contact a:hover { color: var(--tomato); border-color: var(--tomato); }
.cta__sep { color: var(--muted-2); }

/* ============================================================
   Footer — white, hairline top
   ============================================================ */
.footer { background: var(--bg); color: var(--ink); padding-top: clamp(3.8rem, 6vw, 5.8rem); position: relative; border-top: 1px solid var(--line); overflow: hidden; }
.footer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(52% 72% at 50% 100%, rgba(22,163,74,.12), transparent 64%);
  opacity: .7; animation: glow-pulse 17s var(--ease) infinite;
}
.footer__net { display: none; }
.footer__inner { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.brand--footer { color: var(--ink); }
.brand--footer .brand__mark { color: var(--tomato); }
.brand--footer .brand__sub { color: var(--muted-2); }
.footer__tag { margin: 1.1rem 0 0; color: var(--muted); max-width: 34ch; font-size: .95rem; }
.footer__contact { display: flex; flex-direction: column; gap: .4rem; margin-top: 1.4rem; }
.footer__contact a { color: var(--ink); font-size: .92rem; width: fit-content; border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.footer__contact a:hover { color: var(--tomato); border-color: var(--tomato); }
.footer__nav { display: grid; grid-auto-flow: row; gap: .8rem; align-content: start; }
.footer__nav a { color: var(--muted); font-size: .92rem; width: fit-content; transition: color .3s var(--ease); position: relative; }
.footer__nav a:hover { color: var(--ink); }
.footer__nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--tomato); transition: width .35s var(--ease-out); }
.footer__nav a:hover::after { width: 100%; }
.footer__nav a[aria-current="page"] { color: var(--ink); }
.footer__nav a[aria-current="page"]::after { width: 100%; }
.footer__meta { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: 1.9rem; font-size: .82rem; color: var(--muted-2); }
.footer__credit a { display: inline-flex; align-items: center; gap: .3em; color: var(--ink-80); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.footer__credit a svg { width: 13px; height: 13px; transition: transform .4s var(--ease-out); }
.footer__credit a:hover { color: var(--tomato); border-color: var(--tomato); }
.footer__credit a:hover svg { transform: translate(2px, -2px); }

/* ============================================================
   Bento spec grid (flat)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; grid-auto-flow: dense; }
.bento__tile { position: relative; grid-column: span 2; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 2.4vw, 2.1rem); background: var(--bg); display: flex; flex-direction: column; transition: border-color .4s var(--ease); }
.bento__tile:hover { border-color: var(--ink); }
.bento__tile--lg { grid-column: span 3; }
.bento__tile--wide { grid-column: span 4; }
.bento__tile--tall { grid-row: span 2; }
.bento__tile--accent, .bento__tile--s, .bento__tile--w, .bento__tile--i { background: var(--bg); }
.bento__icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: var(--radius); color: var(--ink); border: 1px solid var(--line); margin-bottom: 1.2rem; }
.bento__icon svg { width: 21px; height: 21px; }
.bento__metric { font-family: var(--serif); font-weight: 360; font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1; letter-spacing: -0.03em; margin-bottom: .5rem; color: var(--tomato); }
.bento__tile h3 { font-family: var(--serif); font-weight: 440; font-size: 1.18rem; letter-spacing: -0.02em; margin: 0 0 .4rem; color: var(--ink); }
.bento__tile p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.bento__tile p strong { color: var(--ink); }
.bento__tag { margin-top: auto; padding-top: 1.1rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--muted-2); }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__tile, .bento__tile--lg, .bento__tile--wide { grid-column: span 1; }
  .bento__tile--tall { grid-row: auto; }
}
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

/* ============================================================
   Vertical timeline (flat)
   ============================================================ */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline__item { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 1.6rem; padding-bottom: 2.6rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__rail { position: relative; display: flex; flex-direction: column; align-items: center; }
.timeline__dot { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--tomato); background: var(--bg); border: 1px solid var(--tomato); z-index: 1; font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.timeline__line { flex: 1; width: 1px; margin: .5rem 0 -.6rem; background: var(--line); }
.timeline__item:last-child .timeline__line { display: none; }
.timeline__body { padding-top: .7rem; }
.timeline__tag { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: .4rem; color: var(--tomato); }
.timeline__body h3 { font-family: var(--serif); font-weight: 440; font-size: 1.3rem; letter-spacing: -0.02em; margin: 0 0 .45rem; color: var(--ink); }
.timeline__body p { margin: 0; color: var(--muted); line-height: 1.6; }
.timeline__body p strong { color: var(--ink); }
@media (max-width: 560px) { .timeline__item { grid-template-columns: 38px 1fr; gap: 1.2rem; } .timeline__dot { width: 38px; height: 38px; font-size: .92rem; } }

/* ============================================================
   Contact form (flat)
   ============================================================ */
.form-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); padding: clamp(1.7rem, 3vw, 2.7rem); }
.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea { font-family: inherit; font-size: .98rem; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: .85em 1em; width: 100%; outline: none; transition: border-color .3s var(--ease); }
.field textarea { resize: vertical; min-height: 134px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none' stroke='%2317150f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.6em; }
.form__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .4rem; }
.form__note { font-size: .82rem; color: var(--muted-2); margin: 0; }
.form__note--ok { color: var(--tomato); font-weight: 600; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal animations (subtle)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero__title [data-reveal-word] { opacity: 1 !important; transform: none !important; }
  .marquee__track, .hero__cue-line::after,
  .hero__bg::after, .page-hero__bg::after, .footer::before,
  .fx-bg::before, .fx-bg::after { animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
  .section__head--sticky { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .integrity__grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .steps--3 { grid-template-columns: 1fr; }
  .steps--3 .step { border-right: none; border-bottom: 1px solid var(--line); }
  .steps--3 .step:last-child { border-bottom: none; }
}

@media (max-width: 760px) {
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--bg); cursor: pointer; align-items: center; z-index: 2; }
  .nav__toggle span { width: 16px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s var(--ease); }
  body.menu-open .nav__toggle span:first-child { transform: translateY(3.25px) rotate(45deg); }
  body.menu-open .nav__toggle span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .nav__links { position: fixed; inset: 78px 0 auto 0; z-index: 1; display: flex; flex-direction: column; gap: 0; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: .5rem var(--gutter) 1.6rem; transform: translateY(-14px); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease), transform .4s var(--ease-out); }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  body.menu-open .nav { background: var(--bg); border-bottom-color: transparent; }
  .nav__links a { color: var(--ink); font-size: 1.15rem; font-family: var(--serif); font-weight: 420; padding: 1.05rem .2rem; border-bottom: 1px solid var(--line-soft); }
  .nav__links a::after { display: none; }
  .nav__links a:last-child { border-bottom: none; }
  .cost__row { grid-template-columns: 1fr auto; gap: .4rem .8rem; }
  .cost__desc { grid-column: 1 / -1; order: 3; }
  .cost__row--head .cost__desc { display: none; }
  .cost__row--head { grid-template-columns: 1fr auto; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.8rem; }
  .stat:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) { .facts__row { grid-template-columns: 1fr; gap: .35rem; } }

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

/* ============================================================
   Immersive video header — light text over the background video
   ============================================================ */
.hero, .page-hero { color: #fff; }
.hero__title { color: #fff; }
.hero__lede { color: rgba(255,255,255,.86); }
.hero .eyebrow, .page-hero .eyebrow { color: rgba(255,255,255,.82); }
.hero__stats { border-top-color: rgba(255,255,255,.24); }
.stat dt { color: rgba(255,255,255,.6); }
.stat dd { color: #fff; }
.hero__cue { color: rgba(255,255,255,.72); }
.hero__cue-line { background: rgba(255,255,255,.32); }
.page-hero__title { color: #fff; }
.page-hero__lede { color: rgba(255,255,255,.86); }
.page-hero { border-bottom-color: rgba(255,255,255,.16); }
.page-hero .badge { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }

/* ghost buttons in the header become light */
.hero .pill--ghost, .page-hero .pill--ghost { color: #fff; border-color: rgba(255,255,255,.42); background: transparent; }
.hero .pill--ghost:hover, .page-hero .pill--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* nav sits over the dark video header until scrolled */
.nav:not(.is-scrolled) .brand, .nav:not(.is-scrolled) .brand__sub { color: #fff; }
.nav:not(.is-scrolled) .nav__links a { color: rgba(255,255,255,.82); }
.nav:not(.is-scrolled) .nav__links a:hover,
.nav:not(.is-scrolled) .nav__links a[aria-current="page"] { color: #fff; }
.nav:not(.is-scrolled) .nav__toggle { border-color: rgba(255,255,255,.42); }
.nav:not(.is-scrolled) .nav__toggle span { background: #fff; }

/* ============================================================
   Post-footer video band (injected after the footer)
   ============================================================ */
.post-footer { position: relative; width: 100%; line-height: 0; background: #0b0a08; overflow: hidden; border-top: 1px solid var(--line); }
.post-footer video { display: block; width: 100%; height: clamp(260px, 40vw, 560px); object-fit: cover; }
