/* =====================================================================
   Forecite — single-page static build
   One stylesheet for the whole site. No build step: edit this file,
   save, re-upload the folder to Cloudflare.

   Ported 1:1 from the live React/Vite site primitives:
     - colors_and_type.css / global.css / hero.css (tokens, base, grids)
     - Atoms.jsx (Section, SectionHeading, Prose, Button, Eyebrow)
     - Home.jsx / AuditShowcase.jsx (section rhythm + signature motif)
     - PageHeader.jsx, Footer.jsx, TopBar.jsx

   Layout law (from the live site):
     - Full-bleed sections; 1px top rule between them; inner capped at
       --maxw-wide + --gutter-page.
     - Vertical padding: 88 standard / 72 stats-tight / 96 forest /
       100-120 final CTA.
     - Signature motif: content as grids of TOP-BORDERED COLUMNS — each
       column = 1px top rule + 24px padding-top, h3 20-24px/500,
       body 15-16px --fg-2.
     - Contrast: solid semantic tokens only. No low-opacity bone text.
     - Forest bands used sparingly: hero, one mid band, final CTA, footer.

   Structure:
     1. Design tokens (:root)            — colors, type scale, spacing
     2. Dark band remap (.tone-forest)
     3. Base elements + helpers
     4. Layout: container, section, grids
     5. Top bar + mobile drawer
     6. Buttons
     7. Hero (canvas terrain background, real forest band)
     8. Section-specific styles
     9. Footer
    10. Responsive
   ===================================================================== */

/* Production fonts. IBM Plex Mono = mono accent. Inter Tight = display sans. */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter+Tight:wght@400;500;600;700&display=swap");

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --forest-900: #0A1F16;
  --forest-800: #0E2A1F;
  --forest-700: #143524;
  --forest-600: #1B4332;
  --forest-500: #2D5A43;
  --forest-400: #3F6E55;

  --bone-100: #FBF8F1;
  --bone-200: #F4EFE6;
  --bone-300: #EAE3D2;
  --bone-400: #D8CFB8;

  --ink-900: #0B1A14;
  --ink-700: #1F2D26;

  --mute-500: #6B7A6F;
  --mute-400: #8A968D;
  --mute-600: #4C5B52;   /* secondary text on bone */

  --gold-500: #C9A961;   /* accent on forest */
  --gold-600: #B08F46;   /* accent on bone */
  --gold-700: #8F7233;   /* accent text on bone when legibility matters */

  --alert-500: #A8412A;

  /* Semantic tokens (light theme defaults) */
  --surface: var(--bone-100);
  --surface-raised: #FFFFFF;
  --surface-sunken: var(--bone-200);

  --fg-1: var(--ink-900);
  --fg-2: var(--mute-600);
  --fg-3: rgba(11, 26, 20, 0.55);

  --accent: var(--gold-600);
  --accent-press: var(--gold-700);
  --alert: var(--alert-500);

  --border-1: rgba(11, 26, 20, 0.16);
  --border-1-hover: rgba(11, 26, 20, 0.5);

  --btn-bg: var(--ink-900);
  --btn-fg: var(--bone-100);

  --grain-opacity: 0.08;

  /* Type families */
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Type scale */
  --fs-eyebrow: 12px;
  --fs-caption: 14px;
  --fs-body-sm: 15px;
  --fs-body: 17px;
  --fs-body-lg: 19px;

  --lh-body: 1.6;
  --tr-eyebrow: 0.12em;

  /* Spacing / layout — match the live tokens. Section inner caps at
     --maxw-wide (1440), the same primitive the live Section/Footer/
     PageHeader use. */
  --gutter-page: 48px;
  --maxw-content: 1240px;
  --maxw-wide: 1440px;
  --maxw-prose: 72ch;
  --topbar-h: 72px;

  /* Motion */
  --ease-editorial: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 160ms;
  --dur-ui: 320ms;
}

/* ---------------------------------------------------------------------
   2. Dark band remap — add .tone-forest to any <section> for a dark band.
   All semantic tokens remap, so components need no per-surface variants.
   --------------------------------------------------------------------- */
