@charset "UTF-8";
/* ==========================================================================
   PRIVATE BANKING LIFE — EDITORIAL DESIGN SYSTEM
   Build specification, September 2026 · §3 Design System
   --------------------------------------------------------------------------
   Mobile-first. Designed at 390px, scaled to full-width desktop.
   Text-first, restrained, fast. Crimson is accent-only (WCAG 2.2 AA).
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */

:root {
  /* --- Core palette (spec §3) --- */
  --charcoal:        #2B2B2B;
  --charcoal-deep:   #1C1C1C;
  --charcoal-soft:   #3B3B3B;
  --charcoal-line:   #454545;

  --cream:           #F4EFE6;
  --cream-deep:      #EAE3D5;
  --cream-line:      #E2DACB;

  --crimson:         #A6192E;
  --crimson-deep:    #87121F;
  --crimson-tint:    rgba(166, 25, 46, 0.08);
  /* Crimson lifted for AA contrast on charcoal and on the translucent hero card */
  --crimson-on-dark: #EC8794;

  --paper:           #FFFFFF;
  --grey:            #6B6B6B;

  /* --- Applied ink --- */
  --ink:             #221F1D;
  --ink-soft:        #4A4643;
  --ink-meta:        var(--grey);
  --ink-faint:       #767068;

  /* --- Surfaces --- */
  --surface:         #FBF9F5;
  --surface-card:    var(--paper);
  --surface-warm:    var(--cream);
  --rule:            #E7E1D6;
  --rule-strong:     #D8D0C1;

  /* --- On-charcoal --- */
  --on-dark:         var(--cream);
  --on-dark-soft:    rgba(244, 239, 230, 0.72);
  --on-dark-faint:   rgba(244, 239, 230, 0.62);
  --on-dark-rule:    rgba(244, 239, 230, 0.16);

  /* --- Type --- */
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', Times, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-display: clamp(1.92rem, 1.24rem + 3.10vw, 4.00rem);
  --fs-h1:      clamp(1.72rem, 1.28rem + 2.10vw, 3.15rem);
  --fs-h2:      clamp(1.34rem, 1.14rem + 1.10vw, 2.20rem);
  --fs-h3:      clamp(1.18rem, 1.06rem + 0.52vw, 1.50rem);
  --fs-h4:      clamp(1.02rem, 0.98rem + 0.20vw, 1.14rem);
  --fs-lede:    clamp(1.02rem, 0.97rem + 0.30vw, 1.30rem);
  --fs-body:    clamp(1.00rem, 0.97rem + 0.16vw, 1.125rem);
  --fs-sm:      0.9125rem;
  --fs-xs:      0.8125rem;
  --fs-kicker:  0.700rem;

  /* --- Layout --- */
  --shell:      1320px;
  --shell-wide: 1560px;
  --measure:    min(100%, 72ch);
  --measure-tight: min(100%, 62ch);
  --gutter:     clamp(16px, 4vw, 56px);

  --section-y:  clamp(34px, 5.2vw, 96px);
  --section-y-sm: clamp(24px, 3.8vw, 60px);

  --header-h:   64px;

  /* --- Shape --- */
  --r-xs: 2px;
  --r-sm: 3px;
  --r-md: 4px;
  --r-lg: 6px;
  --r-pill: 999px;

  /* --- Elevation (warm, restrained) --- */
  --sh-xs: 0 1px 2px rgba(43, 35, 22, 0.05);
  --sh-sm: 0 2px 8px rgba(43, 35, 22, 0.06);
  --sh-md: 0 10px 28px -8px rgba(43, 35, 22, 0.14);
  --sh-lg: 0 24px 56px -18px rgba(43, 35, 22, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.28s;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

* { margin: 0; padding: 0; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

main { flex: 1 0 auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.24; }
h4 { font-size: var(--fs-h4); font-family: var(--sans); font-weight: 650; letter-spacing: -0.005em; }

p { text-wrap: pretty; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

strong, b { font-weight: 650; }

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

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style-position: outside; }

hr { border: 0; border-top: 1px solid var(--rule); }

::selection { background: var(--crimson); color: var(--cream); }

/* Author display rules outrank the UA sheet, so [hidden] needs to win explicitly */
[hidden] { display: none !important; }

/* --- Focus: visible, house-coloured, never removed --- */
:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero :focus-visible,
.section-bar :focus-visible,
.page-head :focus-visible,
.article-head :focus-visible,
.subscribe-band :focus-visible,
.post-sub :focus-visible,
.one-number :focus-visible,
.ed-card :focus-visible,
.drawer :focus-visible,
.site-footer :focus-visible,
.utility-bar :focus-visible { outline-color: var(--cream); }

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--wide { max-width: var(--shell-wide); }

.shell--read {
  max-width: calc(var(--measure) + var(--gutter) * 2);
}

.section { padding-block: var(--section-y); }
.section--sm { padding-block: var(--section-y-sm); }
.section--flush-top { padding-block-start: 0; }

.section--paper  { background: var(--paper); }
.section--warm   { background: var(--cream); }
.section--surface{ background: var(--surface); }
.section--dark   { background: var(--charcoal); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.rule-top    { border-top: 1px solid var(--rule); }
.rule-bottom { border-bottom: 1px solid var(--rule); }

.stack > * + * { margin-top: var(--stack-gap, 16px); }

/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 999;
  background: var(--crimson);
  color: var(--cream);
  padding: 12px 20px;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   4. SIGNATURE TYPE DEVICES
   ========================================================================== */

/* All-caps crimson kicker — the signature device (spec §3) */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  line-height: 1.4;
}
.kicker--light { color: var(--cream); }
.kicker--muted { color: var(--ink-meta); }
.kicker--on-dark { color: var(--crimson-on-dark); }

/* Kicker with leading rule */
.kicker-rule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
}
.kicker-rule::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--crimson);
  flex: none;
}
.kicker-rule--light { color: var(--cream); }
.kicker-rule--light::before { background: var(--crimson); }

/* Meta line */
.meta {
  font-size: var(--fs-xs);
  color: var(--ink-meta);
  letter-spacing: 0.005em;
}
.meta--light { color: var(--on-dark-soft); }

.meta-dot {
  display: inline-block;
  margin-inline: 8px;
  color: var(--ink-faint);
}

/* Lede paragraph */
.lede {
  font-size: var(--fs-lede);
  line-height: 1.56;
  color: var(--ink-soft);
  max-width: var(--measure);
}
.lede--light { color: var(--on-dark-soft); }

