/* ════════════════════════════════════════════════════════════
   THE SMILE BLUEPRINT — global stylesheet
   Tokens, scaffolding, components — driven by the V1 brand spec.
   ════════════════════════════════════════════════════════════ */

:root {
  --charcoal:   #2E3338;
  --near-black: #1F2224;
  --warm-white: #F4F3F0;
  --off-white:  #ECEAE4;
  --steel-blue: #8AAFC2;
  --warm-gold:  #B8923A;
  --mist:       #D9E4EA;
  --mid-grey:   #6B7280;

  --serif: 'Bodoni Moda', 'Didot', 'Bodoni 72', serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  --max:   1440px;
  --pad-x: clamp(20px, 4vw, 56px);
  --rule-dark:  1px solid color-mix(in oklab, var(--charcoal) 16%, transparent);
  --rule-light: 1px solid color-mix(in oklab, var(--off-white) 14%, transparent);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  background: var(--near-black);
  color: var(--off-white);
}
body.theme-light { background: var(--warm-white); color: var(--charcoal); }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,p,ul,ol { margin: 0; }
ul { padding: 0; list-style: none; }

.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip {
  position:absolute; left:-9999px; top:0; padding:12px 18px; background:var(--warm-gold);
  color:var(--near-black); font-family:var(--mono); font-size:11px; letter-spacing:.3em;
  text-transform:uppercase; z-index:100;
}
.skip:focus { left: 16px; top: 12px; }

/* ─── primitives ──────────────────────────────────────────── */
.page { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.mono { font-family: var(--mono); font-weight: 400; }
.serif { font-family: var(--serif); }
.meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--mid-grey);
}
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--steel-blue);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content:""; width: 28px; height: 1px; background: currentColor; }

/* ─── topbar ─────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in oklab, var(--near-black) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--rule-light);
}
body.theme-light .topbar {
  background: color-mix(in oklab, var(--warm-white) 92%, transparent);
  border-bottom: var(--rule-dark);
}
.topbar-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
}
.brand { text-decoration: none; }
.nav {
  justify-self: center;
  display: flex; gap: 28px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--mid-grey);
}
.nav a { color: inherit; text-decoration: none; transition: color .2s; padding: 4px 2px; position: relative; }
.nav a:hover { color: var(--off-white); }
body.theme-light .nav a:hover { color: var(--charcoal); }
.nav a[aria-current="page"] { color: var(--steel-blue); }
.nav a[aria-current="page"]::after {
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:1px; background: var(--steel-blue);
}
@media (max-width: 880px) {
  .topbar-inner { grid-template-columns: auto auto; }
  .nav { display: none; }
  .cta.cta-ghost { display: none; }
}

/* ─── strip lockup ──────────────────────────────────────── */
.strip { display: inline-flex; align-items: baseline; gap: 9px; color: var(--off-white); }
.strip-the   { font-family: var(--sans); font-weight: 300; font-size: 12px; letter-spacing: .14em; }
.strip-smile { font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: .04em; line-height: 1; }
.strip-dot   { width: 3px; height: 3px; background: var(--steel-blue); border-radius: 50%; align-self: center; transform: translateY(-1px); }
.strip-bp    { font-family: var(--mono); font-weight: 400; font-size: 9.5px; letter-spacing: .42em; color: var(--steel-blue); }
.strip-light { color: var(--charcoal); }

/* ─── CTA buttons ──────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 22px; border-radius: 999px;
  font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; text-decoration: none;
  border: 0.9px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.cta-gold  { background: var(--warm-gold); color: var(--near-black); border-color: var(--warm-gold); }
.cta-gold:hover  { background: color-mix(in oklab, var(--warm-gold) 88%, white); }
.cta-ghost { background: transparent; color: var(--off-white); border-color: var(--steel-blue); }
.cta-ghost:hover { background: var(--steel-blue); color: var(--near-black); }
body.theme-light .cta-ghost { color: var(--charcoal); }
.cta-mono  { background: var(--off-white); color: var(--near-black); }
.cta::after { content: "→"; font-family: var(--sans); letter-spacing: 0; transition: transform .2s; }
.cta:hover::after { transform: translateX(4px); }

/* ─── corner brackets (brand element) ─────────────────── */
.brackets { position: relative; }
.brackets > .c { position: absolute; width: 22px; height: 22px; pointer-events: none; }
.brackets > .c-tl { top:0; left:0; border-top:0.9px solid var(--steel-blue); border-left:0.9px solid var(--steel-blue); border-top-left-radius: 6px; }
.brackets > .c-tr { top:0; right:0; border-top:0.9px solid var(--steel-blue); border-right:0.9px solid var(--steel-blue); border-top-right-radius: 6px; }
.brackets > .c-bl { bottom:0; left:0; border-bottom:0.9px solid var(--steel-blue); border-left:0.9px solid var(--steel-blue); border-bottom-left-radius: 6px; }
.brackets > .c-br { bottom:0; right:0; border-bottom:0.9px solid var(--steel-blue); border-right:0.9px solid var(--steel-blue); border-bottom-right-radius: 6px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: var(--warm-gold); color: var(--near-black);
  font-family: var(--mono); font-weight: 700; font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
}
.pill-outline { background: transparent; color: var(--steel-blue); border: 0.9px solid var(--steel-blue); }

