@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Source+Serif+4:ital,opsz,wght@0,8..60,400..700;1,8..60,400..700&family=JetBrains+Mono:ital,wght@0,400..800;1,400..700&display=swap');
/* As Reported — typography.
   Instrument Serif = masthead + headlines (the cover's face).
   Source Serif 4 = print body (substitute for a licensed text face; OFL).
   JetBrains Mono = apparatus: kickers, folios, sources, the footnote. */
:root {
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

  /* scale — broadsheet */
  --fs-masthead: clamp(52px, 8vw, 92px);   /* wordmark, front only */
  --fs-headline-lead: clamp(30px, 3.4vw, 44px);
  --fs-headline: clamp(24px, 2.4vw, 31px);
  --fs-headline-brief: 21px;
  --fs-deck: 19px;
  --fs-body: 17px;
  --fs-section: 15px;                       /* section label, mono caps */
  --fs-kicker: 12.5px;                      /* theme line, mono */
  --fs-apparatus: 12.5px;                   /* sources, folio, footnote */
  --fs-fine: 11px;

  --lh-headline: 1.04;
  --lh-deck: 1.32;
  --lh-body: 1.55;
  --lh-apparatus: 1.5;

  --ls-caps: 0.14em;   /* mono all-caps tracking */
  --measure: 36em;     /* body column max */
}
body { font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--text-body); background: var(--surface-page); }
/* As Reported — colour tokens. One accent, carried by the footnote apparatus. */
:root {
  /* base */
  --paper: #F4EFE4;        /* newsprint cream — the field */
  --paper-2: #ECE4D2;      /* recessed panel (sources rows, foot) */
  --ink: #141414;          /* press ink */
  --ink-2: #4A463C;        /* secondary text */
  --ink-3: #7B7460;        /* tertiary / folio */
  --red: #B3271E;          /* editorial red — footnote marker + one use per surface */
  --hairline: #C9C1AC;     /* light rules */
  /* semantic */
  --surface-page: var(--paper);
  --surface-inset: var(--paper-2);
  --text-body: var(--ink);
  --text-muted: var(--ink-2);
  --text-faint: var(--ink-3);
  --accent: var(--red);
  --rule-heavy: 3px solid var(--ink);
  --rule-mid: 1.5px solid var(--ink);
  --rule-hair: 1px solid var(--hairline);
  --link: var(--ink);
  --link-hover: var(--red);
}
/* Dark mode follows the system (brief: no toggle, no engagement furniture). */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171610;
    --paper-2: #201E16;
    --ink: #E9E3D4;
    --ink-2: #BDB5A0;
    --ink-3: #8F8871;
    --red: #D4483C;
    --hairline: #3B382E;
  }
}
a { color: var(--link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--link-hover); }
/* As Reported — spacing, columns, rules-in-use */
:root {
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --col-gap: 32px;               /* broadsheet column gutter */
  --col-rule: var(--rule-hair);  /* vertical rule between columns */
  --page-max: 1180px;            /* broadsheet page width */
  --page-pad: clamp(16px, 3vw, 40px);
}

html, body { margin: 0; }
.page { max-width: 960px; margin: 0 auto; padding: 0 var(--page-pad) 64px; }
.mast-top { display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: var(--fs-fine);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--text-muted); border-bottom: var(--rule-hair); padding: 8px 0; }
.hero { display: grid; grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px; align-items: end; margin-top: 40px; padding-bottom: 28px;
  border-bottom: var(--rule-heavy); }
.hero img { width: 100%; display: block; border: 1px solid var(--hairline); }
.hero h1 { font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 6vw, 68px); line-height: 1; margin: 0; }
.hero h1 sup { color: var(--accent); font-size: 0.45em;
  position: relative; top: -0.5em; }
.footrule { width: 90px; border-top: 2px solid var(--ink); margin: 22px 0 10px; }
.footnote { font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  line-height: 1.5; max-width: 34em; }
.footnote .m { color: var(--accent); }
.fourwords { font-family: var(--font-mono); font-size: var(--fs-kicker);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--text-muted); margin-top: 14px; }
.about { max-width: 40em; font-size: 16.5px; margin: 26px 0 0; }
.subscribe { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.subscribe a { font-family: var(--font-mono); font-size: var(--fs-apparatus);
  font-weight: 700; letter-spacing: 0.06em; text-decoration: none;
  border: 1.5px solid var(--ink); padding: 9px 16px; color: var(--text-body); }
.subscribe a:hover { color: var(--surface-page); background: var(--ink); }
.subscribe a.primary { background: var(--ink); color: var(--surface-page); }
.subscribe a.primary:hover { background: var(--accent); border-color: var(--accent); }
h2.latest { font-family: var(--font-mono); font-weight: 800;
  font-size: var(--fs-section); letter-spacing: var(--ls-caps);
  text-transform: uppercase; margin: 44px 0 0;
  border-bottom: var(--rule-hair); padding-bottom: 8px; }
.episode { border-bottom: var(--rule-hair); padding: 18px 0; }
.ep-head { display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; flex-wrap: wrap; }
.ep-head h3 { font-family: var(--font-display); font-weight: 400;
  font-size: 30px; margin: 0; }
.ep-head .dur { font-family: var(--font-mono); font-size: var(--fs-apparatus);
  color: var(--text-muted); }
.episode p { max-width: 44em; }
.chapters { display: flex; flex-wrap: wrap; gap: 6px 20px;
  font-family: var(--font-mono); font-size: var(--fs-fine);
  color: var(--text-muted); margin-top: 10px; }
.chapters .t { color: var(--accent); font-weight: 700; }
.ep-links { display: flex; gap: 18px; margin-top: 12px;
  font-family: var(--font-mono); font-size: var(--fs-apparatus); }
.listen-in { margin-top: 26px; padding-top: 18px;
  border-top: var(--rule-hair); }
.listen-head { font-family: var(--font-mono); font-size: var(--fs-kicker);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--text-muted); }
.fineprint { margin-top: 10px; font-family: var(--font-mono);
  font-size: var(--fs-fine); line-height: 1.6; color: var(--text-faint); }
.notify { margin-top: 22px; padding-top: 14px;
  border-top: var(--rule-hair); display: flex; gap: 14px;
  align-items: center; flex-wrap: wrap; font-family: var(--font-mono); }
.notify-kicker { font-size: var(--fs-fine); letter-spacing: var(--ls-caps);
  text-transform: uppercase; color: var(--text-muted); }
.notify-write { font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--ink);
  color: var(--surface-page); text-decoration: none; padding: 10px 16px; }
.disclosure { margin-top: 48px; padding-top: 16px;
  border-top: var(--rule-hair); font-size: 13.5px; color: var(--text-muted);
  max-width: 46em; line-height: 1.6; }
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .hero img { max-width: 260px; }
}
