/* ============================================================
   Landed design system v1.0
   "Relocation, reported." Voice-led guides to help you make
   a better move. Calm, confident, clear. Human over polished.
   Evidence over hype.

   Source of truth: LandedStyleSheet.png (April 2026)
   ============================================================ */

/* ----- foundation ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; height: auto; display: block; }

:root {
  /* Primary */
  --ink:        #0F1720;
  --paper:      #FAF8F5;
  --accent:     #B6452C;

  /* Semantic */
  --pos:        #2E6D4F;
  --neg:        #B6452C;
  --warn:       #C48A2A;
  --info:       #2E5BBA;

  /* Neutral slate scale */
  --slate-900:  #1D232A;
  --slate-700:  #4B5563;
  --slate-400:  #94A3B8;
  --slate-200:  #E2E8F0;
  --slate-100:  #F1F5F9;

  /* Tinted semantic backgrounds (10% wash) */
  --pos-soft:   #E5EFE8;
  --neg-soft:   #F4E2DA;
  --warn-soft:  #F6ECD7;
  --info-soft:  #DEE5F3;
  --accent-soft:#F4E2DA;

  /* Type families */
  --serif: "Source Serif 4", "Source Serif Pro", "Charter", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

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

  /* Container widths (per stylesheet) */
  --c-mobile:   360px;
  --c-tablet:   720px;
  --c-desktop:  1040px;
  --c-wide:     1240px;

  /* Reading measure */
  --measure: 38rem;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: var(--paper); }

/* ----- type scale (per stylesheet spec) -------------------- */
h1, .h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
h2, .h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
h3, .h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h4, .h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  color: var(--ink);
}
.body, p { font-family: var(--sans); font-size: 16px; line-height: 24px; color: var(--ink); }
.small { font-family: var(--sans); font-size: 14px; line-height: 20px; }
.caption { font-family: var(--sans); font-size: 12px; line-height: 16px; color: var(--slate-700); }

@media (min-width: 768px) {
  h1, .h1 { font-size: 56px; line-height: 64px; }
  h2, .h2 { font-size: 36px; line-height: 44px; }
  h3, .h3 { font-size: 24px; line-height: 32px; }
}

/* ----- skip link + a11y ------------------------------------ */
.skip-link {
  position: absolute;
  left: 0; top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.15s;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
.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;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* ----- nav ------------------------------------------------- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  z-index: 10;
}
.nav__inner {
  max-width: var(--c-wide);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--sans);
  font-size: 14px;
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand .dot { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  color: var(--slate-700);
  text-decoration: none;
  font-weight: 500;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 14px;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__search {
  appearance: none;
  border: 1px solid var(--slate-200);
  background: var(--paper);
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nav__search:hover { border-color: var(--ink); color: var(--accent); }
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__search { display: none; }
}

/* ----- buttons (per stylesheet) ---------------------------- */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.btn--primary { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn--primary:hover { background: #9C3B25; border-color: #9C3B25; color: var(--paper); }
.btn--primary:active { background: #832F1D; border-color: #832F1D; }
.btn--primary:disabled { background: var(--slate-200); border-color: var(--slate-200); color: var(--slate-400); cursor: not-allowed; }

.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: var(--paper); }
.btn--secondary:active { background: var(--slate-900); border-color: var(--slate-900); }
.btn--secondary:disabled { color: var(--slate-400); border-color: var(--slate-200); cursor: not-allowed; }

.btn--text {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding: 8px 0;
  font-weight: 600;
}
.btn--text:hover { color: var(--ink); }

/* ----- breadcrumbs ----------------------------------------- */
.crumbs {
  background: var(--paper);
  border-bottom: 1px solid var(--slate-200);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
}
.crumbs .wrap {
  max-width: var(--c-wide);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.crumbs a { color: var(--slate-700); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs__sep { color: var(--slate-400); }
.crumbs__current { color: var(--ink); font-weight: 500; }

/* ----- hero ------------------------------------------------ */
.hero {
  background: var(--paper);
  padding: 64px 24px 80px;
  border-bottom: 1px solid var(--slate-200);
}
.hero__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.hero__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 18ch;
  color: var(--ink);
}
.hero__dek {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  color: var(--slate-700);
  margin: 0;
  max-width: 38rem;
  font-weight: 400;
}

/* split hero variant: paper panel on the left, photo on the right */
.hero--split {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  background: var(--paper);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-200);
  padding: 0;
  min-height: clamp(520px, 62vh, 640px);
}
.hero--split .hero__panel {
  padding-block: 28px 40px;
  padding-inline-start: max(24px, calc((100vw - var(--c-wide)) / 2 + 24px));
  padding-inline-end: clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.hero--split .hero__crumbs {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: clamp(40px, 7vw, 80px);
}
.hero--split .hero__crumbs a {
  color: var(--slate-700);
  text-decoration: none;
}
.hero--split .hero__crumbs a:hover { color: var(--accent); }
.hero--split .hero__crumbs-sep { color: var(--slate-400); }
.hero--split .hero__crumbs-current { color: var(--ink); font-weight: 600; }
.hero--split .hero__copy { max-width: 480px; }
.hero--split .hero__kicker {
  margin-bottom: 14px;
  color: var(--accent);
}
.hero--split .hero__h1 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: none;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero--split .hero__dek {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--slate-700);
  max-width: 28rem;
  margin: 0 0 28px;
}
.hero__residents {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
}
.hero__avatars {
  display: flex;
  padding-left: 14px;
}
.hero__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--slate-200);
  border: 3px solid var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--slate-700);
  flex-shrink: 0;
  overflow: hidden;
  margin-left: -14px;
  position: relative;
}
.hero__avatar:nth-child(1) { z-index: 4; }
.hero__avatar:nth-child(2) { z-index: 3; }
.hero__avatar:nth-child(3) { z-index: 2; }
.hero__avatar:nth-child(4) { z-index: 1; }
.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__residents-text { font-family: var(--sans); }
.hero__residents-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.hero__residents-detail {
  font-size: 13px;
  color: var(--slate-700);
  margin: 2px 0 0;
  line-height: 1.3;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__ctas .btn { padding: 12px 22px; font-size: 14px; }
.hero__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--slate-200);
  min-height: 320px;
}
.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--paper) 0%,
    rgba(250, 248, 245, 0.92) 6%,
    rgba(250, 248, 245, 0) 28%
  );
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 880px) {
  .hero--split { grid-template-columns: 1fr; }
  .hero--split .hero__photo { aspect-ratio: 16/10; order: -1; }
  .hero--split .hero__photo::after { display: none; }
  .hero--split .hero__panel { padding: 28px 24px 40px; }
  .hero--split .hero__crumbs { margin-bottom: 24px; }
}