/* ─── HOME hero ───────────────────────────────────────── */
.hero {
  position: relative; padding: 96px 0 80px;
  min-height: calc(100vh - 64px);
  display: grid; align-content: center;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px;
  padding-bottom: 48px;
  border-bottom: var(--rule-light);
  margin-bottom: 64px;
}
.hero-headline {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 10vw, 156px);
  line-height: .94; letter-spacing: -.012em;
  max-width: 14ch;
}
.hero-headline em { font-style: italic; font-weight: 500; color: var(--steel-blue); }
.hero-headline .gold { color: var(--warm-gold); font-style: italic; }
.hero-sub {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: var(--rule-light);
}
.hero-sub p { font-size: 18px; line-height: 1.55; max-width: 52ch; }
.hero-sub .actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
@media (max-width: 720px) { .hero-sub { grid-template-columns: 1fr; gap: 24px; } }

/* ─── crosshair corner registration ──────────────────── */
.crosshair { position: absolute; width: 14px; height: 14px; pointer-events: none; color: var(--steel-blue); opacity: .65; }
.crosshair::before, .crosshair::after { content:""; position: absolute; background: currentColor; }
.crosshair::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.crosshair::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
.ch-tl { top: 16px; left: 16px; } .ch-tr { top: 16px; right: 16px; }
.ch-bl { bottom: 16px; left: 16px; } .ch-br { bottom: 16px; right: 16px; }

/* ─── sections ───────────────────────────────────────── */
.section { padding: 96px 0; border-top: var(--rule-light); position: relative; }
.section-light { background: var(--warm-white); color: var(--charcoal); border-top: 0; }
.section-light .meta { color: var(--mid-grey); }
.section-light .eyebrow { color: var(--steel-blue); }

.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: end;
  padding-bottom: 48px;
  border-bottom: var(--rule-light);
  margin-bottom: 64px;
}
.section-light .section-head { border-bottom: var(--rule-dark); }
.section-head .lh { display: grid; gap: 16px; }
.section-head .num { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; color: var(--steel-blue); }
.section-head .title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.008em;
}
.section-head .rh p { font-size: 16px; line-height: 1.65; color: color-mix(in oklab, currentColor 78%, transparent); max-width: 56ch; }
.section-head .rh p + p { margin-top: 14px; }
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 20px; align-items: start; } }

/* ─── featured strip — three signals ──────────────────── */
.signals {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .signals { grid-template-columns: 1fr; } }
.signal {
  position: relative; padding: 56px 32px 36px;
  border: var(--rule-light);
}
.section-light .signal { border: var(--rule-dark); background: #fff; }
.signal .num { font-family: var(--mono); font-size: 10px; letter-spacing: .32em; color: var(--steel-blue); }
.signal h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; line-height: 1.05; margin: 16px 0 12px; }
.signal p { font-size: 14.5px; line-height: 1.6; color: color-mix(in oklab, currentColor 75%, transparent); }
.signal .read { display:inline-flex; margin-top: 20px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .3em; color: var(--steel-blue); text-decoration: none; }
.signal .read::after { content: "  →"; }

/* ─── episode list (cards) ──────────────────────────── */
.episodes {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.episode {
  display: grid; grid-template-columns: 80px 1fr 240px 120px; gap: 32px;
  padding: 28px 0; border-top: var(--rule-light); align-items: baseline;
  text-decoration: none; color: inherit; transition: background .2s;
}
.episode:last-child { border-bottom: var(--rule-light); }
.episode:hover { background: color-mix(in oklab, var(--off-white) 4%, transparent); }
.section-light .episode { border-top: var(--rule-dark); }
.section-light .episode:last-child { border-bottom: var(--rule-dark); }
.episode .ep-num { font-family: var(--mono); font-size: 11px; letter-spacing: .28em; color: var(--steel-blue); }
.episode .ep-main { display: grid; gap: 6px; }
.episode .ep-kicker { font-family: var(--mono); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--mid-grey); }
.episode .ep-title { font-family: var(--serif); font-weight: 500; font-size: 28px; line-height: 1.1; letter-spacing: -.005em; }
.episode .ep-dek   { font-size: 13.5px; color: color-mix(in oklab, currentColor 70%, transparent); max-width: 60ch; }
.episode .ep-meta  { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; color: var(--mid-grey); text-transform: uppercase; line-height: 1.6; }
.episode .ep-stamp { display: inline-flex; justify-self: end; padding: 6px 12px; border: 0.9px solid var(--steel-blue); color: var(--steel-blue); font-family: var(--mono); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; }
.episode:hover .ep-title { color: var(--warm-gold); }

