/* ============================================================
   COUNSEL.DAY · ITERATION 8 · WHITE + WINE
   Shared stylesheet · last revised 15 May 2026
   Loaded by index.html, method.html, why-time.html,
   distinction.html, and any other Iteration 8 surface.
   ============================================================ */

:root {
  --paper: #ffffff;
  --paper-deep: #fafaf8;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #3a3530;
  --muted: #6b635a;
  --subtle: #9b9286;
  --rule: #e8e6e1;
  --rule-strong: #0a0a0a;
  --wine: #722F37;
  --wine-deep: #561F26;
  --wine-soft: #f4e6e8;
  --rose: #c4806b;

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-ui: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Legacy aliases · keep older class hangers-on rendering until body content
     is migrated. New code should reference the canonical tokens above. */
  --clay: var(--wine);
  --clay-deep: var(--wine-deep);
  --clay-soft: var(--wine-soft);
  --seal: var(--wine);
  --seal-deep: var(--wine-deep);
  --seal-soft: var(--wine-soft);
  --burgundy: var(--wine);
  --stamp-b: var(--rose);
  --stamp-b-soft: var(--wine-soft);
  --forest: var(--ink);
  --cream: var(--paper);
  --paper-line: var(--rule);
  --stone: var(--muted);
  --rose-deep: var(--rose);
  --olive: var(--muted);
  --font-chrome: var(--font-mono);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px; width: auto; height: auto; padding: 8px 14px;
  background: var(--ink); color: var(--paper); z-index: 100;
  font-family: var(--font-ui); font-size: 13px; text-decoration: none;
}

/* ---------- LEGACY SUPPRESSION ----------
   Hide sealed-record artefacts that should no longer render.
   The masthead, records-strip, brand-mark SVG are all replaced
   by the simple .nav-bar pattern below. */
.records-strip,
.masthead,
.masthead-rule,
.usp-strip { display: none !important; }