/* Oversized serif numeral device (spec §3 Type 3) */
.numeral {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ==========================================================================
   5. SECTION BAR — signature component (spec §3)
   Charcoal band · crimson all-caps kicker · cream serif title
   ========================================================================== */

.section-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: clamp(26px, 3.4vw, 40px);
}

.section-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-bar__kicker {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson-on-dark);
}

.section-bar__title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.section-bar__lede {
  font-size: var(--fs-sm);
  color: var(--on-dark-soft);
  max-width: 64ch;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .section-bar__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .section-bar__actions { flex: none; }
}

/* Light section header (on paper / cream) */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(18px, 2.8vw, 44px);
}
.section-head h2 { max-width: 20ch; }
.section-head p {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.62;
}
.section-head--center {
  align-items: center;
  text-align: center;
}
.section-head--center h2, .section-head--center p { margin-inline: auto; }

@media (min-width: 860px) {
  .section-head--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .section-head--split > * { margin: 0; }
  .section-head--split .section-head__text { display: grid; gap: 12px; }
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform 0.12s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.btn__arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--crimson);
  color: var(--cream);
}
.btn--primary:hover { background: var(--crimson-deep); }

.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--dark:hover { background: var(--charcoal-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover {
  border-color: var(--charcoal);
  background: var(--paper);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--on-dark-rule);
}
.btn--ghost-light:hover {
  border-color: var(--cream);
  background: rgba(244, 239, 230, 0.08);
}

.btn--sm { padding: 10px 16px; font-size: var(--fs-xs); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Inline text link, underlined (AA rule, spec §8) */
.link {
  color: var(--crimson);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.link:hover { color: var(--crimson-deep); text-decoration-thickness: 2px; }

.link-quiet {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rule-strong);
}
.link-quiet:hover { text-decoration-color: var(--crimson); color: var(--crimson); }

.link-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-block: 4px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 0.01em;
}
.link-back:hover { color: var(--crimson-deep); }
.link-back span:first-child { transition: transform var(--dur) var(--ease); }
.link-back:hover span:first-child { transform: translateX(-3px); }

/* Arrow link used on cards */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-xs);
  font-weight: 650;
  color: var(--crimson);
}
.arrow-link span { transition: transform var(--dur) var(--ease); }
.arrow-link:hover span { transform: translateX(3px); }

/* ==========================================================================
   7. SUBSCRIBE BAND — signature component (spec §3)
   ========================================================================== */

.subform { width: 100%; }

.subform__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subform__field {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.subform input[type="email"] {
  width: 100%;
  height: var(--field-h, 50px);
  padding: 0 15px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.subform input[type="email"]::placeholder { color: var(--ink-faint); }
.subform input[type="email"]:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-tint);
}
.subform input[type="email"][aria-invalid="true"] {
  border-color: var(--crimson);
}

/* The button matches the field exactly, because the two read as one control
   the moment they sit on the same row. */
.subform .btn {
  height: var(--field-h, 50px);
  padding-block: 0;
  white-space: nowrap;
}

.subform__note {
  margin-top: 11px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink-meta);
}

/* What went wrong, said in place rather than in a toast that slides away
   while the reader is still looking at the field. */
.subform__msg {
  margin-top: 10px;
  padding: 9px 12px;
  border-left: 2px solid var(--crimson);
  background: var(--crimson-tint);
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink);
}

/* A field only a script would fill: out of the layout, out of the tab order,
   and out of the accessibility tree. Not display:none, which some bots read
   as a signal in itself. */
.subform__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.subform.is-busy input[type="email"] { opacity: 0.7; }
.subform.is-busy .btn { cursor: progress; }

/* --- on charcoal --- */
.subform--on-dark input[type="email"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--on-dark-rule);
  color: var(--cream);
}
.subform--on-dark input[type="email"]::placeholder { color: var(--on-dark-faint); }
.subform--on-dark input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(244, 239, 230, 0.14);
}
.subform--on-dark input[type="email"][aria-invalid="true"] {
  border-color: var(--crimson-on-dark);
}
.subform--on-dark .subform__note { color: var(--on-dark-soft); }
.subform--on-dark .subform__msg {
  border-left-color: var(--crimson-on-dark);
  background: rgba(232, 115, 127, 0.12);
  color: var(--cream);
}

/* --- on paper --- */
.subform--on-light input[type="email"] { background: var(--paper); }

/* --- the subscribe page, where the form is the entire point of the page --- */
.subform--lg { --field-h: 56px; }
.subform--lg input[type="email"] { font-size: 1.0625rem; }
.subform--lg .subform__note { margin-top: 14px; }

/* Side by side as soon as there is room for both without either cramping.

   The question is how much room the FORM has, not how wide the window is:
   the same form sits in a 300px hero card and across a 620px subscribe page,
   and a viewport media query cannot tell those apart. It answered for the
   window, so the hero card got a row layout it had no room for and squeezed
   the field down to a few characters. A container query asks the right
   thing. */
.subform { container-type: inline-size; }

@container (min-width: 420px) {
  .subform__row { flex-direction: row; align-items: stretch; }
  .subform__row .btn { flex: none; }
}

/* Browsers without container queries keep the previous behaviour rather than
   a permanently stacked form. */
@supports not (container-type: inline-size) {
  @media (min-width: 900px) {
    .subform__row { flex-direction: row; align-items: stretch; }
    .subform__row .btn { flex: none; }
  }
}

/* Administrator-only note. Never shown to a visitor. */
.subform__admin-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid var(--crimson);
  background: rgba(166, 25, 46, 0.09);
  font-size: var(--fs-xs);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}
.subscribe-band .subform__admin-note,
.hero .subform__admin-note,
.beehiiv-form--on-dark ~ .subform__admin-note {
  color: var(--on-dark-soft);
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--crimson-on-dark);
}

/* Trust bullets under a form */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  font-size: var(--fs-xs);
  color: var(--ink-meta);
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
}
.trust-row svg { width: 13px; height: 13px; color: var(--crimson); flex: none; }
.trust-row--light { color: var(--on-dark-soft); }
.trust-row--light svg { color: var(--crimson-on-dark); }

