/* InjectConsent design system
   Editorial medical luxury: bone white, warm taupe, deep bronze anchor.
   Bodoni Moda display over Inter Tight. Thin rules, precise clinical grid.
   Light mode only. */

:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --ink: #1C1A18;
  --primary: #7A5230;
  --accent: #CFC0AE;
  --muted: #6B655D;

  --primary-deep: #5E3F25;
  --primary-tint-08: #F4EFEA;
  --primary-tint-14: #EDE5DD;
  --primary-tint-22: #E3D6C9;
  --accent-pale: #F2ECE4;
  --accent-line: #E0D6C9;
  --rule: #DCD4C9;
  --rule-strong: #C4B8A8;
  --ink-soft: #3A3630;

  --font-display: "Bodoni Moda", "Didot", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --r-sm: 2px; --r-md: 4px; --r-lg: 8px; --r-pill: 999px;

  --shadow-fine: 0 1px 2px rgba(28, 26, 24, 0.06);
  --shadow-lift: 0 18px 44px rgba(94, 63, 37, 0.10);

  --t-xs: 0.75rem; --t-sm: 0.875rem; --t-base: 1rem; --t-md: 1.125rem;
  --t-lg: 1.375rem; --t-xl: 1.75rem; --t-2xl: 2.25rem; --t-3xl: 3rem; --t-4xl: 4.25rem;

  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(to right, rgba(207, 192, 174, 0.28) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(207, 192, 174, 0.14) 1px, transparent 1px);
  background-size: 100% 100%, 100% 96px;
  background-repeat: no-repeat, repeat-y;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: "cv05", "ss01";
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-4);
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6.2vw, var(--t-4xl)); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, var(--t-3xl)); }
h3 { font-size: var(--t-lg); }
p { margin: 0 0 var(--s-4); }

a { color: var(--primary); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--primary-deep); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.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 {
  position: absolute; left: var(--s-4); top: -100px; z-index: 999;
  background-color: var(--primary); color: #FFFFFF; padding: 12px 20px;
  border-radius: var(--r-md); font-weight: 600; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--s-4); color: #FFFFFF; }

/* ---------- eyebrow, rules, numerals ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 var(--s-4);
  display: flex; align-items: center; gap: var(--s-3);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background-color: var(--rule-strong); flex: none;
}
.hair { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.lede { font-size: var(--t-md); color: var(--ink-soft); max-width: 62ch; }
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section-head { max-width: 74ch; margin-bottom: var(--s-8); }
.numeral {
  font-family: var(--font-display); font-size: var(--t-2xl); line-height: 1;
  color: var(--primary); font-weight: 400;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--r-md); font-weight: 600;
  font-size: var(--t-sm); letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn-primary { background-color: var(--primary); color: #FFFFFF; }
.btn-primary:hover { background-color: var(--primary-deep); color: #FFFFFF; transform: translateY(-1px); }
.btn-ghost { background-color: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background-color: var(--primary-tint-08); }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background-color: rgba(250, 248, 245, 0.94);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-fine); background-color: rgba(255, 255, 255, 0.97); }
.header-inner { display: flex; align-items: center; gap: var(--s-5); min-height: 74px; }
.wordmark {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--ink); font-family: var(--font-display); font-size: 1.3rem;
  letter-spacing: 0.01em; font-weight: 500; flex: none;
}
.wordmark svg { flex: none; }
.wordmark b { font-weight: 500; color: var(--primary); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: var(--s-6); list-style: none; margin: 0; padding: 0; }
.main-nav a {
  color: var(--ink-soft); text-decoration: none; font-size: var(--t-sm);
  font-weight: 500; letter-spacing: 0.02em; padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.header-cta { flex: none; }
.nav-toggle {
  display: none; background-color: transparent; border: 1px solid var(--rule-strong);
  border-radius: var(--r-md); padding: 9px 11px; margin-left: auto; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 1px; background-color: var(--ink); margin: 5px 0; }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background-color: var(--rule);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-sub { font-size: 1.16rem; color: var(--ink-soft); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin: var(--s-6) 0 var(--s-7); }
.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.trust-strip li { list-style: none; padding: var(--s-4) var(--s-4) var(--s-4) 0; }
.trust-strip li + li { border-left: 1px solid var(--rule); padding-left: var(--s-4); }
.trust-strip strong {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 500; color: var(--primary);
}
.trust-strip span { font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 3 / 2.05; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lift);
}
.hero-figure figcaption {
  margin-top: var(--s-3); font-size: var(--t-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.face-map {
  position: absolute; right: -14px; bottom: 48px; width: 148px;
  background-color: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: 10px; box-shadow: var(--shadow-lift);
}
.face-map svg { width: 100%; height: auto; display: block; }
.face-map .pt { opacity: 0; animation: pointIn 0.5s var(--ease) forwards; }
.face-map .pt:nth-of-type(1) { animation-delay: 0.5s; }
.face-map .pt:nth-of-type(2) { animation-delay: 0.8s; }
.face-map .pt:nth-of-type(3) { animation-delay: 1.1s; }
.face-map .pt:nth-of-type(4) { animation-delay: 1.4s; }
.face-map .pt:nth-of-type(5) { animation-delay: 1.7s; }
.face-map .pt:nth-of-type(6) { animation-delay: 2.0s; }
.face-map .pt:nth-of-type(7) { animation-delay: 2.3s; }
@keyframes pointIn { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: scale(1); } }
.face-map figcaption {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; text-align: center;
}

/* ---------- generic cards ---------- */
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background-color: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: var(--s-6);
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.card:hover { border-color: var(--rule-strong); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--muted); font-size: var(--t-sm); margin-bottom: 0; }