/* ---------- NAV BAR ---------- */
.nav-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-brand .tld {
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
}
.nav-links {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease, color 120ms ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--wine); border-bottom-color: var(--wine); }
.nav-cta {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-ui); font-size: 15px;
}
.nav-cta .btn-text {
  color: var(--ink-soft); text-decoration: none; border-bottom: none;
}
.nav-cta .btn-text:hover { color: var(--wine); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 20px; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 15px 30px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.btn:hover { background: var(--wine); border-color: var(--wine); color: var(--paper); }
.btn:active { transform: translateY(1px); }

.btn-large {
  font-size: 17px;
  font-weight: 500;
  padding: 19px 38px;
  letter-spacing: 0.01em;
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-arrow::after { content: " \2192"; }

.btn-text {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--wine);
}
.btn-text:hover { color: var(--wine); }

/* ---------- HERO ---------- */
.hero {
  padding: 56px 32px 72px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.hero-inner { max-width: 1180px; margin: 0 auto; }
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 26px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 400; line-height: 1.04; letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 26px;
}
.hero-headline .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.hero-subhead {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4;
  color: var(--ink-soft); max-width: 780px;
  margin: 0 auto 48px;
}
.hero-figure { max-width: 1080px; margin: 0 auto 48px; padding: 0; }
.hero-figure svg { display: block; width: 100%; height: auto; }
.hero-body {
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.65;
  color: var(--ink-soft); max-width: 680px;
  margin: 0 auto 36px;
  text-align: justify; text-justify: inter-word; hyphens: auto;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; margin-top: 8px;
}
.hero-reassure {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-top: 28px;
}
.hero-reassure strong { color: var(--wine); font-weight: 500; }

/* ---------- ARTICLE PAGE HEAD (for method/why-time/distinction) ---------- */
.method-page-inner,
.page-shell { max-width: 1320px; margin: 0 auto; padding: 32px 48px 96px; }
.method-page-breadcrumb {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.method-page-breadcrumb a {
  color: var(--wine); border-bottom: 1px solid var(--wine);
  padding-bottom: 1px; text-decoration: none;
}
.method-page-breadcrumb a:hover { color: var(--wine-deep); }
.method-page-head {
  padding-bottom: 40px; border-bottom: 1px solid var(--ink);
  margin-bottom: 56px;
}
.method-page-eyebrow {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 22px;
}
.method-page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 400; line-height: 1.06; letter-spacing: -0.018em;
  color: var(--ink); margin: 0 0 24px; max-width: 1100px;
}
.method-page-title .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.method-page-lede {
  font-family: var(--font-body);
  font-size: 21px; line-height: 1.6; color: var(--ink-soft);
  max-width: 980px; margin: 0 0 28px;
}
.method-page-lede strong { color: var(--ink); font-weight: 500; }
.method-page-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.method-page-meta .item { display: flex; flex-direction: column; gap: 4px; }
.method-page-meta .val { color: var(--ink); font-weight: 500; }
.method-page-meta .val.clay,
.method-page-meta .val.wine { color: var(--wine); }

.page-shell { max-width: 1320px; margin: 0 auto; padding: 32px 48px 96px; }
.page-breadcrumb {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.page-breadcrumb a {
  color: var(--wine); border-bottom: 1px solid var(--wine);
  padding-bottom: 1px; text-decoration: none;
}
.page-breadcrumb a:hover { color: var(--wine-deep); }
.page-breadcrumb .sep { margin: 0 10px; color: var(--rule); }
.page-head {
  padding-bottom: 40px; border-bottom: 1px solid var(--ink);
  margin-bottom: 56px;
}
.page-kicker {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 22px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 400; line-height: 1.06; letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px; max-width: 1100px;
}
.page-title .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.page-lede {
  font-family: var(--font-body);
  font-size: 21px; line-height: 1.6; color: var(--ink-soft);
  max-width: 980px; margin: 0 0 28px;
}
.page-lede strong { color: var(--ink); font-weight: 500; }
.page-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.page-meta .item { display: flex; flex-direction: column; gap: 4px; }
.page-meta .val { color: var(--ink); font-weight: 500; }
.page-meta .val.wine { color: var(--wine); }

/* ---------- METHOD STAGE (record-and-margin grid) ---------- */
.stage-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 56px; padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.stage-grid:last-of-type { border-bottom: none; }
.stage-rail {
  font-family: var(--font-mono); font-size: 12px;
  font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
  position: sticky; top: 96px;
}
.stage-rail .stage-file { color: var(--wine); margin-bottom: 12px; font-size: 13px; }
.stage-rail .stage-name { color: var(--ink); margin-bottom: 14px; }
.stage-rail .stage-revised { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; }
.stage-body {
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.7;
  color: var(--ink-soft); max-width: 760px;
}
.stage-body p { margin: 0 0 22px; }
.stage-body p:first-child { margin-top: 0; }
.stage-body p strong { font-weight: 500; color: var(--ink); }
.stage-body p em { font-style: italic; color: var(--wine); }
.stage-body h3, .stage-body h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; color: var(--ink);
  line-height: 1.3; margin: 28px 0 12px;
}
@media (max-width: 760px) {
  .stage-grid { grid-template-columns: 1fr; gap: 24px; }
  .stage-rail { position: static; }
}

/* ---------- LEGACY method-stage classes (alias to stage-grid) ---------- */
.method-stage {
  padding: 56px 0; border-bottom: 1px solid var(--rule);
}
.method-stage:last-of-type { border-bottom: none; }
.method-stage-head { margin-bottom: 28px; }
.method-stage-eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 14px;
}
.method-stage-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.012em;
  color: var(--ink); margin: 0; max-width: 1100px;
}
.method-stage-title .ital { font-style: italic; color: var(--wine); }
.method-stage-body {
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.7;
  color: var(--ink-soft); max-width: 1100px;
}
.method-stage-body p { margin: 0 0 22px; }
.method-stage-body p strong { font-weight: 500; color: var(--ink); }
.method-stage-body em { font-style: italic; color: var(--wine); }
.method-stage-aside {
  margin-top: 28px; font-family: var(--font-ui); font-size: 15px;
}
.method-stage-aside a {
  color: var(--wine) !important;
  border-bottom: 1px solid var(--wine);
  text-decoration: none !important;
  font-family: var(--font-ui) !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 500;
}