@media (max-width: 880px) {
  .episode { grid-template-columns: 50px 1fr; }
  .episode .ep-meta, .episode .ep-stamp { grid-column: 2; }
  .episode .ep-stamp { justify-self: start; }
}

/* ─── treatment-plan card ──────────────────────────── */
.tp {
  background: var(--near-black);
  padding: 56px 44px 40px;
  display: grid; gap: 28px;
  border: var(--rule-light);
}
.tp-head { display:flex; justify-content: space-between; align-items: baseline; padding-bottom: 18px; border-bottom: var(--rule-light); }
.tp-head .ref { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; color: var(--mid-grey); text-transform: uppercase; }
.tp-title { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.tp-title h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 4.5vw, 56px); line-height: .98; letter-spacing: -.01em; max-width: 14ch; }
.tp-title h3 em { font-style: italic; }
.tp-price { display: grid; gap: 4px; text-align: right; }
.tp-price .lab { font-family: var(--mono); font-size: 9px; letter-spacing: .32em; color: var(--mid-grey); text-transform: uppercase; }
.tp-price .num { font-family: var(--serif); font-weight: 500; font-size: 44px; line-height: 1; color: var(--warm-gold); }
.tp-rows { display: grid; gap: 0; }
.tp-rows .r { display: grid; grid-template-columns: 60px 1fr 140px; gap: 24px; padding: 18px 0; border-top: var(--rule-light); align-items: center; }
.tp-rows .r:last-child { border-bottom: var(--rule-light); }
.tp-rows .idx { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--steel-blue); }
.tp-rows .name { font-family: var(--serif); font-weight: 500; font-size: 19px; }
.tp-rows .det  { font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--mid-grey); margin-top: 4px; }
.tp-rows .qty  { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; color: var(--off-white); text-transform: uppercase; text-align: right; }
.tp-foot { display: flex; justify-content: space-between; align-items: end; }
.tp-stamp { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--steel-blue); text-transform: uppercase; }
.tp-stamp .sm-mark { width: 22px; height: 22px; border: 0.9px solid var(--steel-blue); display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--off-white); line-height: 1; padding-bottom: 2px; }
@media (max-width: 720px) {
  .tp { padding: 32px 22px; }
  .tp-title { grid-template-columns: 1fr; }
  .tp-rows .r { grid-template-columns: 40px 1fr; }
  .tp-rows .qty { grid-column: 2; text-align: left; }
}

/* ─── about / editorial ──────────────────────────── */
.editorial {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 880px) { .editorial { grid-template-columns: 1fr; gap: 40px; } }
.editorial .lh h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6vw, 88px);
  line-height: .98; letter-spacing: -.01em;
}
.editorial .lh h2 em { font-style: italic; color: var(--steel-blue); }
.editorial .rh { display: grid; gap: 18px; }
.editorial .rh p { font-size: 16px; line-height: 1.65; color: color-mix(in oklab, currentColor 82%, transparent); }
.editorial .rh p.lede { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.35; color: currentColor; }
.editorial .rh p:first-letter { /* drop cap only when serif lede has been rendered */ }
.dropcap::first-letter {
  font-family: var(--serif); font-weight: 500; font-size: 88px;
  float: left; line-height: .82; padding: 8px 12px 0 0; color: var(--steel-blue);
}

/* placeholder image (striped) */
.ph {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    color-mix(in oklab, var(--charcoal) 70%, transparent) 0 14px,
    color-mix(in oklab, var(--near-black) 90%, transparent) 14px 28px
  );
  color: var(--mid-grey);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  display: grid; place-items: center;
  border: var(--rule-light);
  aspect-ratio: 4/5;
}
.section-light .ph {
  background: repeating-linear-gradient(135deg, var(--mist) 0 14px, color-mix(in oklab, var(--mist) 60%, white) 14px 28px);
  border: var(--rule-dark);
}