.cost {
  display: inline-block; margin-top: var(--s-4); font-family: var(--font-display);
  font-size: var(--t-md); color: var(--primary); border-top: 1px solid var(--accent-line);
  padding-top: var(--s-3); width: 100%;
}

/* ---------- problem band ---------- */
.band-tint { background-color: var(--primary-tint-08); border-block: 1px solid var(--rule); }
.band-pale { background-color: var(--accent-pale); border-block: 1px solid var(--rule); }
.band-white { background-color: var(--surface); border-block: 1px solid var(--rule); }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  display: grid; grid-template-columns: 62px 1fr; gap: var(--s-4);
  padding: var(--s-5) 0; border-top: 1px solid var(--rule);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--accent);
}
.steps h3 { margin-bottom: 6px; font-size: 1.2rem; }
.steps p { color: var(--muted); font-size: var(--t-sm); margin: 0; }
.steps-figure img { width: 100%; aspect-ratio: 3 / 3.4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lift); }
.steps-figure figcaption { margin-top: var(--s-3); font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- features ---------- */
.feature { display: block; }
.feature .ic {
  width: 44px; height: 44px; border: 1px solid var(--accent-line);
  border-radius: 50%; display: grid; place-items: center; margin-bottom: var(--s-4);
  background-color: var(--primary-tint-08);
}
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.15rem; }

/* ---------- outcomes ---------- */
.outcome { border-top: 2px solid var(--primary); padding-top: var(--s-4); }
.outcome .big {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1; color: var(--ink); display: block; margin-bottom: var(--s-3);
}
.outcome h3 { font-family: var(--font-body); font-size: var(--t-sm); text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--primary); font-weight: 600; }
.outcome p { color: var(--muted); font-size: var(--t-sm); margin: 0; }