.method-pullquote {
  font-family: var(--font-display);
  font-style: italic; font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.45; color: var(--ink);
  border-left: 3px solid var(--wine);
  padding: 4px 0 4px 24px;
  margin: 32px 0 32px 0;
  max-width: 760px;
}

/* ---------- FOUNDER'S CASE block ---------- */
.founder-case {
  padding: 32px 36px;
  background: var(--paper-deep);
  border-left: 4px solid var(--wine);
  margin: 0 0 48px 0; max-width: 1100px;
}
.founder-case .label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 12px;
}
.founder-case p {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.65;
  color: var(--ink); margin: 0 0 14px;
}
.founder-case p:last-child { margin-bottom: 0; }
.founder-case strong { font-weight: 500; color: var(--ink); }
.founder-case em { font-style: italic; color: var(--wine); }

/* ---------- COMPARISON GRID (why-time / distinction) ---------- */
.comparison-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--ink);
  margin-top: 28px;
}
.comparison-cell {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.comparison-cell:nth-child(2n) { border-right: none; }
.comparison-cell:nth-last-child(-n+2) { border-bottom: none; }
.comparison-cell .cat {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 10px;
}
.comparison-cell .what {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; line-height: 1.25;
  color: var(--ink); margin-bottom: 14px;
}
.comparison-cell .what .ital { font-style: italic; color: var(--wine); }
.comparison-cell .does,
.comparison-cell .vs {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft); margin-bottom: 10px;
}
.comparison-cell .vs { padding-top: 14px; border-top: 1px solid var(--rule); margin-top: 8px; }
.comparison-cell strong { font-weight: 500; color: var(--ink); }
@media (max-width: 800px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-cell { border-right: none; }
  .comparison-cell:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--rule); }
}

/* ---------- DECISION CLASSES (why-time) ---------- */
.decision-classes {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--ink);
  margin-top: 24px;
}
.decision-class {
  padding: 26px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.decision-class:nth-child(2n) { border-right: none; }
.decision-class:nth-last-child(-n+2) { border-bottom: none; }
.decision-class .heading {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 14px;
}
.decision-class .examples {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; line-height: 1.4;
  color: var(--ink);
}
.decision-class .examples .ital { font-style: italic; color: var(--wine); }
@media (max-width: 800px) {
  .decision-classes { grid-template-columns: 1fr; }
  .decision-class { border-right: none; }
  .decision-class:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--rule); }
}

/* ---------- FAQ BLOCK (rich faq on method/why-time) ---------- */
.faq-block { margin-top: 28px; }
.faq-block-item {
  padding: 24px 0; border-bottom: 1px solid var(--rule);
}
.faq-block-item:first-child { border-top: 1px solid var(--rule); }
.faq-block-q {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500; line-height: 1.3;
  color: var(--ink); margin: 0 0 12px;
}
.faq-block-q .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.faq-block-a {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.65;
  color: var(--ink-soft); margin: 0;
}
.faq-block-a em { font-style: italic; color: var(--wine); }
.faq-block-a a { color: var(--wine); }

/* ---------- METHOD-CTA closing block (used on article pages) ---------- */
.method-cta {
  text-align: center;
  padding: 72px 32px 80px;
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}
.method-cta-eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 22px;
}
.method-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink); margin: 0 auto 36px; max-width: 820px;
}
.method-cta-title .ital { font-style: italic; color: var(--wine); }
.method-cta-row {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; align-items: center;
}