/* full-bleed hero variant: image background, copy overlay on the left */
.hero--bleed {
  position: relative;
  padding: 0;
  border-bottom: none;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero--bleed .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--bleed .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero--bleed .hero__bg::after { content: none; }
.hero--bleed .hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--c-wide);
  margin: 0 auto;
  padding: clamp(40px, 5.5vw, 72px) 24px clamp(80px, 12vw, 160px);
  min-height: clamp(420px, 52vw, 620px);
  display: flex;
  align-items: flex-start;
}
.hero--bleed .hero__copy {
  max-width: 420px;
}
.hero--bleed .hero__kicker {
  margin-bottom: 14px;
  color: var(--accent);
}
.hero--bleed .hero__h1 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: none;
  margin-bottom: 16px;
  color: var(--ink);
}
.hero--bleed .hero__dek {
  font-family: var(--serif);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
  color: var(--slate-700);
  max-width: 22rem;
}
@media (max-width: 720px) {
  .hero--bleed .hero__h1 br { display: none; }
}

/* meta band: trust strip sits below the hero in a card */
.hero-meta {
  background: var(--paper);
  border-bottom: 1px solid var(--slate-200);
}
.hero-meta__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
  padding: 24px 24px 32px;
}
.hero-meta__inner > .trust-strip {
  margin-top: 0;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(15, 23, 32, 0.04);
  overflow: hidden;
}
.hero__byline {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__byline strong { color: var(--ink); font-weight: 600; }

/* ----- byline component ------------------------------------ */
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
}
.byline__photo {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--slate-200);
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--slate-200);
}
.byline__meta { font-size: 14px; line-height: 1.4; }
.byline__name { font-weight: 600; color: var(--ink); }
.byline__role { color: var(--slate-700); font-size: 13px; }
.byline__date {
  font-size: 13px;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.byline__reviewed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pos);
  font-weight: 500;
}
.byline__reviewed::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--pos);
  border-radius: 999px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px 9px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ----- source citation (inline) ---------------------------- */
.cite {
  display: inline;
  white-space: nowrap;
}
.cite__link {
  font-family: var(--sans);
  font-size: 0.85em;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 3px;
  margin: 0 1px;
  white-space: nowrap;
}
.cite__link:hover { background: var(--accent); color: var(--paper); }
.cite__link::after {
  content: " ↗";
  font-size: 0.85em;
  opacity: 0.7;
}

/* ----- last-reviewed badge -------------------------------- */
.reviewed-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--pos-soft);
  border: 1px solid rgba(46, 109, 79, 0.18);
  border-radius: 6px;
  font-family: var(--sans);
}
.reviewed-badge__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: var(--pos);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.reviewed-badge__text { font-size: 13px; line-height: 1.4; }
.reviewed-badge__label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pos); }
.reviewed-badge__date { font-weight: 600; color: var(--ink); }
.reviewed-badge__by { color: var(--slate-700); font-size: 12px; }

/* ----- correction badge ----------------------------------- */
.correction-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--warn-soft);
  border: 1px solid rgba(196, 138, 42, 0.22);
  border-radius: 6px;
  font-family: var(--sans);
}
.correction-badge__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: var(--warn);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='8' x2='12' y2='13'/><line x1='12' y1='17' x2='12.01' y2='17'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.correction-badge__text { font-size: 13px; line-height: 1.4; }
.correction-badge__label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warn); }
.correction-badge__title { font-weight: 600; color: var(--ink); }
.correction-badge__link { color: var(--accent); text-decoration: none; font-size: 12px; font-weight: 500; }
.correction-badge__link:hover { text-decoration: underline; }
.correction-badge__link::after { content: " ↗"; }

/* ----- editor's note --------------------------------------- */
.editor-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--slate-100);
  border-left: 3px solid var(--slate-700);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 24px 0;
}
.editor-note strong { color: var(--ink); font-weight: 600; }

/* ----- intro band ------------------------------------------ */
.intro {
  padding: 64px 24px;
  border-bottom: 1px solid var(--slate-200);
  background: var(--paper);
}
.intro__inner {
  max-width: var(--measure);
  margin: 0 auto;
}
.intro__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.intro p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 20px;
}
.intro p:last-child { margin-bottom: 0; }
.intro b, .intro strong { font-weight: 600; color: var(--ink); }

/* ----- principles row (real people / data / accountability) - */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 24px;
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.principle__icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  color: var(--ink);
  margin-top: 2px;
}
.principle__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.principle__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.principle__body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0;
}
@media (max-width: 720px) {
  .principles { grid-template-columns: 1fr; gap: 20px; }
}

/* ----- cast grid ------------------------------------------ */
.cast {
  background: var(--slate-100);
  padding: 48px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.cast__inner { max-width: var(--c-wide); margin: 0 auto; }
.cast__h {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}
.cast__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cast__person {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  overflow: hidden;
}
.cast__photo {
  aspect-ratio: 4/3;
  background: var(--slate-200);
  width: 100%;
  overflow: hidden;
}
.cast__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cast__body { padding: 16px; }
.cast__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.cast__name a { color: var(--ink); text-decoration: none; }
.cast__name a:hover { color: var(--accent); }
.cast__role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.45;
  margin: 0;
}
.cast__meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-200);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate-700);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.cast__meta-k { color: var(--slate-700); }
.cast__meta-v { color: var(--ink); font-weight: 500; }
@media (max-width: 920px) { .cast__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cast__grid { grid-template-columns: 1fr; } }