/* ---------- testimonials ---------- */
.testimonial {
  background-color: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: var(--s-6); margin: 0;
  display: flex; flex-direction: column; position: relative;
}
.testimonial::before {
  content: ""; position: absolute; top: 0; left: var(--s-6); right: var(--s-6);
  height: 2px; background-color: var(--accent);
}
.testimonial p { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.5; color: var(--ink); }
.testimonial footer { margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--rule); font-size: var(--t-sm); }
.testimonial cite { font-style: normal; font-weight: 600; display: block; color: var(--ink); }
.testimonial .who { color: var(--muted); font-size: var(--t-xs); }
.results-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: var(--s-7); border: 1px solid var(--rule); background-color: var(--surface); }
.results-strip div { padding: var(--s-6); text-align: center; }
.results-strip div + div { border-left: 1px solid var(--rule); }
.results-strip b { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--primary); font-weight: 400; line-height: 1; }
.results-strip span { font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); align-items: start; }
.tier {
  background-color: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: var(--s-6); display: flex; flex-direction: column;
}
.tier.is-featured { border-color: var(--primary); box-shadow: var(--shadow-lift); }
.tier .flag {
  display: inline-block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: #FFFFFF; background-color: var(--primary);
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: var(--s-4);
}
.tier h3 { font-family: var(--font-body); font-size: var(--t-sm); text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted); font-weight: 600; margin-bottom: var(--s-2); }
.tier .price { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--ink); }
.tier .per { font-size: var(--t-sm); color: var(--muted); display: block; margin: var(--s-2) 0 var(--s-5); }
.tier ul { list-style: none; margin: 0 0 var(--s-6); padding: 0; }
.tier li { font-size: var(--t-sm); padding: 9px 0 9px 24px; position: relative; border-top: 1px solid var(--rule); color: var(--ink-soft); }
.tier li::before {
  content: ""; position: absolute; left: 2px; top: 17px; width: 9px; height: 9px;
  border: 1px solid var(--primary); border-radius: 50%;
}
.tier .btn { margin-top: auto; }
.billing-note { text-align: center; margin-top: var(--s-6); font-size: var(--t-sm); color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--rule); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; text-align: left; background-color: transparent; border: 0;
  padding: var(--s-5) 40px var(--s-5) 0; font-family: var(--font-display);
  font-size: 1.24rem; color: var(--ink); cursor: pointer; position: relative;
}
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 1px solid var(--primary); border-bottom: 1px solid var(--primary);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }
.faq-a { padding: 0 60px var(--s-5) 0; color: var(--muted); font-size: var(--t-sm); }
.faq-a p { margin: 0; }
.faq-a[hidden] { display: none; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.form-card { background-color: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md); padding: clamp(24px, 4vw, 44px); }
.field { margin-bottom: var(--s-5); }
.field label { display: block; font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: var(--t-base);
  color: var(--ink); background-color: var(--bg); border: 1px solid var(--rule-strong);
  border-radius: var(--r-md);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(122, 82, 48, 0.16); }