/* ---------- SECTION HEADS ---------- */
section { padding: 88px 32px; border-bottom: 1px solid var(--rule); }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.section-inner.wide { max-width: 1280px; }
.section-head { margin-bottom: 36px; }
.section-kicker {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.012em;
  color: var(--ink); margin: 0 0 22px; max-width: 860px;
}
.section-title .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.section-dek {
  font-family: var(--font-body); font-size: 19px;
  line-height: 1.6; color: var(--ink-soft);
  max-width: 760px; margin: 0 0 44px;
}

/* ---------- ARTEFACT FALLBACKS (gentle degradation for sealed-record HTML) ---------- */
.record-envelope, .record-slip {
  border: 1px solid var(--ink); background: var(--paper);
  padding: 24px 26px; margin: 18px 0; max-width: 640px;
}
.record-header { display: flex; flex-wrap: wrap; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.file-ref, .registration-number {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--wine);
}
.file-ref.seal { color: var(--wine); }
.status-pill {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 9px;
  border: 1px solid var(--rule); color: var(--muted);
}
.status-pill.sealed { color: var(--wine); border-color: var(--wine); }
.status-pill.unsealed, .status-pill.live { color: var(--ink); border-color: var(--ink); }
.status-pill.pending { color: var(--muted); }
.date-stamp {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink);
}
.date-stamp.muted { color: var(--muted); }
.date-stamp.b { color: var(--rose); }
.envelope-body { padding: 0; }
.envelope-caption {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--rule);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.wax-seal { display: none; }
.slip-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.slip-meta .stamp-a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); }
.slip-meta .stamp-b { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); }
.slip-question { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.3; color: var(--ink); margin-bottom: 14px; }
.slip-verdict { font-family: var(--font-display); font-size: 44px; font-weight: 500; line-height: 1; margin-bottom: 12px; }
.slip-verdict.a { color: var(--wine); }
.slip-verdict.b { color: var(--rose); font-style: italic; }
.slip-trajectory { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.specimen { margin: 18px 0; }
.specimen-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine); margin-bottom: 10px; }
.specimen-caption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.hero-question, .record-question {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
}
.record-verdict { font-family: var(--font-display); font-size: 44px; font-weight: 500; color: var(--wine); }

/* ---------- HOOK BAND ---------- */
.hook-band {
  background: var(--paper); border-bottom: 1px solid var(--rule);
  padding: 72px 32px;
}
.hook-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 160px 1fr;
  gap: 56px; align-items: start;
}
.hook-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); line-height: 1.5;
}
.hook-body p {
  font-family: var(--font-body);
  font-size: 21px; line-height: 1.55;
  color: var(--ink); margin: 0 0 20px;
}
.hook-body p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 19px; }
.hook-body strong { font-weight: 500; color: var(--ink); }
.hook-body em { font-style: italic; color: var(--wine); }
@media (max-width: 760px) { .hook-inner { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- USP DIFFERENTIATOR ---------- */
.usp-section { background: var(--paper-deep); }
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  margin-top: 8px;
}
.usp-cell { padding: 32px 26px; background: var(--paper); }
.usp-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.usp-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500; line-height: 1.22;
  color: var(--ink); margin: 0 0 14px;
}
.usp-title .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.usp-body {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); margin: 0;
}
@media (max-width: 1000px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .usp-grid { grid-template-columns: 1fr; } }

/* ---------- DURATION TABLE ---------- */
.duration-table { border: 1px solid var(--ink); margin-top: 8px; }
.duration-row {
  display: grid; grid-template-columns: 90px 1.3fr 2.4fr 130px;
  border-bottom: 1px solid var(--rule); align-items: center;
}
.duration-row:last-child { border-bottom: none; }
.duration-row.head { background: var(--ink); color: var(--paper); }
.duration-row.head .duration-cell {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 22px; color: var(--paper);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.duration-row.head .duration-cell:last-child { border-right: none; }
.duration-cell { padding: 22px 20px; border-right: 1px solid var(--rule); }
.duration-cell:last-child { border-right: none; }
.duration-class {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine);
}
.duration-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--ink);
}
.duration-examples {
  font-family: var(--font-body); font-size: 17px; line-height: 1.55; color: var(--ink-soft);
}
.duration-examples .ital { font-style: italic; color: var(--wine); }
.duration-length {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--wine); text-align: right;
}
.duration-length small {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; margin-top: 5px;
}
@media (max-width: 760px) {
  .duration-row { grid-template-columns: 1fr; }
  .duration-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 14px 20px; }
  .duration-cell:last-child { border-bottom: none; }
  .duration-length { text-align: left; }
  .duration-row.head { display: none; }
}