/* ----- section header ------------------------------------- */
.section-header {
  padding: 64px 24px 32px;
  border-bottom: 1px solid var(--slate-200);
  background: var(--paper);
}
.section-header--alt { background: var(--slate-100); }
.section-header__inner { max-width: var(--c-desktop); margin: 0 auto; }
.section-header__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.section-header__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 22ch;
  color: var(--ink);
}
.section-header__dek {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0;
  max-width: 38rem;
}

/* ----- entry-text (long-form prose block in sub-page sections) ----- */
.entry-text {
  background: var(--paper);
  padding: 40px 24px;
}
.entry-text__inner {
  max-width: var(--measure);
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.entry-text__inner p {
  margin: 0 0 22px;
  color: var(--slate-700);
}
.entry-text__inner p strong { color: var(--ink); font-weight: 700; }
.entry-text__inner p:last-child { margin-bottom: 0; }
.entry-text__inner em { color: var(--ink); }
.entry-text__inner a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 3px;
}
.entry-text__inner a:hover { text-decoration-color: var(--accent); }
.entry-text__list {
  margin: 0 0 22px;
  padding-left: 22px;
  list-style: disc;
}
.entry-text__list li {
  margin-bottom: 14px;
  color: var(--slate-700);
  line-height: 1.6;
}
.entry-text__list li:last-child { margin-bottom: 0; }
.entry-text__inner h3,
.entry-text__inner h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 32px 0 12px;
}
.entry-text__inner h3 { font-size: 22px; }
.entry-text__inner h4 { font-size: 18px; }

/* ----- editorial photo (full-bleed within content stream) ----- */
.editorial-photo {
  background: var(--paper);
  padding: 0 24px 16px;
  margin: 0;
}
.editorial-photo__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.editorial-photo__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--slate-200);
}
.editorial-photo__img--full {
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}
.editorial-photo__caption {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 8px 0 0;
}
.editorial-photo__caption a { color: var(--slate-700); text-decoration: underline; text-decoration-color: var(--slate-200); }
.editorial-photo__caption a:hover { color: var(--accent); }

/* ----- analysis section (proprietary data block with chart) - */
.analysis {
  background: var(--paper);
  padding: 56px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.analysis__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.analysis__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.analysis__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 22ch;
  color: var(--ink);
}
.analysis__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 36rem;
  font-weight: 500;
}
.analysis__body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  margin: 0 0 18px;
  max-width: 42rem;
}
.analysis__body strong { color: var(--ink); font-weight: 700; }
.data-chart {
  margin: 32px 0 32px;
  padding: 24px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
}
.data-chart__caption {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-700);
  margin-bottom: 18px;
  max-width: 56rem;
}
.data-chart__source {
  display: block;
  font-size: 11.5px;
  color: var(--slate-700);
  margin-top: 6px;
  font-style: italic;
}
.data-chart__svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 720px;
}

/* ----- reporter bio panel ---------------------------------- */
.reporter-bio {
  background: var(--paper);
  border-bottom: 1px solid var(--slate-200);
  padding: 32px 24px 40px;
}
.reporter-bio__inner {
  max-width: var(--measure);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
.reporter-bio__photo {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.reporter-bio__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.reporter-bio__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.reporter-bio p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0;
}
.reporter-bio p a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--slate-200);
  text-underline-offset: 2px;
}
.reporter-bio p a:hover { text-decoration-color: var(--accent); }

/* ----- district spotlight (Eanes hero) ---- */
.district-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 28px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 0;
  margin: 8px 0 28px;
  overflow: hidden;
}
@media (max-width: 720px) {
  .district-spotlight { grid-template-columns: 1fr; gap: 0; }
}
.district-spotlight__photo {
  margin: 0;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: var(--slate-100);
}
.district-spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .district-spotlight__photo { min-height: 200px; }
}
.district-spotlight__body {
  padding: 22px 24px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .district-spotlight__body { padding: 22px 22px 24px; }
}
.district-spotlight__kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.district-spotlight__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.018em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.district-spotlight__rating {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(182,69,44,0.25);
  white-space: nowrap;
}
.district-spotlight__where {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate-700);
  margin: 0 0 14px;
}
.district-spotlight__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 16px;
  padding: 14px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
@media (max-width: 540px) {
  .district-spotlight__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.district-spotlight__stats > div { display: flex; flex-direction: column; gap: 4px; }
.district-spotlight__stats dt {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin: 0;
}
.district-spotlight__stats dd {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.014em;
}
.district-spotlight__lede {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0 0 14px;
}
.district-spotlight__lede strong { color: var(--ink); font-weight: 700; }
.district-spotlight__cta {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}
.district-spotlight__cta a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 1px;
}
.district-spotlight__cta a:hover { border-bottom-color: var(--accent); }