/* Full subscribe band block */
.subscribe-band {
  background: var(--charcoal);
  color: var(--on-dark);
  padding-block: clamp(30px, 4.6vw, 78px);
  position: relative;
  overflow: hidden;
}
.subscribe-band::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--crimson);
}
.subscribe-band__grid {
  display: grid;
  gap: clamp(20px, 3vw, 52px);
  position: relative;
}
.subscribe-band h2 {
  color: var(--cream);
  font-size: var(--fs-h2);
  margin-block: 14px 12px;
  max-width: 18ch;
}
.subscribe-band p { color: var(--on-dark-soft); max-width: 52ch; font-size: var(--fs-sm); }
.subscribe-band__copy { min-width: 0; }
.subscribe-band__copy .kicker { display: inline-block; margin-bottom: 2px; }
.subscribe-band__form { max-width: 540px; width: 100%; }

@media (min-width: 940px) {
  .subscribe-band__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.subscribe-band--center .subscribe-band__grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.subscribe-band--center h2,
.subscribe-band--center p { max-width: 26ch; margin-inline: auto; }
.subscribe-band--center p { max-width: 54ch; }
.subscribe-band--center .trust-row { justify-content: center; }

/* ==========================================================================
   8. UTILITY BAR + HEADER
   ========================================================================== */

.utility-bar {
  background: var(--charcoal-deep);
  color: var(--on-dark-soft);
  font-size: 0.6875rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  padding-block: 8px;
}
.utility-bar__left,
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.utility-bar__right { display: none; }
.utility-bar a { color: var(--on-dark-soft); }
.utility-bar a:hover { color: var(--cream); }

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cream);
  font-weight: 650;
  white-space: nowrap;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 0 rgba(166, 25, 46, 0.7);
  animation: pulse 2.4s var(--ease) infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(166, 25, 46, 0.65); }
  70%  { box-shadow: 0 0 0 7px rgba(166, 25, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 25, 46, 0); }
}

.utility-bar__date {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 760px) {
  .utility-bar__right { display: flex; }
}

/* --- Site header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 2px 16px -6px rgba(43, 35, 22, 0.18);
  background: rgba(251, 249, 245, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding-block: 10px;
}

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex: none;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  border-radius: var(--r-xs);
}
.brand__logo {
  display: block;
  width: auto;
  max-width: min(320px, 60vw);
  height: 40px;          /* overridden inline from the setting */
  object-fit: contain;
  flex: none;
}
@media (max-width: 480px) {
  /* Never let a wide logo crowd out the menu button. */
  .brand__logo { max-width: 52vw; }
}

.brand__text { display: grid; min-width: 0; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.0rem, 0.9rem + 0.4vw, 1.22rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  white-space: nowrap;
}
.brand__tag {
  display: none;
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-meta);
  font-weight: 600;
  margin-top: 3px;
}
@media (min-width: 480px) { .brand__tag { display: block; } }

/* Desktop nav */
.site-nav { display: none; }
@media (min-width: 1060px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 26px);
  }
}
.site-nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 550;
  color: var(--ink-soft);
  padding-block: 6px;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a.is-current::after { transform: scaleX(1); }
.site-nav a.is-current { color: var(--ink); font-weight: 650; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-actions .btn { display: none; }
@media (min-width: 620px) { .header-actions .btn { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 9px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  flex: none;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity 0.16s linear, width var(--dur) var(--ease);
}
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 72%; }
.nav-toggle span:nth-child(3) { width: 100%; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1060px) { .nav-toggle { display: none; } }

/* ==========================================================================
   9. MOBILE DRAWER
   ========================================================================== */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(28, 28, 28, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 80;
  width: min(400px, 90vw);
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--on-dark-rule);
}
.drawer__head .monogram { background: var(--cream); color: var(--charcoal); }
.drawer__head .brand__name { color: var(--cream); }
.drawer__head .brand__tag { color: var(--on-dark-faint); }

.drawer__close {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--on-dark-rule);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  flex: none;
  transition: background-color var(--dur) var(--ease);
}
.drawer__close:hover { background: rgba(255,255,255,0.08); }

.drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 8px var(--gutter) 20px;
  flex: 1;
}
.drawer__nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--on-dark-rule);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.drawer__nav a:hover,
.drawer__nav a:focus-visible { padding-left: 8px; }
.drawer__nav a.is-current { color: var(--crimson-on-dark); }
.drawer__nav .idx {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--on-dark-faint);
  flex: none;
}

.drawer__foot {
  padding: 20px var(--gutter) 28px;
  border-top: 1px solid var(--on-dark-rule);
  background: var(--charcoal-deep);
}
.drawer__foot p {
  margin-top: 14px;
  font-size: var(--fs-xs);
  color: var(--on-dark-soft);
  line-height: 1.55;
}

/* ==========================================================================
   10. HERO
   ========================================================================== */

.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--on-dark);
  overflow: hidden;
  padding-block: clamp(28px, 5vw, 92px);
}
.hero::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson) 34%, transparent 34%);
}

/* Map-dot texture device (spec §3 Type 3) */
.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.55) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: radial-gradient(120% 80% at 78% 20%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 80% at 78% 20%, #000 0%, transparent 72%);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(20px, 3vw, 52px);
}

.hero__byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border: 1px solid var(--on-dark-rule);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  color: var(--on-dark-soft);
  margin-bottom: 16px;
}
.hero__byline strong { color: var(--cream); font-weight: 600; }
.hero__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.6875rem;
  font-weight: 700;
  flex: none;
}

.hero h1 {
  font-size: var(--fs-display);
  color: var(--cream);
  letter-spacing: -0.028em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 14px;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--crimson-on-dark);
}

.hero__lede {
  font-size: var(--fs-lede);
  color: var(--on-dark-soft);
  line-height: 1.52;
  max-width: 54ch;
  margin-bottom: 22px;
}

.hero__form-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--on-dark-rule);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__form-card .kicker { color: var(--crimson-on-dark); margin-bottom: 12px; }
.hero__promise {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--on-dark-soft);
  margin: 0 0 16px;
  max-width: 34ch;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 20px;
  border-top: 1px solid var(--on-dark-rule);
  padding-top: 18px;
}
.hero__stat { display: grid; gap: 4px; }
.hero__stat .num {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat .lbl {
  font-size: clamp(0.625rem, 0.58rem + 0.16vw, 0.6875rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
  .hero__stats { grid-column: 1 / -1; }
}

/* ==========================================================================
   11. SIGNAL CARDS — the three editions
   ========================================================================== */

.signals-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .signals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .signals-grid { grid-template-columns: repeat(3, 1fr); } }

.signal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.signal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.signal-card:hover {
  border-color: var(--rule-strong);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.signal-card:hover::before { transform: scaleX(1); }

.signal-card__day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.signal-card__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.85;
  color: var(--rule-strong);
  letter-spacing: -0.04em;
}
.signal-card h3 { margin-bottom: 2px; }
.signal-card p {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.62;
  flex: 1;
}
.signal-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-xs);
  color: var(--ink-meta);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--cream);
  border: 1px solid var(--cream-line);
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.tag--crimson {
  background: var(--crimson-tint);
  border-color: rgba(166, 25, 46, 0.22);
  color: var(--crimson-deep);
}