/* ---------- THREE-STEP STRIP ---------- */
.three-step {
  padding: 64px 32px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-deep);
}
.three-step-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
@media (max-width: 800px) { .three-step-inner { grid-template-columns: 1fr; gap: 36px; } }
.step-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--ink); margin: 0 0 12px; line-height: 1.25;
}
.step-body {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); margin: 0;
}

/* ---------- MECHANISM PANELS ---------- */
.mechanism-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}
.mech-panel {
  padding: 28px 26px 32px; border-right: 1px solid var(--rule);
  background: var(--paper);
}
.mech-panel:last-child { border-right: none; }
.mech-panel.reveal { background: var(--ink); color: var(--paper); }
.mech-panel.reveal .mech-day { color: var(--rose); }
.mech-panel.reveal .mech-head { color: var(--paper); }
.mech-panel.reveal .mech-body { color: rgba(255, 255, 255, 0.78); }
.mech-day {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.mech-head {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  line-height: 1.2; color: var(--ink); margin: 0 0 16px;
}
.mech-head .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.mech-panel.reveal .mech-head .ital { color: var(--rose); }
.mech-body {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); margin: 0 0 22px;
}
.mech-votes {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  padding-top: 18px; font-family: var(--font-mono); font-size: 12px;
}
.mech-panel.reveal .mech-votes { border-top-color: rgba(255, 255, 255, 0.2); }
.mech-vote .label { color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; margin-bottom: 6px; }
.mech-panel.reveal .mech-vote .label { color: rgba(255, 255, 255, 0.55); }
.mech-vote .value { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); }
.mech-vote.a .value { color: var(--wine); }
.mech-vote.b .value { color: var(--rose); font-style: italic; }
.mech-panel.reveal .mech-vote.a .value { color: var(--wine-soft); }
@media (max-width: 820px) {
  .mechanism-grid { grid-template-columns: 1fr; }
  .mech-panel { border-right: none; border-bottom: 1px solid var(--rule); }
  .mech-panel:last-child { border-bottom: none; }
}
.mech-cta { font-family: var(--font-ui); font-size: 15px; color: var(--muted); margin-top: 28px; }
.mech-cta a { color: var(--wine); }

/* ---------- QUESTIONS GRID ---------- */
.q-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.q-cell {
  padding: 22px 20px 18px; border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule); background: var(--paper);
}
.q-cell:nth-child(3n) { border-right: none; }
.q-cell:nth-last-child(-n+3) { border-bottom: none; }
.q-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 14px;
}
.q-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  line-height: 1.3; color: var(--ink); margin: 0 0 22px;
}
.q-text .ital { font-style: italic; color: var(--wine); }
.q-meta {
  display: flex; justify-content: space-between; padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.q-meta .duration { color: var(--wine); }
@media (max-width: 800px) {
  .q-grid { grid-template-columns: 1fr; }
  .q-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .q-cell:last-child { border-bottom: none; }
}
.q-footer { font-family: var(--font-body); font-size: 17px; color: var(--ink-soft); margin-top: 32px; max-width: 780px; line-height: 1.6; }

/* ---------- METHOD ESSAY (long-form) ---------- */
.method-section { background: var(--paper); }
.method-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.method-kicker {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.method-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 auto 36px; max-width: 720px;
}
.method-title .ital { font-style: italic; color: var(--wine); }
.method-body {
  text-align: justify; text-justify: inter-word; hyphens: auto;
  font-family: var(--font-body); font-size: 20px;
  line-height: 1.7; color: var(--ink-soft);
}
.method-body p { margin: 0 0 20px; }
.method-body p.lede:first-letter {
  float: left; font-family: var(--font-display);
  font-size: 64px; line-height: 0.85; font-weight: 500;
  color: var(--wine); padding: 4px 12px 0 0; margin-top: 4px;
}
.method-body .pullquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; line-height: 1.45; color: var(--ink);
  border-left: 3px solid var(--wine);
  padding: 4px 0 4px 22px; margin: 32px 0; text-align: left;
}
.method-body em { font-style: italic; color: var(--wine); }