/* ----- district card grid (school-district data asset) ---- */
.district-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 16px;
}
@media (max-width: 960px) {
  .district-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .district-grid { grid-template-columns: 1fr; gap: 12px; }
}
.district-grid__lede {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0 0 16px;
  max-width: 65ch;
}
.district-grid__lede a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 2px;
}
.district-grid__lede a:hover { text-decoration-color: var(--accent); }
.district-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.district-card__photo {
  margin: -16px -18px 14px;
  height: 180px;
  background: var(--slate-100);
  overflow: hidden;
}
.district-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.district-card__cta {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
}
.district-card__cta a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 1px;
}
.district-card__cta a:hover { border-bottom-color: var(--accent); }
.district-card:hover {
  border-color: var(--slate-400);
  box-shadow: 0 1px 3px rgba(15,23,32,0.04);
}
.district-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.district-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.district-card__rating {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid transparent;
}
.district-card__rating--a {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(182,69,44,0.25);
}
.district-card__rating--b {
  background: var(--slate-100);
  color: var(--slate-700);
  border-color: var(--slate-200);
}
.district-card__rating--c {
  background: var(--slate-100);
  color: var(--slate-400);
  border-color: var(--slate-200);
}
.district-card__where {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin: 0 0 12px;
}
.district-card__stats {
  display: flex;
  gap: 18px;
  margin: 0 0 12px;
  padding: 10px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.district-card__stats > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.district-card__stats dt {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin: 0;
}
.district-card__stats dd {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.012em;
}
.district-card__note {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0;
}
.district-card__note strong { color: var(--ink); font-weight: 700; }
.district-grid__source {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: var(--slate-700);
  margin: 8px 0 24px;
  line-height: 1.45;
}

/* ----- data-band (wide table standalone, escapes prose column) -- */
.data-band {
  background: var(--paper);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 36px 24px 40px;
  margin: 16px 0 28px;
}
.data-band__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.data-band__head { margin: 0 0 22px; }
.data-band__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.data-band__h {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.018em;
  max-width: 38ch;
}
.data-band__dek {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0;
  max-width: 65ch;
}
.data-band__source {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: var(--slate-700);
  margin: 16px 0 0;
  line-height: 1.55;
}
.data-band__source a {
  color: var(--slate-700);
  text-decoration: underline;
  text-decoration-color: var(--slate-200);
  text-underline-offset: 2px;
}
.data-band__source a:hover { color: var(--accent); text-decoration-color: var(--accent); }
@media (max-width: 540px) {
  .data-band { padding: 26px 16px 28px; }
  .data-band__h { font-size: 20px; }
}

/* ----- ledger-band (financial comparison cards + table) ----- */
.ledger-band {
  background: var(--paper);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 36px 24px 40px;
  margin: 16px 0 28px;
}
.ledger-band__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.ledger-band__head { margin: 0 0 22px; }
.ledger-band__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.ledger-band__h {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.018em;
  max-width: 36ch;
}
.ledger-band__dek {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0;
  max-width: 65ch;
}
.ledger-band__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 22px;
}
@media (max-width: 720px) {
  .ledger-band__cols { grid-template-columns: 1fr; gap: 14px; }
}
.ledger-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
  border-radius: 4px;
}
.ledger-card__head { margin: 0 0 12px; }
.ledger-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.ledger-card__sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-700);
}
.ledger-card__breakdown { margin: 0; }
.ledger-card__breakdown > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-200);
  gap: 12px;
}
.ledger-card__breakdown > div:last-child { border-bottom: none; padding-bottom: 0; }
.ledger-card__breakdown dt {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  margin: 0;
}
.ledger-card__breakdown dd {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 0;
  line-height: 1;
}
.ledger-card__total {
  border-top: 2px solid var(--ink) !important;
  margin-top: 4px;
  padding-top: 10px !important;
}
.ledger-card__total dt {
  font-weight: 700 !important;
  color: var(--ink) !important;
  text-transform: uppercase;
  font-size: 11px !important;
  letter-spacing: 0.10em;
}
.ledger-card__total dd {
  font-size: 22px !important;
  color: var(--accent) !important;
}

.ledger-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  margin: 0 0 12px;
}
.ledger-table__caption {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-700);
  text-align: left;
  padding: 14px 16px 10px;
  caption-side: top;
}
.ledger-table thead th {
  background: var(--slate-100);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: right;
  padding: 12px 14px;
  border-bottom: 1px solid var(--slate-200);
}
.ledger-table thead th:first-child { text-align: left; }
.ledger-table tbody th {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  padding: 12px 14px;
  color: var(--ink);
  letter-spacing: -0.012em;
  border-bottom: 1px solid var(--slate-200);
}
.ledger-table tbody td {
  text-align: right;
  padding: 12px 14px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--slate-200);
}
.ledger-table tbody tr:last-child th,
.ledger-table tbody tr:last-child td { border-bottom: none; }
.ledger-table__pos { color: var(--accent) !important; font-weight: 700 !important; }
.ledger-table__neg { color: var(--slate-400) !important; font-weight: 500 !important; }
.ledger-band__source {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: var(--slate-700);
  margin: 12px 0 0;
  line-height: 1.45;
}
@media (max-width: 540px) {
  .ledger-band { padding: 26px 16px 28px; }
  .ledger-band__h { font-size: 22px; }
  .ledger-table { font-size: 12px; }
  .ledger-table thead th, .ledger-table tbody th, .ledger-table tbody td { padding: 10px 8px; font-size: 12px; }
  .ledger-table tbody th { font-size: 13px; }
  .ledger-table tbody td { font-size: 13px; }
}

/* ----- district comparison table (school-district data asset) - */
.district-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 12px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  background: var(--paper);
  border: 1px solid var(--slate-200);
}
.district-table thead th {
  background: var(--slate-100);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--slate-200);
}
.district-table thead th.num { text-align: right; white-space: nowrap; }
.district-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 14px;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: top;
  white-space: nowrap;
}
.district-table tbody td {
  padding: 14px 14px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-200);
  vertical-align: top;
}
.district-table tbody td.num {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.district-table tbody tr:last-child th,
.district-table tbody tr:last-child td { border-bottom: none; }
.district-table__source {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  color: var(--slate-700);
  margin: 8px 0 24px;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .district-table { font-size: 13px; }
  .district-table thead th,
  .district-table tbody th,
  .district-table tbody td { padding: 10px 8px; }
  .district-table tbody td.num { font-size: 14px; }
}

/* ----- editor's close (editorial landing before methodology) - */
.editor-close {
  background: var(--paper);
  padding: 64px 24px 56px;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.editor-close__inner {
  max-width: var(--measure);
  margin: 0 auto;
  position: relative;
}
.editor-close__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.editor-close__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 22ch;
}
.editor-close p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}
.editor-close p:last-of-type { margin-bottom: 24px; }
.editor-close p a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 3px;
}
.editor-close p a:hover { text-decoration-color: var(--accent); }
.editor-close__sig {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
}
.editor-close__sig strong { color: var(--ink); }

