/* ============================================================
   Honour Agriculture — Design System
   Three colours only: Ink · Paper · Tomato.
   Everything else is those three at different opacities.
   ============================================================ */

:root {
  /* — the three colours — */
  --ink:    #17150F;   /* warm near-black */
  --paper:  #F4F0E7;   /* warm cream */
  --tomato: #CF3E2C;   /* vine-tomato red */

  /* — derived (opacity tints, not new hues) — */
  --ink-90: rgba(23, 21, 15, .90);
  --ink-70: rgba(23, 21, 15, .68);
  --ink-50: rgba(23, 21, 15, .50);
  --ink-30: rgba(23, 21, 15, .30);
  --hair:   rgba(23, 21, 15, .14);
  --hair-soft: rgba(23, 21, 15, .08);
  --paper-90: rgba(244, 240, 231, .90);
  --paper-60: rgba(244, 240, 231, .60);

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

  /* — rhythm — */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(80px, 11vw, 168px);

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

  --radius-pill: 999px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -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; }

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

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

/* Grain overlay — adds a film-like texture across the whole page */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress 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: 0%;
  background: var(--tomato);
  transform-origin: left;
}

/* ============================================================
   Typography helpers
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(2rem, 5.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  font-optical-sizing: auto;
}
.display em { color: var(--tomato); font-weight: 400; }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-70);
  letter-spacing: -0.015em;
  margin: 0;
}

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

.eyebrow {
  display: inline-flex; align-items: center; gap: .65em;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--paper-90); margin: 0 0 1.6rem;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--tomato);
  box-shadow: 0 0 0 4px rgba(207,62,44,.22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(207,62,44,.22); }
  50% { box-shadow: 0 0 0 7px rgba(207,62,44,0); }
}

/* ============================================================
   Pills / buttons
   ============================================================ */
.pill {
  position: relative;
  display: inline-flex; align-items: center; gap: .6em;
  padding: .85em 1.4em;
  border-radius: var(--radius-pill);
  font-size: .92rem; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid var(--hair);
  cursor: pointer; overflow: hidden;
  transition: transform .5s var(--ease-out), color .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
  will-change: transform;
}
.pill svg { width: 15px; height: 15px; transition: transform .45s var(--ease-out); }
.pill > span, .pill > svg { position: relative; z-index: 1; }

.pill--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pill--solid::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--tomato);
  transform: translateY(101%); border-radius: inherit;
  transition: transform .5s var(--ease-out);
}
.pill--solid:hover::before { transform: translateY(0); }
.pill--solid:hover { border-color: var(--tomato); }
.pill--solid:hover svg { transform: translateX(3px); }

.pill--ghost { background: transparent; color: var(--ink); }
.pill--ghost::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--ink);
  transform: scale(.4); opacity: 0; border-radius: inherit;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease);
}
.pill--ghost:hover { color: var(--paper); border-color: var(--ink); }
.pill--ghost:hover::before { transform: scale(1); opacity: 1; }

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

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform .5s var(--ease), background-color .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 2rem;
}
.nav.is-scrolled {
  background: var(--paper-90);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--hair);
}
.nav.is-hidden { transform: translateY(-100%); }
/* hero is dark, so nav text starts light then flips when scrolled */
.nav:not(.is-scrolled) .nav__links a,
.nav:not(.is-scrolled) .brand { color: var(--paper); }
.nav:not(.is-scrolled) .nav__cta { border-color: rgba(244,240,231,.4); background: rgba(244,240,231,.08); color: var(--paper); backdrop-filter: blur(6px); }
.nav:not(.is-scrolled) .nav__toggle span { background: var(--paper); }