/* ---------- SPECIMEN VERDICT ---------- */
.specimen-head {
  padding: 16px 24px; display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.specimen-head .id { color: var(--wine); font-weight: 500; }
.specimen-body { padding: 36px 32px 40px; }
.specimen-q {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 32px;
}
.specimen-q .ital { font-style: italic; color: var(--wine); }
.specimen-verdicts {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.specimen-v { padding: 28px 26px; border-right: 1px solid var(--rule); }
.specimen-v:last-child { border-right: none; }
.specimen-v-name {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.specimen-v.a .specimen-v-name { color: var(--wine); }
.specimen-v.b .specimen-v-name { color: var(--rose); }
.specimen-v-verdict {
  font-family: var(--font-display); font-size: 56px;
  line-height: 1; font-weight: 400; margin-bottom: 12px;
}
.specimen-v.a .specimen-v-verdict { color: var(--wine); }
.specimen-v.b .specimen-v-verdict { color: var(--rose); font-style: italic; }
.specimen-v-meta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.specimen-v-meta strong { color: var(--ink); font-weight: 500; }
@media (max-width: 720px) {
  .specimen-verdicts { grid-template-columns: 1fr; }
  .specimen-v { border-right: none; border-bottom: 1px solid var(--rule); }
  .specimen-v:last-child { border-bottom: none; }
}
.specimen-analysis-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin: 32px 0 14px;
}
.specimen-analysis {
  font-family: var(--font-body); font-size: 18px; line-height: 1.65;
  color: var(--ink-soft); margin: 0 0 28px;
}
.specimen-prompt { border-top: 1px solid var(--rule); padding-top: 24px; }
.specimen-prompt-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 12px;
}
.specimen-prompt-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; line-height: 1.45; color: var(--ink); margin: 0;
}

/* ---------- QUOTE BAND ---------- */
.quote-band { background: var(--paper-deep); }
.quote-band-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-band-kicker, .quote-band-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 20px;
}
.quote-band-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px); line-height: 1.45;
  color: var(--ink); margin: 0 0 18px;
}
.quote-band-attr {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}