.tone-forest {
  --surface: var(--forest-800);
  --surface-raised: var(--forest-700);
  --surface-sunken: var(--forest-900);

  --fg-1: var(--bone-200);
  --fg-2: var(--mute-400);
  --fg-3: rgba(244, 239, 230, 0.55);

  --accent: var(--gold-500);
  --accent-press: var(--gold-600);

  --border-1: rgba(244, 239, 230, 0.18);
  --border-1-hover: rgba(244, 239, 230, 0.55);

  --btn-bg: var(--bone-200);
  --btn-fg: var(--ink-900);

  background: var(--surface);
  color: var(--fg-1);
}

/* ---------------------------------------------------------------------
   3. Base elements + helpers
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--topbar-h) + 12px); }

body {
  background: var(--surface);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); margin: 0; }
h1 { font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; text-wrap: balance; }
h3 { font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }

p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color var(--dur-fast) var(--ease-editorial);
}
a:hover { text-decoration-color: var(--accent); }

::selection { background: var(--gold-500); color: var(--ink-900); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tr-eyebrow);
  color: var(--fg-2);
}

.mono { font-family: var(--font-mono); letter-spacing: 0; }
.muted { color: var(--fg-2); }
.accent { color: var(--accent); }

/* Bracketed wordmark / label */
.bracketed {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0;
}
.bracketed b { color: var(--accent); font-weight: 500; }

/* Grain overlay — forest bands only */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../assets/grain.svg");
  background-size: 240px 240px;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  z-index: 1;
}

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

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink-900); color: var(--bone-100);
  padding: 10px 16px; font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }

/* ---------------------------------------------------------------------
   4. Layout: container, section, grids
   --------------------------------------------------------------------- */
.container {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding-left: var(--gutter-page);
  padding-right: var(--gutter-page);
}

/* Full-bleed section; inner caps width + owns padding (live Section). */
.section { position: relative; }
.section__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 88px var(--gutter-page);   /* standard rhythm */
}
.section--tight .section__inner { padding-top: 72px; padding-bottom: 72px; }
.section--rule { border-top: 1px solid var(--border-1); }

/* Section heading — the plain section name is the big heading; any
   supporting sentence is a smaller, quieter line beneath it. */
.section-head { margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 28ch;
}
.lead {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
  margin-top: 16px;
}
/* Pull the eye to the key phrase in a supporting line. */
.lead strong { color: var(--fg-1); font-weight: 600; }

/* Split sections — heading in one column, content in the other, so the
   right half of the page is used and the rhythm alternates L/R.
   .section--split      = heading left,  content right
   .section--split-right = heading right, content left */
.section--split .section__inner,
.section--split-right .section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.7fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
}
.section--split .section-head,
.section--split-right .section-head { margin-bottom: 0; }
/* split-right: content takes the WIDE left column, heading the narrow right. */
.section--split-right .section__inner { grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.82fr); }
.section--split-right .section-head { order: 2; }
.section--split-right .section-body { order: 1; }

.prose { font-size: var(--fs-body); line-height: 1.65; max-width: 62ch; }
.prose.muted { color: var(--fg-2); }
.prose + .prose { margin-top: 18px; }

.grid { display: grid; }
.split-1-1 { grid-template-columns: 1fr 1fr; gap: 64px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }

