/* Roulette-in: editorial authority system */

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

:root {
  /* Ice Blue Editorial */
  --ink: #0e1a2b;
  --ink-soft: #2a3b54;
  --ink-mute: #5c6c83;
  --paper: #f7f4ec;
  --paper-deep: #ece6d8;
  --surface: #ffffff;
  --panel: #faf7f1;
  --rule: #d8d1bf;
  --rule-soft: #ebe5d5;
  --accent: #1459d6; /* cobalt navigation ink */
  --accent-soft: #e3edff;
  --data: #1a8a8a; /* cyan data highlight */
  --data-soft: #d6efef;
  --gold: #b48a3a; /* verdict chip */
  --danger: #a4413a;
  --shadow-soft: 0 1px 0 rgba(20, 30, 50, 0.04);
  --shadow-mid: 0 8px 24px -12px rgba(20, 30, 50, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --content-max: 1240px;
  --reading-max: 760px;
  --serif: "Source Serif Pro", "Georgia", "Times New Roman", serif;
  --sans: "DM Sans", "Inter", -apple-system, "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --devanagari: "Noto Sans Devanagari", var(--sans);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Typography rhythm */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: clamp(17px, 1.6vw, 20px); }

p { margin: 0 0 1.1em; color: var(--ink-soft); }
p strong { color: var(--ink); }
p em { color: var(--ink); font-style: italic; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

ul, ol { padding-left: 1.25em; color: var(--ink-soft); margin: 0 0 1.1em; }
li { margin-bottom: .35em; }
li::marker { color: var(--accent); }

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

hr { border: 0; height: 1px; background: var(--rule); margin: 2.5rem 0; }

/* Container */
.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 22px; }
.reading { max-width: var(--reading-max); margin: 0 auto; padding: 0 22px; }

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(247, 244, 236, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
}
.brand-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark__chip {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d8c69a 0%, #b48a3a 65%, #84601f 100%);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.18), inset 0 2px 2px rgba(255,255,255,0.45);
  display: grid; place-items: center;
  color: #fff8e6;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.brand-mark__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-mark__name { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.brand-mark__tag { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.primary-nav a:hover { background: var(--paper-deep); color: var(--ink); }
.primary-nav a.is-cta {
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
  z-index: 300;
}
.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 240;
  padding: 92px 22px 28px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer a {
  color: var(--ink);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--serif);
  font-size: 22px;
}
.mobile-drawer a.is-cta {
  margin-top: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 10px;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
}

/* Hero */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 36px;
  align-items: center;
  padding: 48px 0 56px;
}
.hero__media {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  background: var(--paper-deep);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__figcap {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 10px;
  padding-left: 6px;
  border-left: 2px solid var(--gold);
}
.hero__copy h1 { font-size: clamp(36px, 4.6vw, 60px); margin-bottom: .25em; }
.hero__lede { font-size: 18px; color: var(--ink-soft); max-width: 38em; line-height: 1.55; }
.hero__meta {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--data { background: var(--data); color: #fff; border-color: var(--data); }

/* Dateline / issue marker */
.masthead {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.masthead__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 0;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.masthead__row strong { color: var(--ink); font-weight: 600; letter-spacing: 0.05em; }
.masthead__row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-mute); }

/* Chapter rail */
.chapter-rail {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  max-width: 100vw;
  overflow-x: hidden;
}
.chapter-rail__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: thin;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.chapter-rail__inner::-webkit-scrollbar { height: 4px; }
.chapter-rail__inner::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }
.chapter-rail__inner a {
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.chapter-rail__inner a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Generic section */
.section { padding: 64px 0; border-bottom: 1px solid var(--rule-soft); }
.section--paper { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p { color: #c8d4e3; }
.section--ink a { color: #ffd590; }

.section__eyebrow {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.section__heading { max-width: 28em; }
.section__lede { max-width: 38em; color: var(--ink-soft); font-size: 17px; }

/* Annotated image ledger (signature device) */
.ledger {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: start;
}
.ledger--reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.ledger__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow-mid);
}
.ledger__media img { width: 100%; height: 100%; object-fit: cover; }
.ledger__notes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ledger__note {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--surface);
}
.ledger__note__num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
}
.ledger__note__num--data { background: var(--data); }
.ledger__note__num--gold { background: var(--gold); }
.ledger__note p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.ledger__note h4 { margin: 0 0 4px; font-size: 16px; color: var(--ink); }

/* Data ledger (table-like) */
.data-ledger {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.data-ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule-soft);
  align-items: center;
}
.data-ledger__row:last-child { border-bottom: 0; }
.data-ledger__row--head {
  background: var(--paper-deep);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.data-ledger__row h4 { margin: 0; font-size: 15px; }
.data-ledger__row p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.verdict-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.verdict-chip--pay { background: #e3edff; color: var(--accent); }
.verdict-chip--prob { background: var(--data-soft); color: var(--data); }
.verdict-chip--note { background: var(--paper-deep); color: var(--ink-mute); }
.verdict-chip--gold { background: #f5e9cf; color: var(--gold); }

/* Tabs */
.tabs { border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-deep);
}
.tabs__tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-mute);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.tabs__tab[aria-selected="true"] {
  background: var(--surface);
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.tabs__panel {
  padding: 22px 24px 26px;
  display: none;
}
.tabs__panel.is-active { display: block; }
.tabs__panel p:last-child { margin-bottom: 0; }
.tabs__panel h4 { margin-top: 0; }
.tabs__panel ul { padding-left: 1.2em; }

/* Editorial rail (3-col reading) */
.editorial-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  padding-top: 20px;
}
.editorial-rail article { padding: 0; }
.editorial-rail h3 { margin-bottom: 8px; font-size: 20px; }
.editorial-rail p { font-size: 15px; }

/* Long-read split */
.long-read {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: start;
}
.long-read article { font-size: 17px; }
.long-read aside {
  position: sticky;
  top: 110px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}
.long-read aside h3 { font-size: 17px; margin-bottom: 12px; }
.long-read aside table { width: 100%; font-size: 14px; border-collapse: collapse; }
.long-read aside th, .long-read aside td { text-align: left; padding: 6px 0; border-bottom: 1px solid var(--rule-soft); }
.long-read aside th { color: var(--ink-mute); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Verdict shelf (uneven cards) */
.verdict-shelf {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 28px;
}
.verdict-shelf__lead {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.verdict-shelf__lead h3 { font-size: 22px; margin-bottom: 10px; }
.verdict-shelf__rail { display: flex; flex-direction: column; gap: 18px; }
.verdict-shelf__row {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.verdict-shelf__row h4 { margin: 0; font-size: 16px; }
.verdict-shelf__row p { margin: 4px 0 0; font-size: 13px; color: var(--ink-mute); }
.verdict-shelf__score {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  color: var(--data);
}

/* Verification ledger */
.verify-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.verify-list__row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule-soft);
}
.verify-list__row:last-child { border-bottom: 0; }
.verify-list__row:nth-child(even) { background: var(--paper); }
.verify-list__row__num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.verify-list__row h4 { margin: 0 0 6px; font-size: 17px; }
.verify-list__row p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Resource card (responsible play) */
.resource-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.resource-card__media {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-deep);
}
.resource-card__media img { width: 100%; height: 100%; object-fit: cover; }
.resource-card__body h3 { margin-bottom: 12px; }
.resource-card__body p { font-size: 15px; }
.resource-card__cta { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

/* News rail */
.news-rail {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 32px;
}
.news-rail__lead article {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.news-rail__lead figure { margin: 0; }
.news-rail__lead .news-media { aspect-ratio: 16/9; overflow: hidden; background: var(--paper-deep); }
.news-rail__lead .news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-rail__lead__body { padding: 22px 26px 24px; }
.news-rail__lead__date { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase; }
.news-rail__lead__body h3 { font-size: 22px; margin: 8px 0 8px; }
.news-rail__lead__body p { font-size: 15px; margin: 0 0 12px; }

.news-rail__list {
  border-left: 1px solid var(--rule);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news-rail__item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-soft);
}
.news-rail__item:last-child { border-bottom: 0; }
.news-rail__item .date { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; }
.news-rail__item h4 { font-size: 16px; margin: 6px 0 6px; font-family: var(--serif); font-weight: 700; }
.news-rail__item p { font-size: 14px; margin: 0; }

/* FAQ field */
.faq-field {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 36px;
}
.faq-field details {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq-field summary {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-field summary::-webkit-details-marker { display: none; }
.faq-field summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
}
.faq-field details[open] summary::after { content: "−"; }
.faq-field details p { margin: 14px 0 0; font-size: 15px; }

/* Colophon */
.colophon {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 28px;
}
.colophon h3 { color: var(--paper); }
.colophon p { color: #c8d4e3; }
.colophon__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.colophon small { color: #8a98ad; font-size: 13px; }

/* Footer */
.site-footer {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  padding: 56px 0 28px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--ink); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.site-footer__legal {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
}
.site-footer__legal p { margin: 0; font-size: 12px; color: var(--ink-mute); }

/* Glossary strip */
.glossary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  background: var(--surface);
}
.glossary dt {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.glossary dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* Mobile sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 280;
}
.sticky-cta .btn {
  width: 100%;
  padding: 16px 22px;
  font-size: 16px;
  box-shadow: 0 14px 30px -10px rgba(20,30,50,0.4);
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .ledger, .ledger--reverse { grid-template-columns: minmax(0, 1fr); }
  .long-read { grid-template-columns: minmax(0, 1fr); }
  .long-read aside { position: static; }
  .verdict-shelf { grid-template-columns: minmax(0, 1fr); }
  .news-rail { grid-template-columns: minmax(0, 1fr); }
  .news-rail__list { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 18px; }
  .resource-card { grid-template-columns: minmax(0, 1fr); }
  .faq-field { grid-template-columns: minmax(0, 1fr); }
  .editorial-rail { grid-template-columns: minmax(0, 1fr); }
  .data-ledger__row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px 16px; }
  .data-ledger__row__payout { grid-column: 1 / -1; }
  .glossary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .colophon__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .sticky-cta { display: block; }
  body.has-sticky { padding-bottom: 88px; }
  .section { padding: 44px 0; }
  .hero__grid { padding: 32px 0 36px; }
  .hero__copy h1 { font-size: 30px; }
  .data-ledger__row { grid-template-columns: minmax(0, 1fr); gap: 4px; padding: 14px 16px; }
  .data-ledger__row--head { display: none; }
  .data-ledger__row .col-label {
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .ledger__note { flex-direction: row; }
  .verdict-shelf__row { grid-template-columns: minmax(0, 1fr); }
  .verdict-shelf__score { text-align: left; }
  .resource-card { padding: 22px; }
  .resource-card__cta { flex-direction: column; align-items: stretch; }
  .resource-card__cta .btn { width: 100%; }
  .colophon__grid { grid-template-columns: minmax(0, 1fr); }
  .glossary { grid-template-columns: minmax(0, 1fr); }
  .site-footer__cols { grid-template-columns: minmax(0, 1fr); }
}

/* Inline image card / figure */
.figcard {
  margin: 22px 0;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.figcard__media { aspect-ratio: 4/3; overflow: hidden; }
.figcard__media img { width: 100%; height: 100%; object-fit: cover; }
.figcard__cap { padding: 12px 18px; font-size: 13px; color: var(--ink-mute); font-style: italic; border-top: 1px solid var(--rule-soft); }

/* Two-column inline image row */
.inline-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 24px;
  margin: 28px 0;
  align-items: start;
}
.inline-row--rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.inline-row__media { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--paper-deep); }
.inline-row__media img { width: 100%; height: 100%; object-fit: cover; }
.inline-row__body p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .inline-row, .inline-row--rev { grid-template-columns: minmax(0, 1fr); }
}

/* Card helpers (rarely used; avoid equal grids) */
.issue-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
  background: var(--surface);
}
.issue-card h4 { font-size: 17px; margin: 0 0 8px; }
.issue-card p { font-size: 14px; margin: 0; }

/* Pull quote */
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.35;
}
.pullquote cite { display: block; margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }

/* Source note */
.source-note {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 16px;
  margin: 18px 0;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}

/* Sidebar inline note (numbered callouts in long-read) */
.callout {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--data);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 22px 0;
  background: var(--surface);
}
.callout h4 { margin: 0 0 6px; font-size: 15px; color: var(--data); letter-spacing: 0.04em; }
.callout p { margin: 0; font-size: 14px; }

/* Reading-wide article body */
.prose {
  font-size: 17px;
  line-height: 1.7;
}
.prose p { margin: 0 0 1.15em; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
}
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--rule); text-align: left; }
.prose th { background: var(--paper-deep); color: var(--ink); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Subtle in-prose evidence mark */
.evidence-mark {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  margin-right: 6px;
}

/* Reduce motion globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}