.brand {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--serif); font-weight: 500; font-size: 1.18rem;
  letter-spacing: -0.02em; transition: color .5s var(--ease);
}
.brand__mark { width: 26px; height: 26px; color: var(--tomato); flex: none; }
.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(--ink-50);
}
.nav:not(.is-scrolled) .brand__sub { color: var(--paper-60); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  position: relative; font-size: .92rem; font-weight: 450; color: var(--ink-70);
  padding: .3em 0; transition: color .35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--tomato); transition: width .4s var(--ease-out);
}
.nav__links a:hover { color: var(--tomato); }
.nav__links a:hover::after { width: 100%; }
.nav:not(.is-scrolled) .nav__links a:hover { color: var(--paper); }

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

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 120px; padding-bottom: clamp(40px, 7vh, 88px);
  overflow: hidden; color: var(--paper);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.hero__slides { position: absolute; inset: -8% 0 0 0; height: 116%; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide.is-missing { display: none; }

/* Fallback when no images exist: a warm, agricultural gradient field */
.hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(207,62,44,.42), transparent 55%),
    radial-gradient(90% 70% at 0% 110%, rgba(207,62,44,.18), transparent 60%),
    linear-gradient(165deg, #221F16 0%, #17150F 55%, #100E09 100%);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,14,9,.30) 0%, rgba(16,14,9,.12) 32%, rgba(16,14,9,.55) 78%, rgba(16,14,9,.86) 100%);
}

.hero__inner { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 0.98; letter-spacing: -0.035em;
  margin: 0 0 1.6rem; max-width: 16ch;
  font-optical-sizing: auto;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-style: italic; color: var(--tomato); }
.hero__title [data-reveal-word] {
  display: inline-block; transform: translateY(110%); opacity: 0;
}

.hero__lede {
  max-width: 56ch; font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55; color: var(--paper-90); margin: 0 0 2.2rem;
  letter-spacing: -0.015em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.hero__actions .pill--ghost { color: var(--paper); border-color: rgba(244,240,231,.34); }
.hero__actions .pill--ghost::before { background: var(--paper); }
.hero__actions .pill--ghost:hover { color: var(--ink); }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.6rem, 5vw, 4rem);
  margin: 0; padding-top: 1.8rem; border-top: 1px solid rgba(244,240,231,.18);
  width: fit-content; max-width: 100%;
}
.stat dt { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-60); margin-bottom: .4rem; }
.stat dd {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: .15em;
}
.stat__unit { font-family: var(--sans); font-size: .72rem; letter-spacing: .04em; color: var(--paper-60); text-transform: uppercase; }

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

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

/* ============================================================
   Sections / layout
   ============================================================ */
.section { position: relative; padding-block: var(--section-y); z-index: 2; }

.grid-2 {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.4rem, 6vw, 6rem);
}
.grid-2--top { align-items: start; }

.section__head--center { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__head--center .kicker { justify-content: center; }
.section__head--center .lede { margin-inline: auto; max-width: 58ch; margin-top: 1.4rem; }
.section__head--sticky { position: sticky; top: 110px; }
.section__head .lede { margin-top: 1.4rem; }
.section__head .chip { margin-top: 1.8rem; }

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

.chip {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .55em 1.1em; border: 1px solid var(--hair); border-radius: var(--radius-pill);
  font-size: .82rem; color: var(--ink-70);
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tomato); animation: pulse 2.4s var(--ease) infinite; }

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

/* ============================================================
   Method — steps
   ============================================================ */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--hair); border-radius: 20px; overflow: hidden;
}
.step {
  position: relative; padding: clamp(1.6rem, 2.4vw, 2.4rem);
  border-right: 1px solid var(--hair);
  transition: background-color .5s var(--ease);
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(207,62,44,.04); }
.step__no {
  font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--tomato);
  display: block; margin-bottom: 1.6rem;
}
.step__icon {
  width: 46px; height: 46px; color: var(--ink); margin-bottom: 1.4rem;
  transition: transform .5s var(--ease-out), color .4s var(--ease);
}
.step__icon svg { width: 100%; height: 100%; }
.step:hover .step__icon { transform: translateY(-4px); color: var(--tomato); }
.step h3 { font-family: var(--serif); font-weight: 460; font-size: 1.22rem; letter-spacing: -0.02em; margin: 0 0 .6rem; }
.step p { font-size: .92rem; color: var(--ink-70); margin: 0; line-height: 1.5; }