/* ---------------------------------------------------------------------
   5. Top bar + mobile drawer
   --------------------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter-page);
  background: rgba(251, 248, 241, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-1);
}
.topbar__mark {
  font-size: 22px;
  color: var(--fg-1);
  text-decoration: none;
}
.topbar__nav {
  display: flex;
  gap: 28px;
  margin-left: 64px;
  flex: 1;
}
.topbar__nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 200ms var(--ease-editorial);
}
.topbar__nav a:hover { color: var(--fg-1); }
.topbar__cta { margin-left: auto; white-space: nowrap; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-1);
  border-radius: 2px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-1);
  cursor: pointer;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bone-100);
  flex-direction: column;
  padding: 0 var(--gutter-page);
  display: none;
}
.drawer.open { display: flex; }
.drawer__top {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-1);
}
.drawer__top .topbar__mark { font-size: 22px; }
.drawer__close {
  background: transparent;
  border: 1px solid var(--border-1);
  border-radius: 2px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-1);
  cursor: pointer;
}
.drawer__nav { display: flex; flex-direction: column; gap: 8px; padding-top: 32px; flex: 1; }
.drawer__nav a {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__nav a span { font-family: var(--font-mono); font-size: 14px; color: var(--fg-3); }
.drawer__cta { margin-top: auto; padding-bottom: 40px; }

/* Scroll lock while drawer open */
html.drawer-open, html.drawer-open body { overflow: hidden; height: 100%; }

/* ---------------------------------------------------------------------
   6. Buttons (live Button atom — written against semantic tokens so they
   adapt to light sections and forest bands without per-surface variants).
   --------------------------------------------------------------------- */
.btn {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 200ms var(--ease-editorial),
              border-color 200ms var(--ease-editorial),
              color 200ms var(--ease-editorial),
              transform 120ms var(--ease-editorial);
  white-space: nowrap;
}
.btn .arrow { font-family: var(--font-mono); }
.btn--primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn--primary:active { transform: translateY(1px); }
.btn--secondary {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-1-hover);
}
.btn--secondary:hover { border-color: var(--fg-1); }
/* Ghost = bracket label [ … ], the live secondary CTA. No outline box. */
.btn--ghost {
  background: transparent;
  color: var(--fg-1);
  padding: 14px 0;
}
.btn--ghost .gb { color: var(--fg-3); font-family: var(--font-mono); transition: color 200ms; }
.btn--ghost:hover .gb { color: var(--accent); }
.topbar__cta.btn { padding: 12px 18px; font-size: 14px; }

/* ---------------------------------------------------------------------
   7. Hero — animated terrain canvas behind a real forest band.
   The hero carries .tone-forest, so fg/accent/btn tokens flip to the dark
   palette and the copy uses SOLID semantic tokens (not hand-set bone
   opacities). The canvas + scrim sit behind the token-driven text.
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest-900);   /* shows for the frame before canvas paints */
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* Left-side scrim keeps the copy readable over the terrain. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(10, 31, 22, 0.97) 0%,
      rgba(10, 31, 22, 0.92) 34%,
      rgba(10, 31, 22, 0.42) 58%,
      rgba(10, 31, 22, 0.08) 100%),
    radial-gradient(circle at 12% 42%, rgba(10, 31, 22, 0.8), transparent 38%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 116px) var(--gutter-page) clamp(72px, 8vw, 104px);
  min-height: clamp(560px, 82vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}
.hero__copy { max-width: 680px; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin: 0 0 22px;
}
.hero__title {
  font-size: clamp(40px, 4.8vw, 70px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  max-width: 18ch;
  margin: 0;
}
.hero__sub {
  max-width: 52ch;
  margin: 28px 0 0;
  color: var(--fg-1);
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; align-items: center; }

/* ---------------------------------------------------------------------
   8. Section-specific
   --------------------------------------------------------------------- */

/* The shift — stats as quiet top-bordered columns (live Home stats):
   mono 30px numbers in --fg-1, 15px --fg-2 body, 11px mono source links. */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.stat { padding: 0; }
/* Number rendered as a sleek pill chip. */
.stat__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  background: var(--surface-sunken);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  padding: 9px 20px;
}
.stat__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-3);
  margin-top: 12px;
}
.stat__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-top: 14px;
  max-width: 40ch;
}
.stat__source {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--border-1);
}
.stat__source:hover { color: var(--accent-press); border-bottom-color: var(--accent-press); }
.shift-close { margin-top: 44px; font-size: var(--fs-body-lg); line-height: 1.6; max-width: 70ch; }

/* Who this is for — top-bordered columns (the signature motif), with a
   colored mono tag instead of full-border cards. */
