/* ==========================================================================
   RustleUp — site design system (2026 rebuild)
   Brand: forest #274542 · lime #D7FF91 · cream #F0EEDD · paper #FEFCF1
          pink #FF85DC/#FFB0F2 (one accent per composition) · ink #14181B
   Type:  Bricolage Grotesque ExtraBold (display) · Poppins (body)
   Bands alternate forest/lime with cream/paper breaks; buttons invert per band.
   Legacy styles.css remains for privacy.html/terms.html only.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subset) ---------------------------------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-800-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2');
}

/* ---- Tokens -------------------------------------------------------------- */
:root {
  --forest: #274542;
  --forest-deep: #1d3532;
  --lime: #D7FF91;
  --cream: #F0EEDD;
  --paper: #FEFCF1;
  --pink: #FF85DC;
  --pink-soft: #FFB0F2;
  --purple: #643FC8;
  --ink: #14181B;

  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --size-display: clamp(2.75rem, 6.5vw, 4.75rem);
  --size-h2: clamp(2.1rem, 4.5vw, 3.4rem);
  --size-h3: clamp(1.5rem, 2.6vw, 2.05rem);
  --size-body-lg: clamp(1.05rem, 1.4vw, 1.2rem);

  --radius-card: 24px;
  --radius-phone: 46px;
  --shadow-card: 0 18px 40px -18px rgba(20, 24, 27, 0.28);
  --shadow-phone: 0 34px 70px -28px rgba(20, 24, 27, 0.55);

  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-pad: clamp(76px, 11vh, 136px);

  --nav-h: 72px;
}

/* ---- Reset-ish ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
/* No scroll-behavior:smooth — it fights Lenis (both animate scrollTop,
   which reads as rubbery/stuck scrolling). Lenis owns smoothness; without
   JS, instant anchor jumps are the correct fallback. */
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

/* ---- Display type ---------------------------------------------------------- */
.h-display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
h1, .h-display { font-size: var(--size-display); }
h2 { font-size: var(--size-h2); line-height: 1.06; }
h3 { font-size: var(--size-h3); line-height: 1.12; }
.lead { font-size: var(--size-body-lg); line-height: 1.6; }

/* Colour-emphasis inside a headline (one phrase flipped — brand move).
   accent-pink is for dark (forest) bands only; on light bands use
   accent-marker (forest text on a soft-pink highlight — passes AA). */