.field [aria-invalid="true"] { border-color: #A32E1F; }
.err { display: block; color: #A32E1F; font-size: var(--t-xs); margin-top: 6px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: var(--s-5); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: #7A5230; }
.consent label { font-size: var(--t-sm); color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-foot { margin-top: var(--s-4); font-size: var(--t-sm); color: var(--muted); }
.contact-points { list-style: none; margin: var(--s-6) 0 0; padding: 0; }
.contact-points li { padding: var(--s-4) 0; border-top: 1px solid var(--rule); font-size: var(--t-sm); color: var(--muted); }
.contact-points b { color: var(--ink); display: block; font-family: var(--font-display); font-size: 1.1rem; }

/* ---------- byline ---------- */
.byline {
  display: flex; gap: var(--s-4); align-items: center; padding: var(--s-5) 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-size: var(--t-sm); color: var(--muted); margin-top: var(--s-8);
}

/* ---------- footer ---------- */
.site-footer { background-color: var(--primary-tint-08); border-top: 1px solid var(--rule-strong); padding: var(--s-9) 0 var(--s-5); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-7); }
.footer-col h4 { font-family: var(--font-body); font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); margin-bottom: var(--s-4); font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: var(--t-sm); }
.footer-col a:hover { color: var(--primary); text-decoration: underline; }
.footer-col p { font-size: var(--t-sm); color: var(--muted); max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: var(--s-4); }
.socials a {
  width: 36px; height: 36px; border: 1px solid var(--rule-strong); border-radius: 50%;
  display: grid; place-items: center; color: var(--primary); background-color: var(--surface);
}
.socials a:hover { border-color: var(--primary); background-color: var(--primary-tint-14); }
.socials svg { width: 17px; height: 17px; }
.footer-base {
  margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid var(--rule-strong);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-size: var(--t-xs); color: var(--muted); letter-spacing: 0.04em;
}

/* ---------- legal / long form pages ---------- */
.prose { max-width: 78ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: var(--s-8); }
.prose h3 { margin-top: var(--s-6); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.page-head { padding: clamp(44px, 6vw, 84px) 0 var(--s-6); border-bottom: 1px solid var(--rule); }
.crumbs { font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-4); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--primary); }
.fact-table { width: 100%; border-collapse: collapse; margin: var(--s-5) 0; }
.fact-table th, .fact-table td { text-align: left; padding: 11px 14px; border: 1px solid var(--rule); font-size: var(--t-sm); }
.fact-table th { background-color: var(--primary-tint-08); width: 34%; font-weight: 600; }

.author-grid { display: grid; grid-template-columns: 300px 1fr; gap: var(--s-7); align-items: start; }
.author-portrait img { border-radius: var(--r-lg); border: 1px solid var(--rule); box-shadow: var(--shadow-lift); }
.author-links { list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.author-links li { margin-bottom: 8px; font-size: var(--t-sm); }

.map-group { border-top: 1px solid var(--rule); padding-top: var(--s-5); margin-bottom: var(--s-6); }
.map-group ul { list-style: none; padding: 0; margin: 0; }
.map-group li { padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: var(--t-sm); }
.map-group li a { font-weight: 600; }
.map-group li span { color: var(--muted); display: block; }

.center-note { text-align: center; max-width: 62ch; margin-inline: auto; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .steps-grid, .contact-grid { grid-template-columns: 1fr; }
  .face-map { right: 12px; bottom: 12px; }
  .grid-3, .grid-4, .tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .author-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background-color: var(--surface); border-bottom: 1px solid var(--rule); padding: var(--s-5) 20px;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: var(--s-4); }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .grid-2, .tiers, .results-strip, .trust-strip, .field-2 { grid-template-columns: 1fr; }
  .trust-strip li + li { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; }
  .results-strip div + div { border-left: 0; border-top: 1px solid var(--rule); }
  .footer-cols { grid-template-columns: 1fr; }
  .face-map { display: none; }
  .steps li { grid-template-columns: 46px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .face-map .pt { opacity: 1; }
}

/* ================================================================
   The Injection Room: magazine index, article page, Read also.
   Same tokens, same typefaces, same thin rule grammar. Light only.
   ================================================================ */

/* ---------- magazine index head ---------- */
.mag-index-head { background-color: var(--surface); }
.mag-index-head h1 { max-width: 16ch; }
.mag-index-standfirst { font-size: 1.14rem; max-width: 60ch; margin-top: var(--s-5); }
.mag-index-note {
  font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: var(--s-5) 0 0; padding-top: var(--s-4);
  border-top: 1px solid var(--rule); max-width: 62ch;
}

/* ---------- index grid ---------- */
.mag-index { background-color: var(--bg); }
.mag-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7) var(--s-5);
}
.mag-card {
  grid-column: span 1; display: flex; flex-direction: column;
  background-color: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.mag-card:hover { border-color: var(--rule-strong); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.mag-card-media { display: block; background-color: var(--accent-pale); }
.mag-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.mag-card-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.mag-kicker {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--primary); margin: 0 0 var(--s-3);
}
.mag-card-title { font-size: 1.24rem; line-height: 1.16; margin: 0 0 var(--s-3); }
.mag-card-title a { color: var(--ink); text-decoration: none; }
.mag-card-title a:hover { color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); }
.mag-card-dek { font-size: var(--t-sm); color: var(--muted); margin: 0 0 var(--s-5); }
.mag-card-meta {
  margin: auto 0 0; padding-top: var(--s-4); border-top: 1px solid var(--rule);
  font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: var(--s-3);
}
.mag-dot { width: 4px; height: 4px; border-radius: 50%; background-color: var(--accent); display: inline-block; }