/* ----- entry (love/regret card with photo, main, rail) ----- */
.entries { background: var(--paper); }
.entries--alt { background: var(--paper); }
.entry {
  border-top: 1px solid var(--slate-200);
  padding: 48px 24px;
}
.entry:first-child { border-top: none; }
.entry__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: stretch;
}
.entry__photo {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #E9EEF3 0%, #D6DEE7 100%);
  border-radius: 4px;
  overflow: hidden;
  align-self: stretch;
}
.entry__main { align-self: start; }
.entry__rail { align-self: start; }
.entry__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.entry__num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(15, 23, 32, 0.45);
  letter-spacing: -0.02em;
  z-index: 1;
}
.entry__photo:not(:has(img)) .entry__num {
  color: rgba(15, 23, 32, 0.35);
  text-shadow: none;
}

.entry__main { min-width: 0; }
.entry__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid var(--slate-400);
  color: var(--ink);
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
}
.tag--loved {
  background: var(--pos-soft);
  color: var(--pos);
  border-color: rgba(46, 109, 79, 0.35);
}
.tag--regretted {
  background: var(--neg-soft);
  color: var(--accent);
  border-color: rgba(182, 69, 44, 0.35);
}
.tag--cat {
  background: transparent;
  color: var(--ink);
  border-color: var(--slate-400);
}
.tag--accent { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.tag--info { background: var(--info-soft); color: var(--info); border-color: rgba(46, 91, 186, 0.25); }
.tag--neutral { background: var(--slate-100); color: var(--slate-700); border-color: var(--slate-200); }

.entry__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  max-width: 22ch;
  color: var(--ink);
}
.entry__lede {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0 0 22px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  quotes: none;
}
.entry__lede p { margin: 0; }
/* editor-led ledes are statements, not quotes: roman, full-strength color */
.entry__lede--statement {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-style: normal;
  letter-spacing: -0.005em;
  border-left: 3px solid var(--accent);
  padding: 2px 0 2px 18px;
  margin: 0 0 22px;
  font-weight: 500;
}
.entry__body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-700);
}
.entry__body p { margin: 0 0 16px; }
.entry__body p:last-child { margin-bottom: 0; }
.entry__body strong, .entry__body b { color: var(--ink); font-weight: 600; }
.entry__body a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--slate-200); text-underline-offset: 3px; }
.entry__body a:hover { text-decoration-color: var(--accent); }

.entry__rail {
  border-left: none;
  padding-left: 0;
  align-self: start;
  font-family: var(--sans);
}
.entry__rail-h {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.entry__sources {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-200);
}
.entry__lede-attr {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
  color: var(--slate-700);
  margin-top: 8px;
  font-style: normal;
}
.entry__lede-attr a {
  color: var(--slate-700);
  text-decoration: underline;
  text-decoration-color: var(--slate-200);
  text-underline-offset: 2px;
}
.entry__lede-attr a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.entry__sources-block {
  font-family: var(--sans);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-200);
}
.entry__sources-h {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin: 12px 0 6px;
}
.entry__sources-h:first-child { margin-top: 0; }
.entry__sources-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.45;
}
.entry__sources-list li { padding: 3px 0; }
.entry__sources-list a {
  color: var(--slate-700);
  text-decoration: underline;
  text-decoration-color: var(--slate-200);
  text-underline-offset: 2px;
}
.entry__sources-list a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.entry__expert,
.entry__primary {
  font-size: 12px;
  line-height: 1.45;
  color: var(--slate-700);
  margin: 0 0 6px;
}
.entry__expert a,
.entry__primary a {
  color: var(--slate-700);
  text-decoration: underline;
  text-decoration-color: var(--slate-200);
}
.entry__expert a:hover,
.entry__primary a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.entry__body a[target="_blank"] {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 2px;
}
.entry__body a[target="_blank"]:hover { text-decoration-color: var(--accent); }
.entry__person {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-200);
  align-items: center;
}
.entry__person-photo {
  width: 48px; height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--slate-200);
  flex-shrink: 0;
}
.entry__person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.entry__person-meta { min-width: 0; }
.entry__who {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}
.entry__who a { color: var(--ink); text-decoration: none; }
.entry__who a:hover { color: var(--accent); }
.entry__where {
  font-size: 12.5px;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.4;
}
.entry__data {
  border-top: none;
  border-bottom: 1px solid var(--slate-200);
  padding: 0 0 18px;
  margin-bottom: 20px;
}
.entry__datum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: 13px;
  gap: 16px;
}
.entry__datum + .entry__datum { border-top: 1px solid var(--slate-200); }
.entry__datum-k { color: var(--slate-700); }
.entry__datum-v {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-align: right;
  letter-spacing: -0.01em;
}
.entry__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.entry__cta:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (max-width: 960px) {
  .entry__inner { grid-template-columns: 1fr; gap: 24px; }
  .entry__photo { aspect-ratio: 16 / 10; max-width: 480px; }
  .entry__num { font-size: 32px; top: 10px; left: 14px; }
  .entry__rail {
    border-left: none;
    border-top: 1px solid var(--slate-200);
    padding-left: 0;
    padding-top: 20px;
  }
}

/* ----- voice extract -------------------------------------- */
.voice {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  margin: 32px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.voice__photo {
  width: 64px; height: 64px;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--slate-200);
  object-fit: cover;
  border: 1px solid var(--slate-200);
}
.voice__body { flex: 1; min-width: 0; }
.voice__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.voice__attr {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  margin: 0;
  line-height: 1.4;
}
.voice__attr strong { color: var(--ink); font-weight: 600; }
.voice__attr a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--slate-200); }
.voice__attr a:hover { border-bottom-color: var(--accent); }