.match-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.match-card { border-top: 1px solid var(--border-1); padding-top: 24px; }
.match-card__tag {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.match-card--yes .match-card__tag { color: var(--accent-press); }
.match-card--no .match-card__tag { color: var(--alert); }
.match-card p { font-size: 16px; line-height: 1.6; color: var(--fg-2); max-width: 44ch; }

/* What we do — top-bordered service blocks */
.do-block { padding: 36px 0 0; border-top: 1px solid var(--border-1); margin-top: 36px; }
.do-block:first-of-type { margin-top: 8px; }
.do-block__kicker {
  font-family: var(--font-sans);
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin-bottom: 14px;
}
.do-block h3 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: 14px; max-width: 24ch; }
.do-block p { font-size: 16px; line-height: 1.65; color: var(--fg-2); max-width: 70ch; }
.do-block__egnote { font-style: italic; color: var(--fg-3); margin: 18px 0 12px; font-size: 15px; }
.do-list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 10px; max-width: 70ch; }
.do-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
}
.do-list li::before {
  content: "[";
  position: absolute;
  left: 0;
  color: var(--accent-press);
  font-family: var(--font-mono);
}
.do-block__foot { font-size: 16px; line-height: 1.6; color: var(--fg-1); max-width: 70ch; margin-top: 4px; }

/* How it works — numbered top-bordered rows (live fix-plan pattern) */
.steps { display: grid; gap: 0; max-width: 80ch; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--border-1);
}
.step:last-child { border-bottom: 1px solid var(--border-1); }
.step__num { font-family: var(--font-mono); font-size: 15px; color: var(--accent-press); padding-top: 3px; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 16px; line-height: 1.6; color: var(--fg-2); max-width: 64ch; }

/* Pricing — one sleek rounded card, two price points split by a divider,
   context line below. Soft fill + rounded corners (no janky hard outline). */
/* Pricing block is centered on the page. */
#pricing .section-head { text-align: center; }
#pricing .section-head h2 { margin-left: auto; margin-right: auto; }
.pricing-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.price-cell {
  padding: 32px clamp(26px, 3vw, 36px);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  background: var(--surface-raised);
  box-shadow: 0 2px 4px rgba(11, 26, 20, 0.04), 0 10px 30px rgba(11, 26, 20, 0.06);
}
.price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-2);
  margin-bottom: 16px;
}
.price-num {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg-1);
}
.price-num .from {
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-2);
  margin-right: 7px;
  vertical-align: 0.12em;
}
.price-num .per {
  font-family: var(--font-mono);
  font-size: 0.4em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-2);
  margin-left: 4px;
}
.price-term { font-size: 14px; color: var(--fg-2); line-height: 1.5; margin-top: 12px; }
/* Pricing rationale — left-aligned block centered under the card, with
   on-brand bracket bullets and a checkpoint callout. */
.price-why { max-width: 600px; margin: 36px auto 0; }
.price-why__lead { font-size: 16px; color: var(--fg-2); line-height: 1.6; margin-bottom: 26px; }
.price-why__lead strong { color: var(--fg-1); font-weight: 600; }
.price-why__label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-press);
  margin-bottom: 16px;
}
.price-why__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 13px; }
.price-why__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
}
.price-why__list li::before {
  content: "[";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-press);
  font-family: var(--font-mono);
  font-weight: 500;
}
.price-why__foot {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  border-top: 1px solid var(--border-1);
  padding-top: 18px;
}