/* ============================================================
   Technology — cards
   ============================================================ */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.card {
  border: 1px solid var(--hair); border-radius: 18px;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  background: rgba(244,240,231,.4);
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--ink-30); box-shadow: 0 18px 50px -28px rgba(23,21,15,.4); }
.card__top { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.card__no {
  width: 30px; height: 30px; 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: 460; font-size: 1.3rem; letter-spacing: -0.02em; margin: 0; }
.card p { font-size: .95rem; color: var(--ink-70); margin: 0; }

/* ripeness bar */
.ripeness { margin-top: 1.4rem; }
.ripeness__bar { display: flex; height: 46px; border-radius: 10px; overflow: hidden; border: 1px solid var(--hair); }
.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-70);
  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(207,62,44,.14); }
.ripeness .seg--turn { background: rgba(207,62,44,.32); }
.ripeness .seg--red  { background: rgba(207,62,44,.62); }
.ripeness .seg--red b, .ripeness .seg--red { color: var(--paper); }

/* calibration */
.calib { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--ink-70); }
.calib__ref, .calib__out { display: flex; align-items: center; gap: .6em; }
.calib__disc { width: 22px; height: 22px; border-radius: 50%; background: #3457b8; border: 1px solid rgba(23,21,15,.2); flex: none; }
.calib__tomato { width: 33px; height: 33px; 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.4rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  padding: .45em 1em; border: 1px solid var(--hair); border-radius: var(--radius-pill);
  font-size: .78rem; color: var(--ink-70); transition: all .35s var(--ease);
}
.card:hover .tag { border-color: rgba(207,62,44,.4); color: var(--tomato); }

/* ============================================================
   Kit — cost table
   ============================================================ */
.cost { border: 1px solid var(--hair); border-radius: 20px; 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.3rem clamp(1.4rem, 2.4vw, 2.2rem);
  border-bottom: 1px solid var(--hair);
  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: rgba(207,62,44,.04); }
.cost__row--head {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50);
  background: rgba(23,21,15,.03);
}
.cost__name { font-family: var(--serif); font-weight: 460; font-size: 1.08rem; letter-spacing: -0.015em; }
.cost__desc { font-size: .9rem; color: var(--ink-70); }
.cost__amt { text-align: right; font-family: var(--serif); font-size: 1.18rem; white-space: nowrap; }
.cost__amt small { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-50); margin-top: .2rem; }
.cost__row--total { background: var(--ink); color: var(--paper); }
.cost__row--total .cost__desc { color: var(--paper-60); }
.cost__row--total .cost__name { font-size: 1.2rem; }
.cost__row--total .cost__amt { font-size: 1.7rem; color: var(--tomato); }
.cost__row--total .cost__amt small { color: var(--paper-60); }

/* ============================================================
   Integrity
   ============================================================ */
.integrity__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.risk {
  border: 1px solid var(--hair); border-radius: 20px; padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease);
}
.risk:hover { transform: translateY(-4px); border-color: var(--ink-30); }
.risk__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; flex-wrap: wrap; }
.risk__head h3 { font-family: var(--serif); font-weight: 460; font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -0.02em; margin: 0; }
.risk__label {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: .4em .85em; border-radius: var(--radius-pill);
}
.risk__label--threat { background: rgba(23,21,15,.06); color: var(--ink-70); border: 1px solid var(--hair); }
.risk__label--fix { background: var(--tomato); color: var(--paper); }
.risk__text { color: var(--ink-70); margin: 0 0 1.8rem; }
.risk__fix { margin-top: auto; padding-top: 1.6rem; border-top: 1px solid var(--hair); }
.risk__fix p { margin: 1rem 0 0; color: var(--ink-90); }