/* ==========================================================================
   12. EDITION CARDS — signature component (spec §3)
   ========================================================================== */

.editions-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .editions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .editions-grid { grid-template-columns: repeat(3, 1fr); } }

/* Charcoal edition card (house signature) */
.ed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--charcoal);
  color: var(--on-dark);
  border-radius: var(--r-md);
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ed-card::before {
  content: '';
  position: absolute;
  inset-inline: 0; top: 0;
  height: 3px;
  background: var(--crimson);
  z-index: 1;
}
.ed-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.ed-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ed-card__mark {
  font-family: var(--serif);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.ed-card__date {
  font-size: var(--fs-xs);
  color: var(--on-dark-faint);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ed-card .kicker { color: var(--crimson-on-dark); }
.ed-card h3 {
  font-size: clamp(1.14rem, 1.0rem + 0.6vw, 1.42rem);
  color: var(--cream);
  line-height: 1.24;
}
.ed-card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
}
.ed-card p {
  font-size: var(--fs-sm);
  color: var(--on-dark-soft);
  line-height: 1.6;
  flex: 1;
}
.ed-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--on-dark-rule);
  font-size: var(--fs-xs);
  color: var(--on-dark-faint);
}
.ed-card__foot .arrow-link { color: var(--crimson-on-dark); }

/* Paper edition card — used in the archive */
.ed-card--paper {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
}
.ed-card--paper::before { background: var(--crimson); opacity: 0; transition: opacity var(--dur) var(--ease); }
.ed-card--paper:hover::before { opacity: 1; }
.ed-card--paper:hover { box-shadow: var(--sh-md); }
.ed-card--paper .ed-card__mark,
.ed-card--paper .ed-card__date { color: var(--ink-meta); }
.ed-card--paper .kicker { color: var(--crimson); }
.ed-card--paper h3 { color: var(--ink); }
.ed-card--paper p { color: var(--ink-soft); }
.ed-card--paper .ed-card__foot {
  border-top-color: var(--rule);
  color: var(--ink-meta);
}
.ed-card--paper .ed-card__foot .arrow-link { color: var(--crimson); }

/* Featured (first card spans two columns on wide screens) */
@media (min-width: 1060px) {
  .editions-grid--featured { grid-template-columns: repeat(3, 1fr); }
  .editions-grid--featured > :first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .editions-grid--featured > :first-child h3 {
    font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.05rem);
    max-width: 20ch;
  }
  .editions-grid--featured > :first-child p { font-size: var(--fs-body); max-width: 58ch; }
}

/* ==========================================================================
   13. METHOD / PULL QUOTE
   ========================================================================== */

/* Read callout — signature component (spec §3) */
.read-callout {
  border-left: 3px solid var(--crimson);
  padding: 6px 0 6px clamp(18px, 2.6vw, 30px);
  margin-block: clamp(28px, 3.6vw, 44px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.16rem, 1.0rem + 0.8vw, 1.6rem);
  line-height: 1.44;
  color: var(--ink);
  letter-spacing: -0.012em;
  max-width: 40ch;
}
.read-callout cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-meta);
}
.read-callout--light { color: var(--cream); }
.read-callout--light cite { color: var(--on-dark-faint); }

.method-grid {
  display: grid;
  gap: clamp(28px, 4vw, 60px);
}
@media (min-width: 940px) {
  .method-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}

.pillars {
  display: grid;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pillar {
  display: grid;
  gap: 6px;
  background: var(--paper);
  padding: clamp(20px, 2.4vw, 26px);
}
.pillar__idx {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--crimson);
}
.pillar h3,
.pillar h4 { font-size: 1.0rem; font-family: var(--sans); font-weight: 650; letter-spacing: -0.005em; color: var(--ink); }
.pillar p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.6; }

/* ==========================================================================
   14. COVERAGE — map-dot device, nine markets
   ========================================================================== */

.coverage {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}
@media (min-width: 1000px) {
  .coverage { grid-template-columns: 0.92fr 1.08fr; align-items: center; }
}

.coverage__map {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
}
.coverage__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.35) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.35;
}
.coverage__map svg { position: relative; width: 100%; height: auto; }

.markets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.market {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--paper);
  padding: 15px 16px;
  transition: background-color var(--dur) var(--ease);
  text-align: left;
  width: 100%;
}
.market:hover { background: var(--cream); }
.market__name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  min-width: 0;
}
.market__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--crimson);
  flex: none;
}
.market__time {
  font-size: var(--fs-xs);
  color: var(--ink-meta);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.corridor-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.58;
}
.corridor-note strong { color: var(--ink); }

/* ==========================================================================
   15. PAGE MASTHEAD (interior pages)
   ========================================================================== */

.page-head {
  background: var(--charcoal);
  color: var(--on-dark);
  padding-block: clamp(26px, 4.2vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: '';
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson) 26%, transparent 26%);
}
.page-head__texture {
  position: absolute; inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(244,239,230,0.5) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(100% 90% at 88% 10%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(100% 90% at 88% 10%, #000 0%, transparent 70%);
}
.page-head__inner { position: relative; }
.page-head h1 {
  color: var(--cream);
  margin-block: 14px 14px;
  max-width: 18ch;
}
.page-head p {
  color: var(--on-dark-soft);
  font-size: var(--fs-lede);
  line-height: 1.55;
  max-width: 58ch;
}
.page-head--center { text-align: center; }
.page-head--center h1, .page-head--center p { margin-inline: auto; }

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--on-dark-faint);
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--on-dark-soft); display: inline-block; padding-block: 4px; }
.crumbs a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.crumbs span[aria-current] { color: var(--cream); }

/* ==========================================================================
   16. ARCHIVE FILTER + SEARCH
   ========================================================================== */