/* the lead article runs full width with the image beside the text */
.mag-card.lead {
  grid-column: 1 / -1; flex-direction: row; align-items: stretch;
  border-color: var(--rule-strong);
}
.mag-card.lead .mag-card-media { flex: 0 0 54%; }
.mag-card.lead .mag-card-media img { height: 100%; aspect-ratio: 3 / 2; }
.mag-card.lead .mag-card-body { padding: clamp(24px, 3.4vw, 48px); justify-content: center; }
.mag-card.lead .mag-card-title { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.mag-card.lead .mag-card-dek { font-size: var(--t-md); color: var(--ink-soft); max-width: 46ch; }
.mag-index-foot { margin-top: var(--s-8); text-align: center; }

/* ---------- article page ---------- */
.mag-crumbs { padding-top: var(--s-6); margin-bottom: 0; }
.mag-head { padding: var(--s-5) 0 var(--s-6); }
.mag-head-inner { max-width: 74ch; }
.mag-head h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.08; margin-bottom: var(--s-5); }
.mag-standfirst {
  font-family: var(--font-display); font-style: italic; font-size: 1.22rem;
  line-height: 1.5; color: var(--ink-soft); max-width: 64ch;
}
.mag-byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-5);
  margin-top: var(--s-6); padding: var(--s-4) 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.mag-by { font-weight: 600; color: var(--ink-soft); }
.mag-by a { color: var(--primary); text-decoration: none; }
.mag-by a:hover { text-decoration: underline; }

.mag-figure { margin: var(--s-6) 0 var(--s-8); }
.mag-figure img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lift);
}
.mag-figure figcaption {
  margin-top: var(--s-3); font-size: var(--t-xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); max-width: 70ch;
}

/* ---------- article body typography ---------- */
.mag-body { max-width: 68ch; font-size: 1.08rem; line-height: 1.72; color: var(--ink-soft); }
.mag-body > h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem); line-height: 1.14; color: var(--ink);
  margin: var(--s-8) 0 var(--s-4); padding-top: var(--s-5); border-top: 1px solid var(--rule);
}
.mag-body > h3 { font-size: 1.28rem; color: var(--ink); margin: var(--s-6) 0 var(--s-3); }
.mag-body p { margin: 0 0 var(--s-5); }
.mag-body ul, .mag-body ol { margin: 0 0 var(--s-5); padding-left: 22px; }
.mag-body li { margin-bottom: 10px; }
.mag-body strong { color: var(--ink); font-weight: 600; }
.mag-body a { color: var(--primary); }
.mag-body blockquote {
  margin: var(--s-6) 0; padding: var(--s-5) var(--s-6);
  background-color: var(--primary-tint-08); border-left: 2px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-size: 1.16rem; font-style: italic; color: var(--ink);
}
.mag-body blockquote p:last-child { margin-bottom: 0; }
.mag-body table { width: 100%; border-collapse: collapse; margin: var(--s-6) 0; font-size: var(--t-sm); }
.mag-body th, .mag-body td { text-align: left; padding: 11px 14px; border: 1px solid var(--rule); }
.mag-body th { background-color: var(--primary-tint-08); font-weight: 600; color: var(--ink); }
.mag-body .inline-read {
  margin: var(--s-6) 0; padding: var(--s-4) var(--s-5);
  background-color: var(--accent-pale); border-left: 2px solid var(--accent);
  font-size: var(--t-sm); letter-spacing: 0.01em; color: var(--muted);
}
.mag-body .inline-read a { font-weight: 600; color: var(--primary); }