/* What makes us different (forest mid band) */
.different .section__inner { padding-top: 96px; padding-bottom: 96px; }
.different p { font-size: 18px; line-height: 1.65; max-width: 70ch; color: var(--fg-1); }
.different p + p { margin-top: 22px; }
.avoid-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 14px; max-width: 70ch; }
.avoid-list li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-1);
}
.avoid-list li::before {
  content: "\2715"; /* ✕ */
  position: absolute; left: 0; top: 1px;
  color: var(--alert-500);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.different .kicker-line { margin-top: 26px; font-size: 18px; line-height: 1.6; max-width: 70ch; color: var(--fg-1); }

/* About — photo + name as a left sidebar, narrative on the right (desktop);
   stacks on mobile. Source photo is landscape, so object-fit:cover crops
   to the face instead of stretching. */
.about-grid { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.about__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 32% 14%;
  border: 1px solid var(--border-1);
  display: block;
}
.about__name { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 18px 0 0; }
.about__role { font-family: var(--font-mono); font-size: 12px; color: var(--accent-press); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.about__sig { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-2); margin-bottom: 20px; }
.about__body p { font-size: 17px; line-height: 1.7; color: var(--fg-1); max-width: 68ch; }
.about__body p + p { margin-top: 20px; }

/* FAQ */
.faq-group { margin-top: 40px; }
.faq-group__title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-press);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-1);
  margin-bottom: 0;
}
details.faq {
  border-bottom: 1px solid var(--border-1);
}
details.faq > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--fg-1);
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary .plus {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent-press);
  transition: transform 200ms var(--ease-editorial);
  flex: none;
}
details.faq[open] > summary .plus { transform: rotate(45deg); }
.faq__a { padding: 0 0 26px; max-width: 74ch; }
.faq__a p { font-size: 16px; line-height: 1.65; color: var(--fg-2); }
.faq__a p + p { margin-top: 14px; }
.faq__a ul { margin: 12px 0; padding-left: 22px; }
.faq__a li { font-size: 16px; line-height: 1.5; color: var(--fg-2); margin-bottom: 6px; }

/* Contact / closing CTA — light section. Big, obvious, rounded fields. */
.contact .section__inner { padding-top: 96px; padding-bottom: 110px; }
.contact h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  max-width: 16ch;
  margin-bottom: 20px;
}
.contact__lead { font-size: var(--fs-body-lg); line-height: 1.55; color: var(--fg-2); max-width: 46ch; margin-bottom: 24px; }
.contact__email { font-size: 15px; color: var(--fg-2); line-height: 1.6; }
.contact__email a { color: var(--accent-press); text-decoration: none; border-bottom: 1px solid var(--accent-press); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 9px; }
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.field input, .field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-1);
  background: var(--surface-raised);
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 15px 16px;
  transition: border-color 200ms var(--ease-editorial), box-shadow 200ms var(--ease-editorial);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-press);
  box-shadow: 0 0 0 3px rgba(176, 143, 70, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form__submit { margin-top: 10px; justify-self: start; }
.form-status { font-family: var(--font-mono); font-size: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--accent-press); }
.form-status.err { color: var(--alert-500); }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Example Audit page ---------- */
.audit-header { border-bottom: 1px solid var(--border-1); }
.audit-header .section__inner { padding-top: 64px; padding-bottom: 52px; }
.audit-header .eyebrow { margin-bottom: 20px; }
.audit-header h1 { font-size: clamp(32px, 4vw, 52px); max-width: 22ch; margin: 0; }
.audit-header .lead { margin-top: 22px; max-width: 56ch; }
.example-switch { display: inline-flex; gap: 4px; margin-top: 26px; padding: 4px; border: 1px solid var(--border-1); border-radius: 999px; background: var(--surface-raised); font-family: var(--font-mono); }
.example-switch a { padding: 9px 18px; border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-2); text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.example-switch a:hover { color: var(--fg-1); }
.example-switch a.is-active { background: var(--accent); color: var(--ink-900); }
.audit-disclaimer {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--alert-500);
  margin-bottom: 0;
}
.audit-score {
  font-family: var(--font-mono);
  font-size: clamp(84px, 11vw, 142px);
  font-weight: 500;
  color: var(--alert-500);
  line-height: 1;
}
.audit-score__label {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 12px;
}
.scorebar { margin-bottom: 22px; }
.scorebar__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  gap: 16px;
}
.scorebar__track { height: 4px; background: var(--bone-300); border-radius: 2px; overflow: hidden; }
.scorebar__fill { height: 100%; border-radius: 2px; }
.scorebar__note { font-size: 13px; color: var(--fg-3); line-height: 1.5; margin: 8px 0 0; }
.is-good { color: var(--accent-press); }
.is-good-bg { background: var(--accent-press); }
.is-bad { color: var(--alert-500); }
.is-bad-bg { background: var(--alert-500); }