.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(251, 249, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  padding-block: 14px;
}
.filter-bar__inner {
  display: grid;
  gap: 12px;
}
@media (min-width: 940px) {
  .filter-bar__inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
  }
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.chips::-webkit-scrollbar { display: none; }
@media (min-width: 940px) {
  .chips { margin-inline: 0; padding-inline: 0; flex-wrap: wrap; overflow: visible; }
}

.chip {
  flex: none;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.chip:hover { border-color: var(--charcoal); color: var(--ink); }
.chip.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.market-filter {
  width: 100%;
  padding: 10px 34px 10px 14px;
  font-size: 0.9125rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 15px;
  cursor: pointer;
}
.market-filter:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-tint);
}
@media (min-width: 940px) { .market-filter { width: 180px; } }

.search {
  position: relative;
  width: 100%;
}
@media (min-width: 940px) { .search { width: 320px; } }
.search svg {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--ink-faint);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  font-size: 0.9375rem;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-pill);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.search input::placeholder { color: var(--ink-faint); }
.search input:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-tint);
}

.result-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px 20px;
  font-size: var(--fs-xs);
  color: var(--ink-meta);
}

.empty-state {
  padding: clamp(44px, 6vw, 72px) var(--gutter);
  text-align: center;
  background: var(--paper);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--r-md);
}
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; font-size: var(--fs-sm); }

/* ==========================================================================
   17. ARTICLE / EDITION PAGE
   ========================================================================== */

.read-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  height: 3px;
  width: 0;
  background: var(--crimson);
  transition: width 0.1s linear;
}

.article-head {
  background: var(--charcoal);
  color: var(--on-dark);
  padding-block: clamp(22px, 3.6vw, 60px);
  position: relative;
}
.article-head::after {
  content: '';
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson) 22%, transparent 22%);
}
.article-head .link-back {
  display: flex;
  width: fit-content;
  color: var(--crimson-on-dark);
  margin-bottom: 18px;
}
.article-head .kicker { color: var(--crimson-on-dark); }
.article-head h1 {
  color: var(--cream);
  font-size: var(--fs-h1);
  margin-block: 12px 20px;
  max-width: 22ch;
  letter-spacing: -0.026em;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding-top: 18px;
  border-top: 1px solid var(--on-dark-rule);
  font-size: var(--fs-xs);
  color: var(--on-dark-soft);
}
.article-byline strong { color: var(--cream); font-weight: 600; }
.article-byline time::before,
.article-byline .read-time::before {
  content: '·';
  margin-right: 13px;
  color: var(--on-dark-faint);
}
.article-byline .hero__avatar { width: 30px; height: 30px; }

/* Prose */
.prose {
  font-size: var(--fs-body);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: var(--measure);
}
.prose > * + * { margin-top: 1.15em; }
.prose h2 {
  font-size: clamp(1.32rem, 1.14rem + 0.8vw, 1.75rem);
  color: var(--ink);
  margin-top: 1.9em;
  margin-bottom: 0.1em;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.prose h3 {
  font-size: var(--fs-h3);
  color: var(--ink);
  margin-top: 1.6em;
  margin-bottom: 0.1em;
}
.prose p strong { color: var(--ink); }
.prose a:not(.btn) {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 550;
}
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li + li { margin-top: 0.5em; }
.prose li::marker { color: var(--crimson); }

.prose .section-dek {
  font-family: var(--serif);
  font-size: 1.05em;
  font-style: italic;
  color: var(--ink-meta);
  margin-top: 0.35em;
}

.prose .edition-figure {
  margin-block: clamp(22px, 3vw, 34px);
}
.prose .edition-figure img {
  width: 100%;
  border-radius: var(--r-sm);
}

.article-lede {
  font-family: var(--serif);
  font-size: var(--fs-lede);
  line-height: 1.52;
  color: var(--ink);
  font-weight: 400;
}

/* Numbered move blocks (Monday edition) */
.move-list { display: grid; gap: 16px; margin-block: clamp(28px, 3.4vw, 40px); }
.move {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.6vw, 28px);
  display: grid;
  gap: 12px;
}
.move__num {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  right: clamp(16px, 2.2vw, 24px);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.4rem);
  font-weight: 700;
  line-height: 0.8;
  color: var(--rule-strong);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.move h3 {
  font-size: clamp(1.08rem, 1.0rem + 0.42vw, 1.3rem);
  color: var(--ink);
  max-width: 30ch;
  position: relative;
}
.move p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.66; }
.move__signal {
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-sm);
  color: var(--ink);
  line-height: 1.6;
}
.move__signal b {
  display: block;
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 6px;
}

/* One Number — oversized serif numeral device (spec §3 Type 3) */
.one-number {
  display: grid;
  gap: 14px;
  background: var(--charcoal);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 42px);
  margin-block: clamp(30px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.one-number::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(244,239,230,0.32) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.4;
  mask-image: linear-gradient(105deg, transparent 45%, #000 100%);
  -webkit-mask-image: linear-gradient(105deg, transparent 45%, #000 100%);
}
.one-number > * { position: relative; }
.one-number .kicker { color: var(--crimson-on-dark); }
.one-number .num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 2.2rem + 5.4vw, 6rem);
  font-weight: 700;
  line-height: 0.86;
  color: var(--cream);
  letter-spacing: -0.045em;
  font-variant-numeric: lining-nums;
}
.one-number .lbl {
  font-size: var(--fs-sm);
  color: var(--on-dark-soft);
  line-height: 1.6;
  max-width: 54ch;
}

/* Sources block */
.sources {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.8vw, 30px);
  margin-block: clamp(30px, 4vw, 44px);
}
.sources h3 {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
}
.sources ol {
  padding-left: 1.3em;
  display: grid;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.6;
}
.sources li::marker { color: var(--crimson); font-weight: 700; }

/* Post-article subscribe */
.post-sub {
  background: var(--charcoal);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 42px);
  margin-block: clamp(34px, 4.4vw, 56px);
  position: relative;
  overflow: hidden;
}
.post-sub::before {
  content: '';
  position: absolute;
  inset-inline: 0; top: 0;
  height: 3px;
  background: var(--crimson);
}
.post-sub .kicker { color: var(--crimson-on-dark); }
.post-sub h3 {
  color: var(--cream);
  font-size: clamp(1.24rem, 1.08rem + 0.8vw, 1.66rem);
  margin-block: 12px 10px;
  max-width: 24ch;
}
.post-sub > p {
  font-size: var(--fs-sm);
  color: var(--on-dark-soft);
  max-width: 52ch;
  margin-bottom: 22px;
}