.accent-pink { color: var(--pink); }
.accent-lime { color: var(--lime); }
.accent-marker { background: var(--pink-soft); color: var(--forest); padding: 0 0.14em; border-radius: 0.18em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ---- Bands (sections) ------------------------------------------------------ */
.band {
  position: relative;
  padding-block: var(--section-pad);
  overflow: clip;
}
.band--forest {
  background: var(--forest);
  color: rgba(240, 238, 221, 0.88);
  --heading: var(--lime);
  --btn-bg: var(--lime);
  --btn-fg: var(--forest);
  --chip-bg: rgba(215, 255, 145, 0.12);
  --rule: rgba(240, 238, 221, 0.16);
}
.band--lime {
  background: var(--lime);
  color: rgba(29, 53, 50, 0.9);
  --heading: var(--forest);
  --btn-bg: var(--forest);
  --btn-fg: var(--lime);
  --chip-bg: rgba(39, 69, 66, 0.08);
  --rule: rgba(39, 69, 66, 0.18);
}
.band--cream {
  background: var(--cream);
  color: rgba(20, 24, 27, 0.82);
  --heading: var(--forest);
  --btn-bg: var(--forest);
  --btn-fg: var(--lime);
  --chip-bg: rgba(39, 69, 66, 0.07);
  --rule: rgba(39, 69, 66, 0.14);
}
.band--paper {
  background: var(--paper);
  color: rgba(20, 24, 27, 0.82);
  --heading: var(--forest);
  --btn-bg: var(--forest);
  --btn-fg: var(--lime);
  --chip-bg: rgba(39, 69, 66, 0.07);
  --rule: rgba(39, 69, 66, 0.14);
}
.band h1, .band h2, .band h3 { color: var(--heading); }

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

/* ---- Buttons (band-inverted pill system — founder-ratified) ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.9em;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(20, 24, 27, 0.45); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

.btn--outline {
  background: transparent;
  color: var(--heading);
  box-shadow: inset 0 0 0 2px currentColor;
}
.btn--outline:hover { box-shadow: inset 0 0 0 2px currentColor, 0 10px 24px -12px rgba(20, 24, 27, 0.35); }

.link-arrow {
  font-weight: 600;
  color: var(--heading);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.link-arrow::after { content: ' \2192'; }
.link-arrow:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

/* ---- Email capture (combined input + pill, from board 1) -------------------- */
.email-capture { max-width: 520px; }
.email-capture__row {
  display: flex;
  background: var(--paper);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0 14px 34px -18px rgba(20, 24, 27, 0.5);
}
.email-capture input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.7em 1.1em;
  font: 500 1rem var(--font-body);
  color: var(--ink);
}
.email-capture input[type="email"]::placeholder { color: rgba(20, 24, 27, 0.45); }
.email-capture input[type="email"]:focus { outline: none; }
.email-capture__row:focus-within { outline: 3px solid var(--pink); outline-offset: 3px; }
.email-capture .btn { white-space: nowrap; }
.form-status { min-height: 1.5em; margin-top: 0.6em; font-weight: 500; font-size: 0.95rem; }
.form-status.is-success { color: var(--heading); }
.form-status.is-error { color: var(--pink); }
.capture-kicker { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--heading); margin: 0 0 0.2em; }
.capture-note { font-size: 0.95rem; opacity: 0.85; }
@media (max-width: 560px) {
  .email-capture__row { flex-direction: column; border-radius: 28px; }
  .email-capture .btn { width: 100%; }
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---- Nav --------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--forest);
  color: var(--cream);
  --heading: var(--lime);
  --btn-bg: var(--lime);
  --btn-fg: var(--forest);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--nav-h);
}
.site-nav__logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.site-nav__logo img { height: 30px; width: auto; }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.site-nav__links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: rgba(240, 238, 221, 0.92);
}
.site-nav__links a:hover { color: var(--lime); }
.site-nav__links a.btn { font-size: 0.95rem; padding: 0.7em 1.5em; color: var(--btn-fg); }
.site-nav__links a.btn:hover { color: var(--btn-fg); }
.site-nav__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--lime);
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}
@media (max-width: 880px) {
  .site-nav__toggle { display: block; }
  .site-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--gutter) 24px;
    background: var(--forest);
    display: none;
    box-shadow: 0 30px 40px -20px rgba(20, 24, 27, 0.5);
  }
  .site-nav.is-open .site-nav__links { display: flex; }
  .site-nav__links a { padding: 10px 4px; font-size: 1.05rem; }
  .site-nav__links .btn { margin-top: 8px; }
  .site-nav.is-open .site-nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .site-nav.is-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
  .site-nav.is-open .site-nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---- Phone device frame (screens are swappable files in images/app/) --------- */
.phone {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 9 / 19.2;
  transform-style: preserve-3d;
}
.phone__frame {
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: var(--radius-phone);
  padding: 12px;
  box-shadow: var(--shadow-phone), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone__screen-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-phone) - 12px);
  overflow: hidden;
  background: var(--forest-deep);
}
.phone__screen-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Notch hidden — the seeded renders carry their own device status chrome */
.phone__notch { display: none; }
.phone--tilt { transform: rotateZ(-6deg); }