/* ----- TRUST STRIP (compact under H1) -------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  margin: 32px 0 0;
}
.trust-strip__cell {
  padding: 16px 18px;
  border-right: 1px solid var(--slate-200);
  font-family: var(--sans);
  color: inherit;
  text-decoration: none;
}
.trust-strip__cell:has(.trust-strip__icon) {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.trust-strip__cell:last-child { border-right: none; }
.trust-strip__icon {
  color: var(--slate-700);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}
.trust-strip__body { min-width: 0; }
.trust-strip__num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
}
.trust-strip__num--small {
  font-size: 15px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 4px;
  color: var(--pos);
}
.trust-strip__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.trust-strip__detail {
  font-size: 12px;
  color: var(--slate-700);
  margin-top: 2px;
}
.trust-strip__cell--ok .trust-strip__icon { color: var(--pos); }
.trust-strip__cell--link:hover { background: var(--slate-100); }
.trust-strip__cell--link:hover .trust-strip__num { color: var(--accent); }
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__cell:nth-child(2) { border-right: none; }
  .trust-strip__cell:nth-child(1), .trust-strip__cell:nth-child(2) { border-bottom: 1px solid var(--slate-200); }
}

/* ----- AUTHOR BLOCK (large, prominent, replaces small byline) - */
.author-block {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  margin-top: 24px;
  font-family: var(--sans);
}
.author-block__photo {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--slate-200);
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.author-block__main { min-width: 0; }
.author-block__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin: 0 0 4px;
}
.author-block__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.author-block__name a { color: inherit; text-decoration: none; }
.author-block__name a:hover { color: var(--accent); }
.author-block__title {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  margin: 2px 0 6px;
}
.author-block__credentials {
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.4;
  margin: 0;
}
.author-block__credentials a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--slate-200); }
.author-block__credentials a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.author-block__review {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  color: var(--slate-700);
  white-space: nowrap;
}
.author-block__review-date { color: var(--ink); font-weight: 600; }
.author-block__review-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pos);
  font-weight: 600;
}
.author-block__review-status::before {
  content: "";
  width: 12px; height: 12px;
  background: var(--pos);
  border-radius: 999px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .author-block { grid-template-columns: 56px 1fr; }
  .author-block__review { grid-column: 1 / -1; align-items: flex-start; padding-top: 8px; border-top: 1px dotted var(--slate-200); }
}

/* ----- QUICK ANSWER (TL;DR for AI extraction + skimmers) ---- */
.quick-answer {
  background: var(--paper);
  padding: 24px 24px 36px;
  border-bottom: 1px solid var(--slate-200);
}
.quick-answer__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 26px 32px;
}
.quick-answer__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.quick-answer__q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
  max-width: 32ch;
}
.quick-answer__a {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
  max-width: 64ch;
}
.quick-answer__a strong {
  color: var(--ink);
  font-weight: 700;
}
.quick-answer__caveat {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0;
  max-width: 64ch;
}
.quick-answer__caveat a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.quick-answer__caveat a:hover { color: var(--ink); }

/* ----- CAST STRIP (portrait cards above fold) ---------- */
.cast-strip {
  background: var(--paper);
  padding: 36px 24px 40px;
  border-bottom: 1px solid var(--slate-200);
}
.cast-strip__inner { max-width: var(--c-desktop); margin: 0 auto; }
.cast-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.cast-strip__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.cast-strip__more {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.cast-strip__more:hover { color: var(--ink); }
.cast-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 920px) {
  .cast-strip__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cast-strip__row { grid-template-columns: 1fr; }
}
.cast-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
  align-items: stretch;
}
.cast-card:hover { border-color: var(--ink); background: var(--slate-100); }
.cast-card__photo {
  width: 96px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 35%, #DDE5EE 0%, #C9D3DF 60%, #AEBAC8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: rgba(15, 23, 32, 0.55);
  font-size: 22px;
  letter-spacing: 0.04em;
  overflow: hidden;
  align-self: start;
}
.cast-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.cast-card__body { min-width: 0; padding-top: 2px; display: flex; flex-direction: column; }
.cast-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.cast-card__role {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--slate-700);
  margin: 0 0 12px;
  line-height: 1.3;
}
.cast-card__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--slate-200);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate-700);
}
.cast-card__meta dt {
  color: var(--slate-700);
  font-weight: 500;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.cast-card__meta dd {
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

/* ----- LOVES VS REGRETTED summary (boxed cards) ------ */
.lvr {
  background: var(--paper);
  padding: 24px 24px 24px;
  border-bottom: 1px solid var(--slate-200);
}
.lvr__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
}
.lvr__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) {
  .lvr__cols { grid-template-columns: 1fr; gap: 16px; }
}
.lvr__card {
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
}
.lvr__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--slate-200);
}
.lvr__badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lvr__badge--loved { color: var(--pos); }
.lvr__badge--regretted { color: var(--accent); }
.lvr__card-h {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.lvr__card--loved .lvr__card-h { color: var(--pos); }
.lvr__card--regretted .lvr__card-h { color: var(--accent); }
.lvr__list { list-style: none; padding: 0; margin: 0 0 12px; }
.lvr__item {
  border-bottom: 1px solid var(--slate-200);
  padding: 12px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: baseline;
}
.lvr__item:last-child { border-bottom: none; }
.lvr__num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--slate-700);
  font-variant-numeric: tabular-nums;
}
.lvr__text {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--sans);
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
.lvr__text:hover .lvr__text-line { color: var(--accent); }
.lvr__text-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.lvr__text-line {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--slate-700);
}
@media (max-width: 600px) {
  .lvr__text { grid-template-columns: 1fr; gap: 2px; }
}
.lvr__more {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}
.lvr__more:hover { color: var(--ink); }