/* Next/prev editions */
.pager {
  display: grid;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: clamp(28px, 3.6vw, 44px);
}
@media (min-width: 700px) { .pager { grid-template-columns: 1fr 1fr; } }
.pager a {
  background: var(--paper);
  padding: clamp(18px, 2.4vw, 24px);
  display: grid;
  gap: 6px;
  transition: background-color var(--dur) var(--ease);
}
.pager a:hover { background: var(--cream); }
.pager .kicker { font-size: 0.65rem; }
.pager strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.32;
}
.pager .pager__next { text-align: right; }

/* ==========================================================================
   18. CONTENT CARDS (about / standards / legal / contact)
   ========================================================================== */

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 34px);
}
.card--lg { border-radius: var(--r-lg); padding: clamp(26px, 3.6vw, 44px); }

.rule-list { display: grid; gap: 16px; }
.rule-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: clamp(22px, 2.8vw, 30px);
  display: grid;
  gap: 10px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.rule-item:hover { box-shadow: var(--sh-sm); transform: translateX(2px); }
.rule-item h2 { font-size: clamp(1.14rem, 1.02rem + 0.5vw, 1.4rem); }
.rule-item p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.68; }

.author-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  flex: none;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 700;
  border-radius: 50%;
}
.author-head h2 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem); margin-bottom: 3px; }

.contact-block {
  display: grid;
  gap: 8px;
  padding-block: 24px;
  border-bottom: 1px solid var(--rule);
}
.contact-block:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-block:first-child { padding-top: 0; }
.contact-block h2 { font-size: clamp(1.14rem, 1.02rem + 0.5vw, 1.4rem); }
.contact-block p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.66; }
.contact-block .email {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.4rem);
  font-weight: 600;
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-word;
}
.contact-block .email:hover { color: var(--crimson-deep); }

.notice {
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}
.notice p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ==========================================================================
   19. FOCUS PAGES (subscribe / thanks / confirmed)
   ========================================================================== */

body.is-focus-page { background: var(--charcoal); }
body.is-focus-page .site-footer { background: var(--charcoal-deep); }

/* The masthead on a focus page: same charcoal as the page, no border, no
   blur, no shadow when stuck. Only the wordmark, centred, as specification
   5.2 asks — "no navigation distractions beyond the logo home link". */
.site-header--focus {
  position: static;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
}
.site-header--focus .site-header__inner {
  justify-content: center;
  min-height: 0;
  padding-block: clamp(22px, 3.4vw, 38px);
}
.site-header--focus .brand { gap: 12px; }
.site-header--focus .brand__name { color: var(--cream); }
.site-header--focus .brand__tag { color: var(--on-dark-faint); }
.site-header--focus .monogram {
  background: var(--cream);
  color: var(--charcoal);
}
.site-header--focus .brand:hover .brand__name { color: var(--paper); }

/* With the header no longer drawing its own line, the card carries the top
   of the page, so it needs less air above it than a full masthead would. */
body.is-focus-page .focus-main { padding-top: clamp(4px, 1.4vw, 18px); }

/* No footer columns on these pages, so the disclosure is the first thing in
   the footer and should not sit at the bottom of 64px of nothing. */
body.is-focus-page .site-footer { padding-top: clamp(28px, 4vw, 48px); }
body.is-focus-page .disclosure { margin-top: 0; }


.focus-main {
  display: grid;
  place-items: center;
  padding-block: clamp(36px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}
.focus-main::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(244,239,230,0.34) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.5;
  mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}

.focus-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.focus-card::before {
  content: '';
  position: absolute;
  inset-inline: 0; top: 0;
  height: 4px;
  background: var(--crimson);
}
.focus-card h1 {
  font-size: clamp(1.6rem, 1.24rem + 1.6vw, 2.4rem);
  margin-block: 14px 14px;
  letter-spacing: -0.024em;
}
.focus-card > p { color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.66; }

/* The subscribe page carries one job and should give it the room. */
.focus-card--lg { max-width: 660px; }
.focus-card--lg h1 { margin-block: 12px 16px; }
.focus-card--lg > p { font-size: 1.0125rem; }

/* The quiet line that closes a focus card: a rule, then small print. */
.focus-card__foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--ink-meta);
}

.focus-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.value-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.value-list li {
  display: flex;
  gap: 11px;
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.58;
}
.value-list svg { width: 15px; height: 15px; color: var(--crimson); flex: none; margin-top: 4px; }
.value-list strong { color: var(--ink); }

.pick-list { display: grid; gap: 10px; margin-block: 24px 20px; }
.pick-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  transition: all var(--dur) var(--ease);
}
.pick-list a:hover {
  background: var(--cream);
  border-color: var(--rule-strong);
  transform: translateX(3px);
}
.pick-list a span:last-child { color: var(--crimson); flex: none; }

/* ==========================================================================
   20. COMPENDIUM — ghosted document preview (spec §5.4)
   ========================================================================== */

.doc-stack {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  perspective: 1200px;
  margin-block: clamp(20px, 3vw, 34px);
  min-height: 260px;
}
.ghost-page {
  width: clamp(120px, 26vw, 190px);
  aspect-ratio: 3 / 4;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  padding: clamp(12px, 1.8vw, 18px);
  display: grid;
  align-content: start;
  gap: 6px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ghost-page:nth-child(1) { transform: rotate(-7deg) translateX(14px) scale(0.9); transform-origin: bottom right; }
.ghost-page:nth-child(2) { transform: translateY(-14px); z-index: 2; box-shadow: var(--sh-lg); }
.ghost-page:nth-child(3) { transform: rotate(7deg) translateX(-14px) scale(0.9); transform-origin: bottom left; }
.doc-stack:hover .ghost-page:nth-child(1) { transform: rotate(-11deg) translateX(4px) scale(0.92); }
.doc-stack:hover .ghost-page:nth-child(3) { transform: rotate(11deg) translateX(-4px) scale(0.92); }
.doc-stack:hover .ghost-page:nth-child(2) { transform: translateY(-20px); }

.ghost-page .gk {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
}
.ghost-page .gt {
  font-family: var(--serif);
  font-size: clamp(0.62rem, 1.4vw, 0.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
}
.ghost-page .gl { height: 3px; border-radius: 2px; background: var(--cream-deep); }
.ghost-page .gl--crimson { background: var(--crimson); opacity: 0.65; }

.feature-grid {
  display: grid;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 760px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--paper);
  padding: clamp(22px, 2.6vw, 28px);
  display: grid;
  gap: 8px;
  align-content: start;
}
.feature h2,
.feature h3 { font-size: 1.06rem; }
.feature p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.62; }