/* ---------- call to action ---------- */
.mag-cta {
  max-width: 68ch; margin: var(--s-8) 0 0; padding: clamp(24px, 3.4vw, 44px);
  background-color: var(--primary-tint-08); border: 1px solid var(--accent-line);
  border-radius: var(--r-md); border-top: 2px solid var(--primary);
}
.mag-cta h2 { font-size: clamp(1.45rem, 2.6vw, 1.95rem); margin-bottom: var(--s-4); }
.mag-cta p { color: var(--ink-soft); font-size: var(--t-base); margin-bottom: var(--s-5); }
.mag-cta .btn { margin-top: var(--s-2); }

/* ---------- author box ---------- */
.mag-author {
  max-width: 68ch; margin: var(--s-7) 0 0; padding-top: var(--s-6);
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 120px 1fr; gap: var(--s-6); align-items: start;
}
.mag-author img {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--rule-strong); background-color: var(--accent-pale);
}
.mag-author h2 { font-size: 1.5rem; margin-bottom: var(--s-3); }
.mag-author p { font-size: var(--t-sm); color: var(--muted); margin-bottom: var(--s-3); }
.mag-author-link a { font-weight: 600; }

/* ---------- Read also ---------- */
.mag-related {
  margin-top: clamp(56px, 7vw, 96px); padding: clamp(44px, 6vw, 80px) 0;
  background-color: var(--accent-pale); border-top: 1px solid var(--rule);
}
.mag-related h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--s-7); }
.mag-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.mag-rel {
  background-color: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md);
  overflow: hidden; padding-bottom: var(--s-5);
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.mag-rel:hover { border-color: var(--rule-strong); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.mag-rel-media { display: block; background-color: var(--accent-pale); }
.mag-rel-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.mag-rel-title { font-size: 1.08rem; line-height: 1.2; margin: var(--s-5) var(--s-5) var(--s-3); }
.mag-rel-title a { color: var(--ink); text-decoration: none; }
.mag-rel-title a:hover { color: var(--primary); text-decoration: underline; }
.mag-rel-dek { font-size: var(--t-sm); color: var(--muted); margin: 0 var(--s-5) var(--s-4); }
.mag-rel-meta {
  margin: 0 var(--s-5); padding-top: var(--s-3); border-top: 1px solid var(--rule);
  font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.mag-related-all { margin: var(--s-7) 0 0; font-size: var(--t-sm); font-weight: 600; }

/* ---------- home page magazine teaser ---------- */
.mag-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.mag-teaser-foot { margin-top: var(--s-7); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
  .mag-related-grid, .mag-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .mag-card.lead { flex-direction: column; }
  .mag-card.lead .mag-card-media { flex: none; }
  .mag-card.lead .mag-card-media img { height: auto; }
}
@media (max-width: 640px) {
  .mag-grid, .mag-related-grid, .mag-teaser-grid { grid-template-columns: 1fr; }
  .mag-body { font-size: 1rem; line-height: 1.68; }
  .mag-figure img { border-radius: var(--r-md); }
  .mag-author { grid-template-columns: 1fr; gap: var(--s-5); }
  .mag-author img { width: 96px; height: 96px; }
  .mag-byline { gap: var(--s-2) var(--s-4); }
  .mag-cta { padding: var(--s-5); }
  .mag-body blockquote { padding: var(--s-4) var(--s-5); }
}


/* Network column: five sibling products, rotated so every site is linked the same
   number of times. Sits in the footer link grid and inherits its type and colour. */
.site-network ul { list-style: none; margin: 0; padding: 0; }
.site-network li + li { margin-top: 0.4rem; }
.site-network a { text-decoration: none; border-bottom: 1px solid transparent; }
.site-network a:hover, .site-network a:focus-visible { border-bottom-color: currentColor; }