/* ---- Blobs & sparkles ---------------------------------------------------------- */
.blob { position: absolute; z-index: 0; pointer-events: none; aspect-ratio: 1; }
.blob--lime { background: var(--lime); border-radius: 47% 53% 61% 39% / 45% 51% 49% 55%; }
.blob--paper { background: var(--paper); opacity: 0.55; border-radius: 56% 44% 39% 61% / 55% 46% 54% 45%; }
.blob--pink { background: var(--pink-soft); border-radius: 52% 48% 44% 56% / 48% 58% 42% 52%; }
.sparkle { position: absolute; z-index: 3; pointer-events: none; }

/* Share-moment composite (Band A) — stylised illustration, not faked app UI */
.share-moment { position: relative; width: min(400px, 100%); }
.share-moment__post { padding: 18px; position: relative; z-index: 1; }
.share-moment__photo {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background:
    radial-gradient(120px 90px at 70% 30%, var(--pink-soft) 0 38%, transparent 40%),
    radial-gradient(180px 140px at 30% 75%, var(--lime) 0 42%, transparent 44%),
    var(--forest);
}
.share-moment__meta { display: flex; gap: 10px; align-items: center; padding-top: 12px; color: rgba(20,24,27,0.6); font-size: 0.9rem; }
.share-moment__meta span { display: inline-block; height: 10px; border-radius: 6px; background: var(--cream); }
.share-moment__sheet {
  position: relative;
  z-index: 2;
  margin: -26px 10% 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.share-moment__sheet img { width: 44px; height: 44px; border-radius: 11px; box-shadow: 0 0 0 3px var(--lime); }
.share-moment__sheet .dot { width: 44px; height: 44px; border-radius: 11px; background: var(--cream); }
.share-moment__sheet figcaption { font-weight: 600; font-size: 0.92rem; color: var(--forest); margin-left: auto; }

/* ---- Cards ----------------------------------------------------------------------- */
.card {
  background: var(--paper);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Landing sections
   ========================================================================== */

/* ---- Hero -------------------------------------------------------------------- */
.hero { padding-block: clamp(64px, 9vh, 110px) 0; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; padding-block-end: var(--section-pad); }
.hero__copy .lead { max-width: 34em; }
.hero__stage {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}
.hero__stage .phone {
  position: absolute;
  right: max(-40px, -6vw);
  top: 48px;
  z-index: 2;
}
.hero__stage .blob { right: -22%; top: 4%; width: 130%; }
.hero__stage .sparkle--one { top: 26px; right: 30%; width: 44px; }
.hero__share-note { font-size: 0.95rem; opacity: 0.8; max-width: 36em; }
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding-block-end: 0; }
  .hero__stage { min-height: 0; height: clamp(420px, 92vw, 560px); }
  .hero__stage .phone { right: 50%; transform: translateX(50%) rotateZ(-4deg); top: 24px; }
}

/* ---- Problem strip --------------------------------------------------------------- */
.problem { text-align: center; }
.problem h2 { max-width: 16em; margin-inline: auto; }
.problem .lead { max-width: 44em; margin-inline: auto; }
.problem__art {
  margin-top: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
/* Transparent designed composite (magazine → phone → clean card): no card box,
   shown at natural size so it stays crisp. Swap the file for a 2x Figma export
   when available — nothing else changes. */
.problem__art--float {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  max-width: 768px;
  margin-inline: auto;
}

/* ---- How it works — pinned scrub (Tier-1) ------------------------------------------ */
/* Sticky-media chapters: the stage pins beside naturally-tall scrolling
   steps — normal document flow, so full-page captures show no blank band. */
.scrub__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  width: 100%;
}
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .scrub__grid > .scrub__phone-stage {
    position: sticky;
    top: 96px;
  }
  /* px, not vh — full-page capture tools inflate the viewport, and
     vh-based step heights blow the section up into a blank band. */
  .scrub__step {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .scrub__step:last-child { min-height: 300px; }
}
.scrub__phone-stage { position: relative; display: flex; justify-content: center; }
.scrub__phone-stage .blob { width: 120%; top: -6%; left: -12%; }
.scrub__screens { position: relative; width: 100%; height: 100%; }
.scrub__screens img { transform: translateY(0); }
.scrub__screens img[data-step="2"], .scrub__screens img[data-step="3"] { transform: translateY(101%); }
/* v2: chapter composites — each scrub step carries its designed artwork.
   Step 1 keeps the real add-recipe render in the code phone; steps 2/3 are
   the Figma composites (plan-and-shop tilted phone, shopping-list stack). */