/* ==========================================================================
   21. 404
   ========================================================================== */

.err-num {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 2.4rem + 9vw, 9rem);
  font-weight: 700;
  line-height: 0.84;
  color: var(--crimson);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.btn-row--center { justify-content: center; }

/* ==========================================================================
   22. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--charcoal);
  color: var(--on-dark-soft);
  padding-block: clamp(40px, 5vw, 68px) 0;
  margin-top: auto;
}

.footer-top {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 3.6vw, 40px);
  border-bottom: 1px solid var(--on-dark-rule);
}
@media (min-width: 860px) {
  .footer-top { grid-template-columns: minmax(240px, 1fr) 1.4fr; }
}

.footer-brand .monogram { background: var(--cream); color: var(--charcoal); }
.footer-brand .brand__name { color: var(--cream); }
.footer-brand > p {
  margin-top: 14px;
  font-size: var(--fs-sm);
  color: var(--on-dark-soft);
  max-width: 34ch;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.footer-nav h3,
.footer-nav h4 {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 14px;
}
.footer-nav ul { list-style: none; display: grid; gap: 4px; }
.footer-nav a {
  display: inline-block;
  padding-block: 4px;
  font-size: 0.9125rem;
  color: var(--on-dark-soft);
}
.footer-nav a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

/* The standing disclosure line — spec §6, verbatim, every page */
.disclosure {
  padding-block: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--on-dark-rule);
}
.disclosure__kicker {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson-on-dark);
  margin-bottom: 10px;
  display: block;
}
.disclosure p {
  font-size: var(--fs-sm);
  line-height: 1.68;
  color: var(--on-dark-soft);
  max-width: 92ch;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-block: 22px 28px;
  font-size: var(--fs-xs);
  color: var(--on-dark-faint);
}
@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-block: 5px;
  color: var(--on-dark-soft);
  font-weight: 550;
}
.footer-social a:hover { color: var(--cream); }
.footer-social svg { width: 15px; height: 15px; }

/* ==========================================================================
   23. TOAST
   ========================================================================== */

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 200;
  transform: translate(-50%, 130%);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(440px, calc(100vw - 32px));
  padding: 13px 18px;
  background: var(--charcoal-deep);
  color: var(--cream);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-lg);
  font-size: var(--fs-xs);
  line-height: 1.45;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.toast__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--crimson);
  flex: none;
}

/* ==========================================================================
   24. MOTION / REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   25. PRINT
   ========================================================================== */

@media print {
  .site-header, .utility-bar, .drawer, .drawer-backdrop, .toast,
  .subscribe-band, .post-sub, .filter-bar, .read-progress, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .article-head, .page-head { background: #fff !important; color: #000 !important; }
  .article-head h1, .page-head h1 { color: #000 !important; }
  a { text-decoration: underline; }
  .prose { max-width: none; }
}


/* ==========================================================================
   26. ICONS
   Inline SVG on a 24-unit grid. Sized in px at the call site so an icon
   always matches the text it sits beside rather than scaling with it.
   ========================================================================== */

.pbl-icon {
  display: inline-block;
  vertical-align: -0.14em;
  flex: none;
  stroke: currentColor;
  fill: none;
}
.pbl-icon--linkedin,
.pbl-icon--x { fill: currentColor; stroke: none; }

/* Arrows inside buttons and links travel on hover, matching .btn__arrow */
.btn .pbl-icon,
.arrow-link .pbl-icon,
.link-back .pbl-icon {
  transition: transform var(--dur) var(--ease);
}
.btn:hover .pbl-icon--arrow-right,
.arrow-link:hover .pbl-icon--arrow-right { transform: translateX(3px); }
.link-back:hover .pbl-icon--arrow-left  { transform: translateX(-3px); }

.value-list .pbl-icon,
.trust-row .pbl-icon { color: var(--crimson); }
.trust-row--light .pbl-icon { color: var(--crimson-on-dark); }

.search .pbl-icon {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  pointer-events: none;
}

/* ==========================================================================
   27. THE BEEHIIV FORM
   The v3 embed injects its form into this container — same document, not an
   iframe — so it inherits the page's font and can be constrained here.
   ========================================================================== */

/* Beehiiv's own frame — only rendered while no API key is saved.

   Nothing inside it can be styled from here: it is a document on another
   origin, and the selectors that used to sit in this file never applied to
   anything. What is left is what the parent page does control — how much
   room the frame gets, and what surrounds it.

   `slim=true` asks Beehiiv for the field and button alone. Measured against
   the live form, that lays out as a single 52px row. */
.beehiiv-form {
  width: 100%;
  max-width: 540px;
  min-height: 52px;
}
.subscribe-band--center .beehiiv-form { margin-inline: auto; }

.beehiiv-form__frame {
  width: 100%;
  height: 52px;
  border: 0;
  margin: 0;
  display: block;
  background: transparent;
  color-scheme: light;
}

/* Beehiiv keeps the field and button on one row at every width, so the
   height holds; a little more room on a phone absorbs a larger tap target. */
@media (max-width: 520px) {
  .beehiiv-form,
  .beehiiv-form__frame { min-height: 56px; height: 56px; }
}

/* On charcoal the frame's white field is the only light thing in the band,
   so it is given a quiet edge rather than being left to float. */
.beehiiv-form--on-dark {
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--on-dark-rule);
  border-radius: var(--r-sm);
}

.subform__note--on-dark { color: var(--on-dark-soft); }



/* ==========================================================================
   28. TYPOGRAPHIC REFINEMENT
   ========================================================================== */

/* Source Serif 4 is an optical-size variable face: let headings use the
   display cut and body text the text cut, which is the whole point of it. */
h1, h2, .hero h1, .section-bar__title, .focus-card h1, .article-head h1 {
  font-variation-settings: 'opsz' 60;
}
.prose, .lede, .article-lede, .read-callout {
  font-variation-settings: 'opsz' 14;
}

/* Figures that line up in columns should not shift as they change */
.ed-card__date, .market__time, .hero__stat .num,
.one-number .num, .err-num, .pager .kicker, time {
  font-variant-numeric: tabular-nums lining-nums;
}

/* Real small caps for the kicker where the face offers them */
.kicker, .kicker-rule, .section-bar__kicker, .disclosure__kicker {
  font-feature-settings: 'cpsp' 1;
}


/* ==========================================================================
   29. SMALL SCREENS
   The fluid scale is tuned for the whole range; below 560px it still leaves
   more air than a phone wants, so the rhythm tightens once more here.
   ========================================================================== */

@media (max-width: 560px) {
  .hero { padding-block: 26px 30px; }
  .hero__grid { gap: 18px; }
  .hero h1 { max-width: none; }
  .hero__lede { margin-bottom: 18px; }
  .hero__form-card { padding: 18px; }
  .hero__stats { margin-top: 18px; padding-top: 16px; gap: 12px; }

  .section { padding-block: 32px; }
  .section--sm { padding-block: 24px; }
  .section-head { margin-bottom: 18px; gap: 8px; }
  .section-bar { padding-block: 22px; }

  .signals-grid, .editions-grid { gap: 12px; }
  .signal-card, .ed-card { padding: 18px; }
  .card, .card--lg { padding: 20px 18px; }
  .rule-item { padding: 18px 16px; }

  .subscribe-band { padding-block: 30px; }
  .subscribe-band h2 { max-width: none; }

  .prose > * + * { margin-top: 1em; }
  .read-callout { margin-block: 22px; padding-left: 14px; }
  .one-number { padding: 22px 18px; margin-block: 24px; }
  .sources { padding: 20px 18px; margin-block: 24px; }
  .post-sub { padding: 22px 18px; margin-block: 28px; }

  .footer-top { gap: 24px; padding-bottom: 24px; }
  .site-footer { padding-block: 30px 0; }
}


/* ==========================================================================
   30. EDITION CARD
   A plain post card: image, day, headline, one line, date and read time.
   Deliberately quiet — the archive is a list to scan, not a gallery.
   ========================================================================== */

.ecard-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .ecard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ecard-grid { grid-template-columns: repeat(3, 1fr); } }