/* ---------- EDITIONS ---------- */
.editions-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.edition {
  padding: 32px 28px; border-right: 1px solid var(--rule);
  background: var(--paper); display: flex; flex-direction: column;
}
.edition:last-child { border-right: none; }
.edition.featured { background: var(--paper-deep); }
.edition-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 16px;
}
.edition-name {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 500; color: var(--ink); margin: 0 0 16px;
}
.edition-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.edition-amount {
  font-family: var(--font-display); font-size: 44px; font-weight: 500;
  color: var(--ink); line-height: 1;
}
.edition-currency {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.edition-period { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 20px; }
.edition-cta { margin-bottom: 22px; }
.edition-features {
  list-style: none; padding: 20px 0 0; margin: 0;
  border-top: 1px solid var(--rule);
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.55; color: var(--ink-soft);
}
.edition-features li { padding: 8px 0; position: relative; padding-left: 16px; }
.edition-features li::before { content: "·"; position: absolute; left: 0; color: var(--wine); font-weight: 700; }
@media (max-width: 920px) {
  .editions-grid { grid-template-columns: 1fr; }
  .edition { border-right: none; border-bottom: 1px solid var(--rule); }
  .edition:last-child { border-bottom: none; }
}
.tier-note {
  max-width: 960px; margin: 0 auto 40px; padding: 24px 28px;
  border: 1px solid var(--rule); background: var(--paper-deep);
}
.tier-note .section-kicker { margin-bottom: 12px; }
.tier-note p { margin: 0 0 10px; font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.tier-note p:last-child { margin-bottom: 0; }
.tier-note strong { color: var(--ink); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--rule); }
.faq-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 20px; padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-num {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--wine);
}
.faq-q {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  line-height: 1.3; color: var(--ink); margin: 0 0 12px;
}
.faq-a { font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 600px) { .faq-item { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- CLOSING ---------- */
.closing { text-align: center; padding: 104px 24px 112px; border-bottom: 1px solid var(--rule); }
.closing-kicker {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 20px;
}
.closing-title {
  font-family: var(--font-display); font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink); margin: 0 auto 20px; max-width: 820px;
}
.closing-title .ital { font-style: italic; color: var(--wine); }
.closing-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 1.7vw, 19px); line-height: 1.5;
  color: var(--ink-soft); max-width: 640px; margin: 0 auto 36px;
}
.closing-cta { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; align-items: center; }

/* ---------- SHARE BLOCK ---------- */
.share-block { padding: 64px 32px; background: var(--paper-deep); border-bottom: 1px solid var(--rule); }
.share-block-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 800px) { .share-block-inner { grid-template-columns: 1fr; } }
.share-block-content .eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 12px;
}
.share-block-content h3 {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500; line-height: 1.25; color: var(--ink); margin: 0 0 12px;
}
.share-block-content h3 .ital { font-style: italic; color: var(--wine); font-weight: 400; }
.share-block-content .dek { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; }
.share-copy-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  background: transparent; border: 1px solid var(--ink); color: var(--ink);
  padding: 9px 14px; cursor: pointer; border-radius: 0;
}
.share-copy-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.share-copy-link:hover { background: var(--ink); color: var(--paper); }
.share-copy-link.copied { background: var(--wine); color: var(--paper); border-color: var(--wine); }
.share-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
}
.share-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 16px 8px; background: var(--paper);
  font-family: var(--font-ui); font-size: 11px; color: var(--ink-soft);
  text-decoration: none; letter-spacing: 0.04em;
  transition: background 120ms ease, color 120ms ease;
}
.share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.share-btn:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 600px) { .share-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- COLOPHON ---------- */
.colophon { background: var(--paper); border-top: 1px solid var(--rule); padding: 56px 32px 40px; color: var(--ink-soft); }
.colophon-inner { max-width: 1280px; margin: 0 auto; }
.colophon-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--rule);
}
.colophon-brand {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--ink); line-height: 1; margin-bottom: 14px;
}
.colophon-brand .tld { font-weight: 400; font-style: italic; color: var(--wine); }
.colophon-tagline { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; max-width: 480px; }
.colophon-col h5 {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); margin: 0 0 16px;
}
.colophon-col a {
  display: block; font-family: var(--font-ui); font-size: 14px;
  color: var(--ink-soft); text-decoration: none; padding: 5px 0;
  border-bottom: none;
}
.colophon-col a:hover { color: var(--wine); }
.colophon-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--muted);
}
@media (max-width: 1000px) { .colophon-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 600px) { .colophon-top { grid-template-columns: 1fr; } }

/* ---------- GO TO TOP ---------- */
.go-to-top {
  position: fixed; right: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--paper);
  text-decoration: none;
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  padding: 10px 14px; border: 1px solid var(--ink);
  opacity: 0; pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 30;
}
.go-to-top svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.go-to-top.visible { opacity: 1; pointer-events: auto; }
.go-to-top:hover { background: var(--wine-deep); border-color: var(--wine-deep); }

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
}