.scrub__stage { position: relative; width: min(480px, 100%); aspect-ratio: 1 / 1.4; }
.scrub__item .phone { width: min(290px, 62%); }
.scrub__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scrub__item img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.scrub__item[data-step="2"], .scrub__item[data-step="3"] {
  opacity: 0;
  transform: translateY(60px) scale(0.94);
}

/* Food cut-outs — oversized produce cropping through band edges (brand motif,
   store-frame scale). They sit BELOW content (.band > .container is lifted),
   so type always wins — especially at mobile widths. */
.cutout {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  height: auto;
  transform: rotate(var(--rot, 0deg));
  filter: drop-shadow(0 22px 34px rgba(20, 24, 27, 0.25));
}
.band > .container { position: relative; z-index: 2; }


/* Band A: sources flow — share from anywhere → RustleUp */
.sources-flow { display: grid; gap: 26px; justify-items: center; width: min(380px, 100%); }
.sources-flow__row { display: flex; gap: 18px; }
.sources-flow__row img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 10px 22px -10px rgba(20, 24, 27, 0.35);
}
.sources-flow__arrow { color: var(--forest); opacity: 0.55; }
.sources-flow__app {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: 0 0 0 4px var(--lime), 0 18px 36px -14px rgba(20, 24, 27, 0.45);
}
.sources-flow__caption { font-weight: 600; color: var(--forest); font-size: 0.95rem; margin: 0; }

.scrub__rail { position: relative; margin-top: clamp(20px, 3vw, 36px); }
.scrub__rail::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 2px;
  background: var(--rule);
}
.scrub__step { position: relative; padding: 14px 0 14px 44px; transition: opacity 300ms ease; }
.scrub__step::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 24px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--heading);
  box-shadow: 0 0 0 4px var(--chip-bg);
  transition: transform 300ms ease;
}
.scrub__step h3 { margin-bottom: 0.25em; }
.scrub__step p { max-width: 30em; margin: 0; }
.scrub__step[data-active="false"] { opacity: 0.85; }
.scrub__step[data-active="false"]::before { transform: scale(0.7); }

/* Mobile / reduced-motion: stacked steps, no pin */
.steps-stack { display: none; }
@media (max-width: 899px), (prefers-reduced-motion: reduce) {
  #how .scrub__grid { display: none; }
  .steps-stack { display: block; }
  .steps-stack h2 { max-width: 14em; }
  .steps-stack__item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    align-items: start;
    padding-block: 22px;
    border-top: 2px solid var(--rule);
  }
  .steps-stack__item:first-of-type { border-top: 0; }
  .steps-stack__shot {
    border-radius: 18px;
    overflow: hidden;
  }
  .steps-stack__shot--screen {
    aspect-ratio: 9 / 19.2;
    background: var(--forest-deep);
  }
  .steps-stack__shot--screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .steps-stack__shot img { width: 100%; height: auto; }
}

/* ---- Feature bands ------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.feature--flip > .feature__visual { order: -1; }
.feature h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 13em; }
.feature p { max-width: 34em; }
.feature__visual { position: relative; display: flex; justify-content: center; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip > .feature__visual { order: 0; }
}

/* Self-framed designed phone export (frame baked into the PNG) */
.phone-img {
  width: min(300px, 74vw);
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(20, 24, 27, 0.32));
}