.ecard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ecard:hover { border-color: var(--rule-strong); box-shadow: var(--sh-sm); }
.ecard:focus-within { border-color: var(--crimson); }

/* --- media --- */
.ecard__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  overflow: hidden;
}
.ecard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.ecard:hover .ecard__media img { transform: scale(1.03); }

/* No artwork in the feed: draw the house mark rather than leave a hole. */
.ecard__media--blank {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 1px 1px, rgba(244,239,230,.28) 1px, transparent 0) 0 0 / 18px 18px,
    var(--charcoal);
}
.ecard__mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.5;
}

/* The day sits on the image, which keeps the body text to one column. */
.ecard__day {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--r-xs);
  background: rgba(28, 28, 28, 0.86);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--cream);
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

/* --- body --- */
.ecard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(15px, 1.8vw, 20px);
  flex: 1;
}

.ecard__title {
  font-size: clamp(1.02rem, 0.96rem + 0.32vw, 1.2rem);
  line-height: 1.3;
  letter-spacing: -0.014em;
  margin: 0;
}
.ecard__title a { color: var(--ink); }
.ecard__title a::after {   /* stretch the hit area over the whole card */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ecard:hover .ecard__title a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ecard__dek {
  font-size: 0.9125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.ecard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding-top: 11px;
  margin-top: 2px;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-xs);
  color: var(--ink-meta);
  font-variant-numeric: tabular-nums;
}

/* On a charcoal band the card inverts rather than punching a white hole. */
.section--dark .ecard,
.subscribe-band .ecard {
  background: var(--charcoal-soft);
  border-color: var(--on-dark-rule);
}
.section--dark .ecard__title a { color: var(--cream); }
.section--dark .ecard__dek    { color: var(--on-dark-soft); }
.section--dark .ecard__meta   { color: var(--on-dark-faint); border-top-color: var(--on-dark-rule); }

@media (max-width: 560px) {
  .ecard-grid { gap: 14px; }
  .ecard__body { padding: 14px; gap: 7px; }
  .ecard__media { aspect-ratio: 2 / 1; }
}


/* ==========================================================================
   31. HERO — a masthead, not a landing page
   ========================================================================== */

.hero__grid { display: grid; gap: clamp(24px, 3.4vw, 44px); }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr); align-items: end; }
}

.hero__standfirst {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--on-dark-soft);
  max-width: 46ch;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--on-dark-rule);
}

.hero__lead h1 {
  font-size: clamp(2.1rem, 1.2rem + 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: var(--cream);
  max-width: 13ch;
  margin: 0 0 14px;
}

.hero__sub { padding-bottom: 4px; }
.hero__sub .subform__note { margin-top: 10px; }

/* ==========================================================================
   32. THE SCHEDULE
   Three rows on hairlines — a contents page, not three cards.
   ========================================================================== */

.schedule {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.schedule__list > li {
  display: grid;
  gap: 4px 28px;
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.schedule__list > li:last-child { border-bottom: 0; }

@media (min-width: 760px) {
  .schedule__list > li {
    grid-template-columns: 130px minmax(0, 22ch) minmax(0, 1fr);
  }
}

.schedule__day {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
}
.schedule__name {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.34rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.014em;
}
.schedule__note {
  font-size: 0.9125rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ==========================================================================
   33. RULED NOTES
   Replaces the three-box grid. Rules carry the grouping; boxes are reserved
   for things that genuinely are objects.
   ========================================================================== */

.notes { display: grid; }
.note-row {
  padding: clamp(16px, 2vw, 22px) 0;
  border-top: 1px solid var(--rule);
}
.note-row:last-child { border-bottom: 1px solid var(--rule); }
.note-row h3 {
  font-family: var(--sans);
  font-size: 0.975rem;
  font-weight: 650;
  letter-spacing: -0.004em;
  color: var(--ink);
  margin: 0 0 5px;
}
.note-row p {
  font-size: 0.9125rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 62ch;
}

.subscribe-cta { margin: 0; }


/* What a subscriber actually receives — a schedule, not a feature list. */
.what-you-get { margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--rule); }
.what-you-get > div {
  display: grid;
  gap: 2px 24px;
  padding-block: 12px;
  border-bottom: 1px solid var(--rule);
}
.what-you-get > div:last-child { border-bottom: 0; }
@media (min-width: 540px) {
  .what-you-get > div { grid-template-columns: 110px 1fr; align-items: baseline; }
}
.what-you-get dt {
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
}
.what-you-get dd {
  margin: 0;
  font-size: 0.9125rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