/* ─── stats row ─────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { border-top: var(--rule-light); padding: 24px 0 0; }
.section-light .stat { border-top: var(--rule-dark); }
.stat .num { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.stat .num em { font-style: italic; color: var(--warm-gold); }
.stat .lab { display: block; margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .32em; color: var(--mid-grey); text-transform: uppercase; }

/* ─── contact form ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-grid .info p { font-size: 16px; line-height: 1.6; color: color-mix(in oklab, currentColor 78%, transparent); margin-bottom: 16px; }
.contact-grid .info .channel { padding: 18px 0; border-top: var(--rule-light); display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: baseline; }
.contact-grid .info .channel:last-of-type { border-bottom: var(--rule-light); }
.contact-grid .info .channel .lab { font-family: var(--mono); font-size: 10.5px; letter-spacing: .32em; color: var(--steel-blue); text-transform: uppercase; }
.contact-grid .info .channel .val { font-family: var(--serif); font-size: 18px; }

.field { display: grid; gap: 6px; margin-bottom: 22px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: .32em; color: var(--steel-blue); text-transform: uppercase; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  background: transparent; color: inherit;
  border: 0; border-bottom: 0.9px solid color-mix(in oklab, currentColor 24%, transparent);
  padding: 10px 0; outline: 0; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--warm-gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field-radio-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.field-radio { position: relative; }
.field-radio input { position: absolute; opacity: 0; pointer-events: none; }
.field-radio label {
  display: inline-flex; padding: 8px 16px; border: 0.9px solid color-mix(in oklab, currentColor 24%, transparent);
  border-radius: 999px; color: inherit; cursor: pointer; transition: all .2s;
}
.field-radio input:checked + label { background: var(--warm-gold); color: var(--near-black); border-color: var(--warm-gold); }

.form-msg { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-top: 16px; min-height: 1.2em; }
.form-msg.ok { color: var(--warm-gold); }
.form-msg.err { color: #d96961; }

/* ─── subscribe form (footer) ──────────────────────── */
.sub-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.sub-form input { font-family: var(--sans); font-weight: 300; font-size: 14px; background: transparent; color: var(--off-white); border: 0; border-bottom: 0.9px solid var(--mid-grey); padding: 10px 0; outline: 0; }
.sub-form input::placeholder { color: var(--mid-grey); }
.sub-form input:focus { border-bottom-color: var(--warm-gold); }
.sub-msg { grid-column: 1 / -1; font-family: var(--mono); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--steel-blue); }
@media (max-width: 540px) { .sub-form { grid-template-columns: 1fr; } }

/* ─── footer ──────────────────────────────────────── */
.footer { background: #18191b; color: var(--off-white); padding: 80px 0 28px; border-top: var(--rule-light); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand, .footer-sub { grid-column: 1 / -1; } }
.footer h5 { font-family: var(--mono); font-size: 10px; letter-spacing: .32em; color: var(--steel-blue); text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer li a { font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--off-white); text-decoration: none; opacity: .82; }
.footer li a:hover { color: var(--warm-gold); opacity: 1; }
.footer-brand { display: grid; gap: 16px; }
.footer-quote { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.45; max-width: 38ch; color: color-mix(in oklab, var(--off-white) 70%, transparent); }
.footer-sub p { font-size: 13px; color: color-mix(in oklab, var(--off-white) 65%, transparent); margin-bottom: 16px; line-height: 1.55; }
.footer-meta {
  max-width: var(--max); margin: 64px auto 0; padding: 24px var(--pad-x) 0;
  border-top: var(--rule-light); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-meta .meta { color: var(--mid-grey); }

/* ─── single episode page ──────────────────────── */
.article-hero {
  padding: 96px 0 64px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.article-hero .ep-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .4em; color: var(--steel-blue); text-transform: uppercase; }
.article-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 8vw, 128px); line-height: .95; letter-spacing: -.012em;
  max-width: 16ch;
}
.article-hero h1 em { font-style: italic; }
.article-meta { display: flex; flex-wrap: wrap; gap: 32px; padding: 24px 0; border-top: var(--rule-light); border-bottom: var(--rule-light); margin-top: 16px; }
.article-meta > div { display: grid; gap: 4px; }
.article-meta .lab { font-family: var(--mono); font-size: 9.5px; letter-spacing: .32em; color: var(--mid-grey); text-transform: uppercase; }
.article-meta .val { font-family: var(--serif); font-size: 18px; }

.article-body { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding: 64px 0; }
.article-body aside { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; line-height: 1.8; color: var(--mid-grey); text-transform: uppercase; }
.article-body aside h4 { color: var(--steel-blue); margin-bottom: 12px; font-weight: 400; }
.article-body .prose { font-size: 17px; line-height: 1.7; max-width: 60ch; }
.article-body .prose p + p { margin-top: 1.1em; }
.article-body .prose h2 { font-family: var(--serif); font-weight: 500; font-size: 36px; line-height: 1.1; margin: 1.5em 0 .6em; }
.article-body .prose blockquote { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.35; margin: 1.4em 0; padding-left: 24px; border-left: 0.9px solid var(--steel-blue); color: var(--off-white); }
@media (max-width: 880px) { .article-body { grid-template-columns: 1fr; gap: 32px; } }

/* ─── animate-in ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