/* ----- PULL BAND (editorial promise + portrait callout) ---- */
.pull-band {
  background: var(--paper);
  padding: 32px 24px 64px;
  border-bottom: 1px solid var(--slate-200);
}
.pull-band__inner {
  max-width: var(--c-desktop);
  margin: 0 auto;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 980px) {
  .pull-band__inner { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}
.pull-band__quote {
  margin: 0;
  position: relative;
  padding-left: 30px;
}
.pull-band__mark {
  position: absolute;
  left: -2px;
  top: -16px;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.pull-band__quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pull-band__attr {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  margin-top: 14px;
}
.pull-band__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pull-band__img {
  margin: 0;
  aspect-ratio: 1/1;
  background: var(--slate-200);
  border-radius: 4px;
  overflow: hidden;
}
.pull-band__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pull-band__promise {
  font-family: var(--serif);
  border-left: 1px solid var(--slate-200);
  padding-left: 24px;
}
@media (max-width: 980px) {
  .pull-band__promise { border-left: none; padding-left: 0; border-top: 1px solid var(--slate-200); padding-top: 20px; }
}
.pull-band__promise p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.pull-band__sig {
  margin-top: 8px !important;
  color: var(--accent) !important;
  font-weight: 600;
}

/* ----- EDITOR STATEMENT (sharper, prominent intro) --------- */
.editor-statement {
  background: var(--paper);
  padding: 64px 24px;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.editor-statement__inner {
  max-width: var(--measure);
  margin: 0 auto;
  position: relative;
}
.editor-statement__inner::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}
.editor-statement__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.editor-statement__h {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 22ch;
}
.editor-statement p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
}
.editor-statement p:last-child { margin-bottom: 0; }
.editor-statement strong, .editor-statement b { color: var(--ink); font-weight: 700; }
.editor-statement__sig {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
}
.editor-statement__sig strong { color: var(--ink); font-weight: 600; }

/* ----- VOICE TYPE DIFFERENTIATION (resident vs data vs narrative) -- */
/* Resident voice: italic serif, framed quote with photo. Already styled .voice */
/* Editorial narrative: plain serif body in .article p / .intro p / .editor-statement p */
/* Data: monospace-leaning sans, tabular numerals, in .dline / .dtable / data chips */

.data-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}
.data-chip__num {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.data-chip__label {
  font-size: 12px;
  color: var(--slate-700);
  font-weight: 500;
}
.data-chip__source {
  font-size: 11px;
  color: var(--slate-700);
  margin-left: 4px;
}
.data-chip__source a { color: var(--accent); text-decoration: none; }
.data-chip__source a:hover { text-decoration: underline; }

/* Voice type tags inside .voice */
.voice {
  position: relative;
}
.voice::before {
  content: "Resident voice";
  position: absolute;
  top: -10px;
  left: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper);
  padding: 0 8px 0 0;
}

/* When inline cites appear in body, give them slight emphasis */
.entry__body .cite__link,
.article p .cite__link,
.editor-statement p .cite__link,
.intro p .cite__link {
  font-weight: 600;
}

/* ----- spokes grid ---------------------------------------- */
.spokes {
  background: var(--slate-100);
  padding: 80px 24px;
  border-top: 1px solid var(--slate-200);
}
.spokes__inner { max-width: var(--c-desktop); margin: 0 auto; }
.spokes__head { margin-bottom: 40px; max-width: 38rem; }
.spokes__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.spokes__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  max-width: 26ch;
}
.spokes__dek {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0;
}
.spokes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--slate-200);
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
}
.spoke-card {
  padding: 28px 24px;
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: background 0.15s;
}
.spoke-card:nth-child(3n) { border-right: none; }
.spoke-card:nth-last-child(-n+3) { border-bottom: none; }
.spoke-card:hover { background: var(--slate-100); }
.spoke-card:hover .spoke-card__cta { color: var(--accent); }
.spoke-card__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-700);
  font-weight: 700;
  margin: 0 0 12px;
}
.spoke-card__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  max-width: 22ch;
  color: var(--ink);
}
.spoke-card__dek {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0 0 16px;
  max-width: 32ch;
}
.spoke-card__cta {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  gap: 4px;
}
@media (max-width: 980px) {
  .spokes__grid { grid-template-columns: repeat(2, 1fr); }
  .spoke-card { border-right: 1px solid var(--slate-200) !important; border-bottom: 1px solid var(--slate-200) !important; }
  .spoke-card:nth-child(2n) { border-right: none !important; }
}
@media (max-width: 600px) {
  .spokes__grid { grid-template-columns: 1fr; }
  .spoke-card { border-right: none !important; }
}

/* ----- editorial article ---------------------------------- */
.article {
  background: var(--paper);
  padding: 64px 24px;
}
.article__inner {
  max-width: var(--measure);
  margin: 0 auto;
}
.article h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 48px 0 20px;
  color: var(--ink);
}
.article h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 36px 0 16px;
  color: var(--ink);
}
.article p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
}
.article p strong, .article p b { color: var(--ink); font-weight: 600; }
.article ul, .article ol {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
  padding-left: 24px;
}
.article li { margin-bottom: 8px; }
.article a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--slate-200); text-underline-offset: 3px; }
.article a:hover { text-decoration-color: var(--accent); }

.article__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.article__h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.article__dek {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--slate-700);
  margin: 0 0 40px;
}

/* ----- data table ----------------------------------------- */
.dtable-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 6px;
  border: 1px solid var(--slate-200);
}
.dtable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--paper);
}
.dtable thead th {
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-700);
  padding: 14px 16px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.dtable tbody td, .dtable tbody th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: top;
  text-align: left;
}
.dtable tbody tr:last-child td, .dtable tbody tr:last-child th { border-bottom: none; }
.dtable tbody th {
  font-weight: 600;
  color: var(--ink);
}
.dtable .num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-feature-settings: "tnum";
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
}
.dtable a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.dtable a::after { content: " ↗"; font-size: 0.85em; opacity: 0.7; }
.dtable a:hover { text-decoration: underline; }

/* ----- data line / 18% statistic block ------------------- */
.dline {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
  margin: 32px 0;
}
.dline__item { flex: 1 1 12rem; }
.dline__num {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}
.dline__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-700);
  font-weight: 600;
}

/* feature data card (the big "18%" example) */
.data-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
}
.data-feature__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: 0;
}
.data-feature__caption {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 4px 0 0;
}
.data-feature__source {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate-700);
  margin: 0;
}
.data-feature__source a { color: var(--accent); text-decoration: none; }
.data-feature__source a:hover { text-decoration: underline; }