.finding {
  border-top: 1px solid var(--border-1);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
}
.finding__idx { font-family: var(--font-mono); font-size: 12px; color: var(--accent-press); }
.finding__tag { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); margin-top: 10px; }
.finding h3 { font-size: 24px; margin: 0 0 14px; }
.finding__body { font-size: 16px; color: var(--fg-2); line-height: 1.65; max-width: 66ch; margin: 0; }
.finding__why {
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.6;
  max-width: 62ch;
  margin: 16px 0 0;
  border-left: 2px solid var(--accent-press);
  padding-left: 16px;
}
.fixstep {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border-1);
}
.fixstep__n { font-family: var(--font-mono); color: var(--accent); font-size: 14px; padding-top: 2px; }
.fixstep h3 { font-size: 20px; margin: 0 0 8px; }
.fixstep p { font-size: 15px; color: var(--fg-2); line-height: 1.6; margin: 0; }
.versus-item { border-top: 1px solid var(--border-1); padding: 18px 0; }
.versus-item .eyebrow { color: var(--accent-press); margin-bottom: 8px; display: block; }
.versus-item p { font-size: 16px; color: var(--fg-2); line-height: 1.6; margin: 0; }

/* ---------------------------------------------------------------------
   9. Footer (live Footer.jsx)
   --------------------------------------------------------------------- */
.footer {
  position: relative;
  padding: 96px var(--gutter-page) 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  background: var(--forest-900);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer__brand { font-size: 18px; color: var(--fg-1); margin-bottom: 18px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.footer__nav a { color: var(--fg-2); text-decoration: none; }
.footer__nav a .dot { color: var(--accent); margin-right: 8px; }
.footer__tag { line-height: 1.7; max-width: 38ch; }
.footer__email { margin-top: 28px; font-size: 11px; color: var(--fg-2); }
.footer__email a { color: inherit; text-decoration: none; }
.footer__col h4 {
  color: var(--bone-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 500;
}
.footer__col a, .footer__col div.item { color: var(--fg-2); text-decoration: none; display: block; margin-bottom: 6px; }
.footer__col a .dot { color: var(--accent); margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border-1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--maxw-wide);
  margin: 64px auto 0;
  position: relative;
  z-index: 2;
}
.footer-bottom .sup { color: var(--accent); }

/* ---------------------------------------------------------------------
   10. Responsive
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar__nav, .topbar__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .split-1-1, .cols-3, .contact-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 28px; }
  .footer-grid { gap: 36px; }
  .about__photo { width: 200px; }
  .match-grid { grid-template-columns: 1fr; }
  .section--split .section__inner,
  .section--split-right .section__inner { grid-template-columns: 1fr; gap: 28px; }
  .section--split .section-head,
  .section--split-right .section-head { margin-bottom: 4px; }
  .section--split-right .section-head { order: 0; }
  .section--split-right .section-body { order: 0; }
}

@media (max-width: 768px) {
  :root { --gutter-page: 20px; }
  .section__inner { padding-top: 64px; padding-bottom: 64px; }
  .different .section__inner { padding-top: 72px; padding-bottom: 72px; }
  .contact .section__inner { padding-top: 72px; padding-bottom: 88px; }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(10, 31, 22, 0.25) 0%,
      rgba(10, 31, 22, 0.55) 42%,
      rgba(10, 31, 22, 0.95) 80%,
      rgba(10, 31, 22, 0.97) 100%);
  }
  .hero__inner { align-items: end; min-height: 86vh; padding-top: 22vh; }
  .hero__title { font-size: clamp(34px, 9vw, 48px); max-width: 14ch; }
  .cols-2, .cols-4 { grid-template-columns: 1fr; }
  .pricing-strip { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .finding { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .about__photo { width: 160px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  details.faq > summary .plus { transition: none; }
}