/* Band B offset composition: phone + overlapping collection card */
.cookbook-combo { position: relative; padding-bottom: 56px; }
.cookbook-combo .collection-card {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: min(220px, 58%);
  padding: 16px;
  z-index: 3;
}
.collection-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
}
.collection-card__cell { aspect-ratio: 1; background: var(--forest); opacity: 0.9; }
.collection-card__cell:nth-child(2) { background: var(--lime); }
.collection-card__cell:nth-child(3) { background: var(--pink-soft); }
.collection-card__cell:nth-child(4) { background: var(--cream); }
.collection-card__label { font-weight: 600; font-size: 0.95rem; color: var(--ink); padding-top: 10px; margin: 0; }
.collection-card__meta { font-size: 0.8rem; color: rgba(20, 24, 27, 0.68); margin: 0; }

/* Band C chat exchange */
.chat-mock { width: min(430px, 100%); display: grid; gap: 12px; }
.chat-bubble {
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 85%;
}
.chat-bubble--user {
  justify-self: end;
  background: var(--forest);
  color: var(--cream);
  border-bottom-right-radius: 6px;
}
.chat-bubble--ai {
  justify-self: start;
  background: var(--paper);
  color: var(--ink);
  border-bottom-left-radius: 6px;
  box-shadow: var(--shadow-card);
}
.chat-bubble--ai .chat-save { display: inline-block; margin-top: 8px; font-weight: 600; color: var(--forest); }

/* Band D offline (forest, type-forward) */
.offline { text-align: center; }
.offline h3 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-inline: auto; max-width: 12em; }
.offline p { max-width: 42em; margin-inline: auto; }
.offline__glyph { width: 88px; margin: 0 auto 24px; }

/* Band E regional diptych */
.regional-cards { display: grid; gap: 18px; width: min(460px, 100%); }
.regional-card { padding: 20px 24px; }
.regional-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--forest);
  margin-bottom: 10px;
}
.regional-card__line { font-size: 1.1rem; font-weight: 500; color: var(--ink); margin: 0; }
.regional-card__line strong { color: var(--forest); background: var(--lime); padding: 0 6px; border-radius: 6px; }

/* ---- Trust band ----------------------------------------------------------------------- */
.trust { text-align: center; }
.trust h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 14em; margin-inline: auto; }
.trust p { max-width: 40em; margin-inline: auto; }
.trust__watermark {
  position: absolute;
  right: -4%;
  bottom: -22%;
  width: clamp(280px, 34vw, 520px);
  opacity: 0.07;
  pointer-events: none;
}

/* ---- Pricing ----------------------------------------------------------------------------- */
/*  ⚠ SINGLE SWAP-ABLE BLOCK — PWYW experiment pending (rustleup#256).
    If pricing changes, this section + store copy move together in one PR. */
.pricing__card {
  padding: clamp(24px, 4vw, 44px);
  max-width: 780px;
  margin-inline: auto;
}
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 2px solid var(--rule);
  vertical-align: top;
}
.pricing-table th { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--forest); }
.pricing-table td:nth-child(n+2), .pricing-table th:nth-child(n+2) { text-align: center; }
.pricing-table tr:last-child th, .pricing-table tr:last-child td { border-bottom: 0; }
.pricing__price { text-align: center; margin-top: 18px; }
.pricing__price strong { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--forest); }
.pricing__reassure { text-align: center; font-size: 0.95rem; opacity: 0.8; margin: 8px 0 0; }
.pricing h2 { text-align: center; max-width: 16em; margin-inline: auto; }
@media (max-width: 560px) {
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 10px 6px; }
}

/* ---- FAQ ------------------------------------------------------------------------------------ */
.faq { max-width: 760px; margin-inline: auto; }
.faq h2 { max-width: 14em; }
.faq details { border-top: 2px solid var(--rule); }
.faq details:last-of-type { border-bottom: 2px solid var(--rule); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--forest);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 4px 20px; max-width: 60em; }
.faq summary:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 8px; }