/* ----- card grid ------------------------------------------ */
.cardgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}
.cardgrid--3 { grid-template-columns: repeat(3, 1fr); }
.cardgrid__card {
  padding: 28px 24px;
  border-bottom: 1px solid var(--slate-200);
  border-right: 1px solid var(--slate-200);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.cardgrid:not(.cardgrid--3) .cardgrid__card:nth-child(2n) { border-right: none; }
.cardgrid--3 .cardgrid__card:nth-child(3n) { border-right: none; }
.cardgrid__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-700);
  font-weight: 700;
  margin: 0 0 12px;
}
.cardgrid__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cardgrid__h a { color: var(--ink); text-decoration: none; }
.cardgrid__h a:hover { color: var(--accent); }
.cardgrid__body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0 0 16px;
  flex: 1;
}
.cardgrid__meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--slate-700);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--slate-200);
  padding-top: 14px;
}
.cardgrid__meta strong { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) {
  .cardgrid, .cardgrid--3 { grid-template-columns: 1fr; }
  .cardgrid__card, .cardgrid--3 .cardgrid__card { border-right: none; }
}

/* ----- FAQ accordion -------------------------------------- */
.faq {
  background: var(--paper);
  padding: 80px 24px;
  border-top: 1px solid var(--slate-200);
}
.faq__inner {
  max-width: var(--measure);
  margin: 0 auto;
}
.faq__head { margin-bottom: 32px; }
.faq__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.faq__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.faq__dek {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--slate-700);
  margin: 0;
}
.faq__list { border-top: 1px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
}
.faq-item__q {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item__tldr {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 12px;
}
.faq-item__a {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  margin: 0;
}
.faq-item__a a { color: var(--accent); }

/* ----- calculator ----------------------------------------- */
.calc {
  background: var(--slate-100);
  padding: 80px 24px;
  border-top: 1px solid var(--slate-200);
}
.calc__inner { max-width: var(--c-desktop); margin: 0 auto; }
.calc__head { max-width: var(--measure); margin: 0 0 40px; }
.calc__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.calc__h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.calc__dek {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--slate-700);
  margin: 0;
}
.calc__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 32px;
}
.calc__form { display: flex; flex-direction: column; gap: 20px; }
.calc__field { display: flex; flex-direction: column; gap: 6px; }
.calc__field--row { flex-direction: row; gap: 12px; align-items: stretch; }
.calc__field--row > * { flex: 1; }
.calc__field label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-700);
}
.calc__field input, .calc__field select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  border-radius: 4px;
}
.calc__field input:focus, .calc__field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.calc__results { font-family: var(--sans); }
.calc__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
  gap: 16px;
  font-size: 15px;
}
.calc__row--strong {
  font-weight: 700;
  border-bottom: 2px solid var(--ink);
  border-top: 1px solid var(--ink);
  padding: 16px 0;
  margin-top: 12px;
  font-size: 16px;
}
.calc__row-label { color: var(--slate-700); }
.calc__row-label .sub { display: block; font-size: 12px; color: var(--slate-700); font-weight: 400; margin-top: 2px; }
.calc__row-value { font-variant-numeric: tabular-nums; color: var(--ink); }
.calc__row-value.num { font-weight: 600; }

.calc-compare {
  margin-top: 20px;
  padding: 20px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
}
.calc-compare__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 8px;
}
.calc-compare__delta {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--pos);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.calc-compare__delta--neg { color: var(--accent); }
.calc-compare__prose {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.calc-compare__prose strong { color: var(--ink); font-weight: 600; }

@media (max-width: 800px) {
  .calc__grid { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
}

/* ----- footer --------------------------------------------- */
.site-foot {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 24px 40px;
}
.site-foot .wrap {
  max-width: var(--c-wide);
  margin: 0 auto;
  padding: 0;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.site-foot__col h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--paper);
}
.site-foot__col p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.7);
  margin: 0;
}
.site-foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-foot__col ul li {
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 10px;
}
.site-foot__col ul li a {
  color: rgba(250, 248, 245, 0.85);
  text-decoration: none;
}
.site-foot__col ul li a:hover { color: var(--paper); text-decoration: underline; }
.site-foot__fine {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(250, 248, 245, 0.55);
  border-top: 1px solid rgba(250, 248, 245, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-foot__fine a {
  color: rgba(250, 248, 245, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(250, 248, 245, 0.3);
}
.site-foot__fine a:hover { color: var(--paper); }
@media (max-width: 760px) {
  .site-foot__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ----- methodology footer note ----------------------------- */
.methodology-note {
  background: var(--slate-100);
  padding: 48px 24px;
  border-top: 1px solid var(--slate-200);
}
.methodology-note__inner {
  max-width: var(--measure);
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-700);
}
.methodology-note__inner p { margin: 0 0 12px; }
.methodology-note__inner strong { color: var(--ink); font-weight: 600; }
.methodology-note__inner a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--slate-200); }
.methodology-note__inner a:hover { text-decoration-color: var(--ink); color: var(--accent); }

/* ----- prose readers (regret hub, etc.) ------------------- */
.prose-reader {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 64px 24px;
}
.prose-reader p { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--ink); margin: 0 0 20px; }
.prose-reader h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 3vw, 32px); line-height: 1.18; margin: 40px 0 20px; color: var(--ink); letter-spacing: -0.015em; }
.prose-reader h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 1.25; margin: 32px 0 16px; color: var(--ink); }
.prose-reader ul, .prose-reader ol { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--ink); margin: 0 0 24px; padding-left: 24px; }
.prose-reader li { margin-bottom: 8px; }
.prose-reader strong, .prose-reader b { color: var(--ink); font-weight: 600; }
.prose-reader a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--slate-200); text-underline-offset: 3px; }
.prose-reader a:hover { text-decoration-color: var(--accent); }

/* ----- divider ------------------------------------------- */
.divider {
  border: none;
  border-top: 1px solid var(--slate-200);
  margin: 48px 0;
}
.divider--strong { border-top: 1px solid var(--ink); }

/* ----- generic utility ----------------------------------- */
.wrap { max-width: var(--c-wide); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: var(--measure); }
.section { padding: 64px 24px; }
.muted { color: var(--slate-700); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ----- print --------------------------------------------- */
@media print {
  .nav, .site-foot, .skip-link { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