/* ============================================================
   Figure — contextual imagery
   ============================================================ */
.figure { margin: clamp(2.6rem, 5vw, 4.2rem) 0 0; }
.figure--banner { margin: 0 0 clamp(2.6rem, 5vw, 4.4rem); }
.figure__media {
  position: relative; overflow: hidden; border-radius: 22px;
  border: 1px solid var(--hair); background: var(--ink);
}
.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;
  transform: scale(1.08); transition: transform 1.4s var(--ease-out);
  filter: saturate(1.02);
}
.figure.is-revealed .figure__media img { transform: scale(1); }
.figure__media:hover img { transform: scale(1.05); transition-duration: .9s; }
.figure__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(16,14,9,.28);
}
figcaption {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 1.1rem .3rem 0; font-size: .9rem; color: var(--ink-70);
}
.figure__label {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .74rem; 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); }

/* ============================================================
   CTA
   ============================================================ */
.cta__panel {
  position: relative; text-align: center;
  border: 1px solid var(--hair); border-radius: 28px;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(207,62,44,.07), transparent 60%);
  overflow: hidden;
}
.cta__panel .kicker { justify-content: center; }
.cta__panel .display { max-width: 18ch; margin-inline: auto; }
.cta__panel .lede { max-width: 52ch; margin: 1.4rem auto 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.4rem; }
.cta__contact {
  display: inline-flex; align-items: center; gap: .8rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.8rem; font-size: .92rem; color: var(--ink-70);
}
.cta__contact a {
  color: var(--ink-90); border-bottom: 1px solid var(--hair); 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(--ink-30); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(3.5rem, 6vw, 5.5rem); position: relative; z-index: 2; }
.footer__inner { display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; padding-bottom: 3rem; border-bottom: 1px solid rgba(244,240,231,.14); }
.brand--footer { color: var(--paper); }
.brand--footer .brand__sub { color: var(--paper-60); }
.footer__tag { margin: 1rem 0 0; color: var(--paper-60); max-width: 34ch; font-size: .95rem; }
.footer__contact { display: flex; flex-direction: column; gap: .35rem; margin-top: 1.3rem; }
.footer__contact a { color: var(--paper); font-size: .92rem; width: fit-content; border-bottom: 1px solid rgba(244,240,231,.2); 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: .7rem; align-content: start; }
.footer__nav a { color: var(--paper-60); font-size: .92rem; width: fit-content; transition: color .3s var(--ease); position: relative; }
.footer__nav a:hover { color: var(--paper); }
.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__meta { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: .82rem; color: var(--paper-60); }
.footer__credit a {
  display: inline-flex; align-items: center; gap: .3em; color: var(--paper);
  border-bottom: 1px solid rgba(244,240,231,.3); 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); }

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s 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, .eyebrow__dot, .chip__dot, .hero__cue-line::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(--hair); }
  .integrity__grid { grid-template-columns: 1fr; }
}

@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(--hair); border-radius: 50%;
    background: transparent; cursor: pointer; align-items: center; z-index: 2;
  }
  .nav:not(.is-scrolled) .nav__toggle { border-color: rgba(244,240,231,.4); }
  .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); }
  body.menu-open .nav__toggle span { background: var(--ink); }

  /* dropdown menu panel */
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; z-index: 1;
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--hair);
    padding: .5rem var(--gutter) 1.6rem;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease), transform .4s var(--ease-out);
    box-shadow: 0 24px 50px -30px rgba(23,21,15,.5);
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  body.menu-open .nav { background: var(--paper-90); backdrop-filter: blur(14px); border-bottom-color: transparent; }
  body.menu-open .brand, body.menu-open .brand__sub { color: var(--ink); }
  .nav__links a, .nav:not(.is-scrolled) .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(--hair-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.4rem 1.6rem; }
  .stat:last-child { grid-column: 1 / -1; }
}

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