/* ---- Final CTA ---------------------------------------------------------------------------------- */
.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.final-cta__visual { position: relative; min-height: 300px; }
.final-cta__visual .phone {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotateZ(5deg);
}
.final-cta .band-clip { margin-bottom: calc(var(--section-pad) * -1); }
@media (max-width: 820px) {
  .final-cta__grid { grid-template-columns: 1fr; }
  .final-cta__visual { display: none; }
}

/* ==========================================================================
   Sub-pages (editorial)
   ========================================================================== */
.page-hero { padding-block: clamp(56px, 8vh, 96px); }
.page-hero h1 { max-width: 16em; }
.page-hero .lead { max-width: 40em; }

.prose { max-width: 680px; }
.prose p { margin-bottom: 1.3em; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1.3em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--forest); }
.prose a { color: var(--forest); font-weight: 500; }
.prose blockquote { margin: 1.5em 0; padding-left: 1.2em; border-left: 4px solid var(--lime); font-style: italic; }

/* Support page */
.support-section { max-width: 760px; }
.support-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  margin-top: 2em;
}
.support-section h2 svg { flex-shrink: 0; width: 26px; height: 26px; }
.contact-form { max-width: 560px; display: grid; gap: 16px; }
.contact-form label { font-weight: 600; font-size: 0.95rem; color: var(--forest); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 2px solid var(--rule);
  border-radius: 14px;
  background: var(--paper);
  padding: 12px 16px;
  font: 500 1rem var(--font-body);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid var(--pink); outline-offset: 2px; }
.contact-form .field-error { color: #b3261e; font-size: 0.88rem; margin: 4px 0 0; }

/* Blog */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.post-card { overflow: hidden; text-decoration: none; display: block; transition: transform 180ms ease, box-shadow 180ms ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(20, 24, 27, 0.35); }
.post-card__cover { aspect-ratio: 16 / 9; overflow: hidden; background: var(--forest); }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px 22px 24px; }
.post-card__cat { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--purple); margin: 0 0 6px; }
.post-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; line-height: 1.15; color: var(--forest); margin: 0 0 8px; }
.post-card__excerpt { font-size: 0.93rem; color: rgba(20, 24, 27, 0.7); margin: 0; }
.post-hero-img { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); margin-block: 28px; }
.post-meta { font-size: 0.9rem; opacity: 0.7; }
.cta-band {
  border-radius: var(--radius-card);
  background: var(--forest);
  color: rgba(240, 238, 221, 0.88);
  --heading: var(--lime);
  --btn-bg: var(--lime);
  --btn-fg: var(--forest);
  --chip-bg: rgba(215, 255, 145, 0.12);
  --rule: rgba(240, 238, 221, 0.16);
  padding: clamp(28px, 4vw, 44px);
  margin-block: 2.5em;
}
.cta-band h2, .cta-band .capture-kicker { color: var(--lime); }

/* ---- Footer ------------------------------------------------------------------------------------------ */
.site-footer {
  background: var(--forest-deep);
  color: rgba(240, 238, 221, 0.8);
  --heading: var(--lime);
  padding-block: clamp(48px, 7vh, 80px) 32px;
  font-size: 0.95rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}
.site-footer__brand img { height: 28px; width: auto; margin-bottom: 14px; }
.site-footer__tagline { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--lime); max-width: 14em; }
.site-footer h4, .site-footer__label { font: 600 0.85rem var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(240, 238, 221, 0.55); margin: 0 0 14px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(240, 238, 221, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.site-footer__legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 238, 221, 0.14);
  font-size: 0.85rem;
  color: rgba(240, 238, 221, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ---- Utilities ------------------------------------------------------------------------------------------ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack-lg > * + * { margin-top: clamp(20px, 3vw, 32px); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  background: var(--lime);
  color: var(--forest);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus { top: 0; }

/* Motion hygiene: scroll/parallax effects only ever animate transform —
   nothing on the page waits at opacity:0 for an observer. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
