:root {
  --ink: #111210;
  --ink-soft: #1a1b19;
  --paper: #f2eee5;
  --paper-deep: #e7e1d5;
  --white: #fffdf8;
  --signal: #b83b2b;
  --signal-dark: #8f291e;
  --signal-bright: #dc604d;
  --archive: #2d5365;
  --ochre: #a36b26;
  --muted: #5f615c;
  --line: rgba(17, 18, 16, 0.18);
  --line-light: rgba(255, 253, 248, 0.18);
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(92vw, 1320px);
  --header-height: 86px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 70px rgba(17, 18, 16, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

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

body.menu-open { overflow: hidden; }

::selection { color: var(--white); background: var(--signal); }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 11px 15px;
  color: var(--white);
  background: var(--signal);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  background: transparent;
}
.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--signal);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(17, 18, 16, 0.86);
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .3s var(--ease), background .3s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(17, 18, 16, 0.96);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark { width: 42px; height: 42px; }
.brand-mark rect { fill: transparent; stroke: currentColor; stroke-width: 2; }
.brand-mark path { fill: currentColor; }
.brand span { display: grid; line-height: 1; }
.brand strong {
  font-size: .85rem;
  letter-spacing: .16em;
  font-weight: 900;
}
.brand small {
  margin-top: 7px;
  color: rgba(255, 253, 248, .58);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .08em;
}
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  position: relative;
  color: rgba(255, 253, 248, .76);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta {
  padding: 12px 16px;
  color: var(--white);
  background: var(--signal);
}
.site-nav .nav-cta:hover { background: var(--signal-dark); }
.menu-toggle { display: none; }

.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  color: var(--white);
  background:
    radial-gradient(circle at 74% 27%, rgba(212, 72, 50, .13), transparent 26%),
    radial-gradient(circle at 12% 75%, rgba(45, 83, 101, .13), transparent 25%),
    var(--ink);
  overflow: hidden;
}
.hero-grid {
  min-height: calc(100vh - var(--header-height) - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: clamp(70px, 9vw, 132px);
}
.eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 31px;
  color: rgba(255, 253, 248, .58);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(212, 72, 50, .13);
}
.hero h1 {
  margin: 0 0 28px;
  max-width: 900px;
  font-family: var(--sans);
  font-size: clamp(3.3rem, 6.1vw, 6.9rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .91;
}
.hero h1 em {
  color: var(--signal-bright);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, .72);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--signal); }
.button-primary:hover { background: var(--signal-dark); }
.button-ghost { color: var(--white); border-color: rgba(255, 253, 248, .28); }
.button-ghost:hover { border-color: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255, 253, 248, .42); }
.button-outline-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.independence-note {
  margin: 22px 0 0;
  color: rgba(255, 253, 248, .42);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .04em;
}

.hero-visual {
  position: relative;
  height: min(630px, 67vh);
  min-height: 540px;
}
.visual-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, .24);
  box-shadow: var(--shadow);
}
.frame-main {
  inset: 0 9% 15% 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 52px);
  background:
    linear-gradient(145deg, rgba(17, 18, 16, .22), rgba(17, 18, 16, .88)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 1px, transparent 1px 21px),
    linear-gradient(135deg, #3a3b36, #151614 67%);
}
.frame-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.frame-index {
  position: absolute;
  top: 24px;
  left: 26px;
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .1em;
}
.frame-main p {
  position: relative;
  z-index: 1;
  margin-bottom: 23px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.25vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.frame-main small {
  position: relative;
  z-index: 1;
  color: rgba(255, 253, 248, .52);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
}
.frame-small {
  width: 48%;
  min-height: 150px;
  padding: 20px;
  display: grid;
  align-content: space-between;
}
.frame-small span {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
}
.frame-small strong {
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.frame-a { right: 0; bottom: 0; color: var(--ink); background: var(--paper); }
.frame-b { right: 4%; top: 9%; color: var(--white); background: var(--archive); transform: translate(18%, -20%); }
.hero-seal {
  position: absolute;
  right: -1%;
  bottom: 27%;
  width: 130px;
  height: 130px;
  color: var(--white);
  animation: sealRotate 24s linear infinite;
}
.hero-seal text { fill: currentColor; font-family: var(--mono); font-size: 10.7px; letter-spacing: 2.2px; }
.hero-seal circle { fill: var(--signal); }
@keyframes sealRotate { to { transform: rotate(360deg); } }

.facts-rail { border-top: 1px solid var(--line-light); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid > div {
  min-width: 0;
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px clamp(15px, 2vw, 30px);
  border-right: 1px solid var(--line-light);
}
.facts-grid > div:first-child { border-left: 1px solid var(--line-light); }
.facts-grid strong {
  color: var(--signal-bright);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
}
.facts-grid span {
  min-width: 0;
  max-width: 145px;
  color: rgba(255, 253, 248, .62);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.facts-source {
  margin-top: 0;
  padding-block: 9px 13px;
  color: rgba(255, 253, 248, .35);
  font-family: var(--mono);
  font-size: .58rem;
  text-align: right;
}

.section-dark { color: var(--white); background: var(--ink); }
.section-light { color: var(--ink); background: var(--white); }
.section-paper { color: var(--ink); background: var(--paper); }
.section-signal { color: var(--white); background: var(--signal); }

.statement { padding-block: clamp(100px, 13vw, 190px); }
.statement-grid {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(280px, .38fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.section-number {
  color: rgba(255, 253, 248, .62);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
}
.kicker {
  margin-bottom: 18px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-dark .kicker, .legal-hero .kicker { color: var(--signal-bright); }
.section-signal .kicker { color: var(--white); }
.statement h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.02;
}
.statement h2 span { color: rgba(255, 253, 248, .36); }
.statement-side {
  padding-top: 54px;
  color: rgba(255, 253, 248, .64);
  font-size: .95rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.4;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(6px); }
.text-link.light { color: var(--white); }

.dossier, .responsibility, .evidence, .timeline, .sources { padding-block: clamp(95px, 11vw, 160px); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .46fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 96px);
}
.section-heading h2, .method h2, .response h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}
.section-heading > p, .section-heading > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.75;
}
.section-heading-dark > div:last-child > p { color: rgba(255, 253, 248, .62); }

.issue-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.issue-panel {
  min-height: 670px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4.5vw, 64px);
}
.issue-outside { background: var(--paper); }
.issue-inside { background: var(--ink); color: var(--white); }
.issue-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
}
.issue-inside .issue-topline { color: rgba(255, 253, 248, .5); }
.issue-icon {
  width: 90px;
  height: 90px;
  margin: clamp(50px, 8vw, 100px) 0 35px;
  color: var(--signal);
}
.issue-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.issue-panel h3 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}
.issue-panel > p { max-width: 580px; color: var(--muted); }
.issue-inside > p { color: rgba(255, 253, 248, .62); }
.clean-list {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .02em;
}
.issue-inside .clean-list li { border-color: var(--line-light); }
.clean-list li::before { content: "↘"; position: absolute; left: 0; color: var(--signal); }
.issue-inside .clean-list li::before { color: var(--signal-bright); }

.human-impact { padding: clamp(90px, 11vw, 150px) 0 0; }
.impact-quote {
  max-width: 1020px;
  margin-bottom: clamp(70px, 8vw, 110px);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 5.1rem);
  letter-spacing: -.05em;
  line-height: 1.05;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.impact-grid > div { min-height: 230px; padding: 28px 34px 10px 0; border-right: 1px solid var(--line); }
.impact-grid > div:not(:first-child) { padding-left: 34px; }
.impact-grid > div:last-child { border-right: 0; }
.impact-grid span { font-family: var(--mono); font-size: .63rem; color: var(--signal); }
.impact-grid h3 { margin: 40px 0 10px; font-size: 1.03rem; text-transform: uppercase; letter-spacing: .04em; }
.impact-grid p { max-width: 330px; color: var(--muted); font-size: .9rem; }

.responsibility-table {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: collapse;
  table-layout: fixed;
}
.table-row {
  border-bottom: 1px solid var(--line);
}
.table-row:last-child { border-bottom: 0; }
.table-row > th, .table-row > td {
  width: 35.5%;
  min-width: 0;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}
.table-row > th:first-child { width: 29%; }
.table-row > th:last-child, .table-row > td:last-child { border-right: 0; }
.responsibility-table tbody tr:last-child > * { border-bottom: 0; }
.table-head { color: var(--white); background: var(--ink); }
.table-head > th {
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.table-row strong { display: block; margin-bottom: 6px; font-size: .98rem; }
.table-row th > span:not(.responsibility-badge) { display: block; color: var(--muted); font-size: .78rem; }
.table-row p { margin: 12px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.responsibility-badge {
  display: inline-flex;
  padding: 6px 8px;
  color: var(--muted);
  background: rgba(17,18,16,.055);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.responsibility-badge.is-primary { color: var(--white); background: var(--archive); }
.balance-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 28px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--archive);
}
.balance-note strong { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.balance-note p { max-width: 850px; margin: 0; color: rgba(255,253,248,.72); font-size: .86rem; }

.city-context { padding-block: clamp(95px, 12vw, 175px); }
.context-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(460px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}
.context-heading h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}
.context-heading > p:not(.kicker) { max-width: 600px; color: rgba(255,253,248,.62); }
.context-heading .text-link { margin-top: 25px; }
.context-stats { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-light); }
.context-stats > div {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(25px, 3vw, 40px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.context-stats > div:nth-child(2n) { border-right: 0; }
.context-stats > div:nth-last-child(-n+2) { border-bottom: 0; }
.context-stats strong {
  color: var(--signal-bright);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}
.context-stats span {
  max-width: 250px;
  color: rgba(255,253,248,.6);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.evidence-card {
  position: relative;
  min-width: 0;
  color: var(--white);
  background: var(--ink-soft);
  overflow: hidden;
}
.evidence-poster {
  position: relative;
  isolation: isolate;
  aspect-ratio: 9 / 13;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: #292a27;
  background-image:
    linear-gradient(145deg, transparent 20%, rgba(255,255,255,.08) 21%, transparent 22%),
    repeating-linear-gradient(45deg, transparent 0 13px, rgba(255,255,255,.025) 13px 14px);
  background-size: cover;
  background-position: center;
  transition: filter .45s ease, transform .55s var(--ease);
}
.evidence-poster::before {
  content: attr(data-index);
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .08;
  font-family: var(--serif);
  font-size: 11rem;
}
.poster-01 { background-color: #3a3029; }
.poster-02 { background-color: #2a3435; }
.poster-03 { background-color: #34302c; }
.poster-04 { background-color: #28343a; }
.poster-05 { background-color: #3d3529; }
.poster-06 { background-color: #2a322c; }
.poster-07 { background-color: #30313b; }
.poster-08 { background-color: #39312e; }
.poster-09 { background-color: #263438; }
.poster-10 { background-color: #373627; }
.evidence-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evidence-poster.has-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,18,16,.36), transparent 52%);
}
.play-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  border: 1px solid rgba(255,253,248,.58);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17,18,16,.3);
  font-size: .82rem;
  backdrop-filter: blur(5px);
}
.evidence-card:hover .evidence-poster { transform: scale(1.025); filter: brightness(.82); }
.evidence-meta { display: grid; gap: 4px; padding: 18px 17px 8px; }
.evidence-meta time { font-family: var(--mono); font-size: .73rem; font-weight: 700; letter-spacing: .04em; }
.evidence-meta small { color: rgba(255,253,248,.48); font-size: .66rem; }
.evidence-open {
  display: block;
  padding: 0 17px 18px;
  color: var(--signal-bright);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.thumb-consent {
  margin-top: 20px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,253,248,.38);
  color: var(--white);
  background: transparent;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}
.thumb-consent span { display: block; margin-top: 4px; color: rgba(255,253,248,.62); font-family: var(--mono); font-size: .54rem; font-weight: 400; text-transform: none; }
.thumb-consent[disabled] { color: rgba(255,253,248,.5); cursor: default; }
.archive-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}
.archive-action p { max-width: 630px; margin: 0; color: rgba(255,253,248,.57); font-size: .88rem; }

.method { padding-block: clamp(95px, 12vw, 175px); }
.method-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(70px, 11vw, 170px); }
.method-heading { position: sticky; top: 120px; align-self: start; }
.method-heading p:last-child { max-width: 480px; margin-top: 30px; color: var(--muted); }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.method-list li > span { font-family: var(--mono); color: var(--signal); font-size: .65rem; }
.method-list h3 { margin: 0 0 8px; font-size: .96rem; text-transform: uppercase; letter-spacing: .04em; }
.method-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.timeline-list { position: relative; }
.timeline-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 223px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 190px 66px minmax(0, 760px);
  gap: 0;
  min-height: 220px;
  padding-bottom: 38px;
}
.timeline-date { padding: 5px 28px 0 0; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .05em; line-height: 1.55; text-align: right; }
.timeline-dot {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 4px auto 0;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--archive);
  box-shadow: 0 0 0 1px var(--archive);
}
.timeline-dot.is-live { background: var(--signal); box-shadow: 0 0 0 1px var(--signal), 0 0 0 8px rgba(212,72,50,.12); }
.timeline-item h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.75rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.1; }
.timeline-item > div:last-child > p:last-child { max-width: 700px; color: var(--muted); font-size: .9rem; }

.asks { padding-block: clamp(100px, 12vw, 175px); }
.section-heading-signal > p { color: var(--white); }
.asks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,253,248,.3); border: 1px solid rgba(255,253,248,.3); }
.ask-column { padding: clamp(30px, 5vw, 65px); background: var(--signal); }
.ask-label { margin-bottom: 50px; font-family: var(--mono); font-size: .64rem; letter-spacing: .09em; }
.ask-column ol { margin: 0; padding: 0; list-style: none; }
.ask-column li { display: grid; grid-template-columns: 43px 1fr; gap: 15px; padding: 22px 0; border-top: 1px solid rgba(255,253,248,.3); }
.ask-column li > span { font-family: var(--mono); font-size: .61rem; }
.ask-column li p { margin: 0; color: var(--white); font-size: .9rem; }
.ask-column li strong { color: var(--white); }
.joint-ask { max-width: 1040px; margin: clamp(70px, 9vw, 120px) auto 0; text-align: center; }
.joint-ask > span { font-family: var(--mono); font-size: .63rem; letter-spacing: .12em; }
.joint-ask h3 { margin: 25px 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 5rem); font-weight: 400; letter-spacing: -.05em; line-height: 1.02; }
.joint-ask p { max-width: 720px; margin-inline: auto; color: var(--white); }

.response { padding-block: clamp(100px, 12vw, 170px); }
.response-grid { display: grid; grid-template-columns: 1fr .65fr; gap: clamp(70px, 10vw, 160px); align-items: start; }
.response-copy { padding-top: 10px; }
.response-copy > p:first-child { color: rgba(255,253,248,.65); }
.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 40px 0 20px;
  padding: 20px 0;
  border-block: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}
.contact-mail span { color: var(--signal-bright); }
.small-print { color: rgba(255,253,248,.62); font-family: var(--mono); font-size: .62rem; line-height: 1.7; }

.source-list { border-top: 1px solid var(--line); }
.source-list a {
  display: grid;
  grid-template-columns: 55px 1fr 40px;
  gap: 20px;
  align-items: center;
  min-height: 105px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease), background .25s ease;
}
.source-list a:hover { padding-inline: 20px; background: var(--paper); }
.source-list a > span { font-family: var(--mono); font-size: .63rem; color: var(--signal); }
.source-list strong { display: block; margin-bottom: 5px; font-size: 1.04rem; }
.source-list small { display: block; color: var(--muted); font-size: .78rem; }
.source-list b { color: var(--signal); font-weight: 400; text-align: right; }

.site-footer { color: var(--white); background: var(--ink); border-top: 1px solid var(--line-light); }
.footer-main { min-height: 300px; display: grid; grid-template-columns: 1.2fr .55fr .75fr; gap: 70px; align-items: start; padding-block: 70px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand .brand-mark { width: 54px; height: 54px; }
.footer-brand div { display: grid; gap: 7px; }
.footer-brand strong { font-size: .9rem; letter-spacing: .1em; }
.footer-brand span { color: rgba(255,253,248,.68); font-size: .76rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,253,248,.68); font-size: .78rem; transition: color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact > span { margin-bottom: 8px; color: var(--signal-bright); font-family: var(--mono); font-size: .61rem; letter-spacing: .1em; }
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255,253,248,.62);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .03em;
}
.noscript { padding: 14px 20px; color: var(--white); background: var(--signal); text-align: center; font-size: .8rem; }

.privacy-page { padding-top: var(--header-height); }
.legal-hero { padding-block: clamp(100px, 12vw, 170px) 90px; color: var(--white); background: var(--ink); }
.legal-hero h1 { max-width: 980px; margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 7rem); font-weight: 400; letter-spacing: -.06em; line-height: .95; }
.legal-copy { padding-block: 90px 130px; background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 90px; }
.legal-nav { position: sticky; top: 110px; align-self: start; display: grid; gap: 10px; }
.legal-nav a { color: var(--muted); font-size: .76rem; }
.legal-content section { margin-bottom: 70px; scroll-margin-top: 110px; }
.legal-content h2 { margin-bottom: 20px; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; letter-spacing: -.035em; }
.legal-content h3 { margin: 30px 0 10px; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }
.legal-content p, .legal-content li { color: var(--muted); font-size: .94rem; }
.legal-content a { color: var(--archive); text-decoration: underline; text-underline-offset: 3px; }
.not-found-hero { min-height: 100vh; display: grid; align-items: center; }
.not-found-copy { max-width: 620px; margin: 35px 0; color: rgba(255,253,248,.65); }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(92vw, 1020px); }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .65rem; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 45px; }
  .hero-visual { min-height: 480px; }
  .frame-b { display: none; }
  .evidence-grid { grid-template-columns: repeat(4, 1fr); }
  .context-grid { grid-template-columns: 1fr; gap: 70px; }
  .footer-main { grid-template-columns: 1fr .4fr .75fr; gap: 45px; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .site-header.is-scrolled { height: 68px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand small { display: none; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255,253,248,.22);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: var(--white); transition: transform .25s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 90;
    height: calc(100dvh - var(--header-height));
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 40px;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
  }
  .menu-open .site-header { height: var(--header-height); }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { color: var(--white); font-family: var(--serif); font-size: clamp(1.7rem, 7vw, 3rem); font-weight: 400; letter-spacing: -.03em; text-transform: none; }
  .site-nav .nav-cta { margin-top: 10px; padding: 15px 20px; font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 85px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { height: 530px; min-height: 0; }
  .frame-main { inset: 0 4% 15% 0; }
  .frame-a { right: 0; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid > div { border-bottom: 1px solid var(--line-light); }
  .statement-grid { grid-template-columns: 50px 1fr; }
  .statement-side { grid-column: 2; padding-top: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading > p, .section-heading > div:last-child { max-width: 650px; }
  .issue-split { grid-template-columns: 1fr; }
  .issue-panel { min-height: 610px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid > div, .impact-grid > div:not(:first-child) { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .table-row > th, .table-row > td { padding: 22px 16px; }
  .evidence-grid { grid-template-columns: repeat(3, 1fr); }
  .context-grid { grid-template-columns: 1fr; gap: 70px; }
  .method-grid { grid-template-columns: 1fr; gap: 55px; }
  .method-heading { position: static; }
  .asks-grid { grid-template-columns: 1fr; }
  .response-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
  .legal-grid { grid-template-columns: 1fr; gap: 45px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 12px 20px; }
}

@media (max-width: 680px) {
  :root { --shell: min(90vw, 620px); }
  body { font-size: 16px; }
  .brand strong { font-size: .75rem; }
  .header-inner { gap: 12px; }
  .site-header .button { width: auto; min-height: 42px; padding: 10px 12px; font-size: .62rem; }
  .hero-grid { padding-block: 64px 80px; }
  .eyebrow-row { margin-bottom: 24px; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 5.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-visual { height: 440px; margin-top: 5px; }
  .frame-main { inset: 0 0 22% 0; padding: 28px; }
  .frame-main p { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .frame-small { width: 60%; min-height: 120px; }
  .hero-seal { width: 100px; height: 100px; right: 0; bottom: 23%; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid > div { min-height: 108px; padding: 18px 12px; }
  .facts-grid strong { font-size: 2.7rem; }
  .facts-grid span { font-size: .61rem; }
  .statement-grid { grid-template-columns: 1fr; gap: 25px; }
  .statement-side { grid-column: 1; }
  .section-number { display: none; }
  .statement h2 { font-size: clamp(2.65rem, 12vw, 4.4rem); }
  .section-heading h2, .method h2, .response h2 { font-size: clamp(2.3rem, 11vw, 4.2rem); }
  .issue-panel { min-height: 570px; padding: 26px; }
  .issue-icon { margin: 55px 0 30px; }
  .impact-quote { font-size: clamp(2.2rem, 10vw, 3.8rem); }
  .responsibility-table { border: 0; }
  .responsibility-table, .responsibility-table tbody, .responsibility-table tr, .responsibility-table th, .responsibility-table td { display: block; width: 100%; }
  .responsibility-table thead { display: none; }
  .table-row { margin-bottom: 18px; border: 1px solid var(--line); background: var(--white); }
  .responsibility-table .table-row > th:first-child, .table-row > th, .table-row > td { width: 100%; padding: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .responsibility-table tbody tr:last-child > th, .responsibility-table tbody tr:last-child > td { border-bottom: 1px solid var(--line); }
  .table-row > td:last-child { border-bottom: 0; }
  .table-row > td:nth-child(2)::before, .table-row > td:nth-child(3)::before {
    display: block;
    margin-bottom: 10px;
    font-family: var(--mono);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .table-row > td:nth-child(2)::before { content: "Gemeente Amsterdam"; }
  .table-row > td:nth-child(3)::before { content: "Rochdale"; }
  .balance-note { grid-template-columns: 1fr; gap: 10px; padding: 24px; }
  .context-stats { grid-template-columns: 1fr; }
  .context-stats > div { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line-light) !important; }
  .context-stats > div:last-child { border-bottom: 0 !important; }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-meta { padding: 13px 12px 5px; }
  .evidence-open { padding: 0 12px 14px; }
  .archive-action { align-items: stretch; flex-direction: column; }
  .method-list li { grid-template-columns: 42px 1fr; }
  .timeline-list::before { left: 7px; }
  .timeline-item { grid-template-columns: 30px 1fr; min-height: 0; padding-bottom: 65px; }
  .timeline-date { grid-column: 2; padding: 0 0 14px; text-align: left; }
  .timeline-dot { position: absolute; left: 0; margin-top: 4px; }
  .timeline-item > div:last-child { grid-column: 2; }
  .ask-column { padding: 28px 22px; }
  .ask-column li { grid-template-columns: 36px 1fr; }
  .joint-ask h3 { font-size: clamp(2.2rem, 10vw, 3.7rem); }
  .contact-mail { align-items: flex-start; font-size: 1.2rem; word-break: break-word; }
  .source-list a { grid-template-columns: 32px 1fr 20px; gap: 12px; }
  .source-list small { line-height: 1.4; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; align-items: flex-start; }
  .footer-brand .brand-mark { flex: 0 0 48px; width: 48px; height: 48px; }
  .legal-hero h1 { font-size: clamp(2.1rem, 11vw, 4.4rem); }
  .legal-content { min-width: 0; }
  .legal-content h2 { font-size: clamp(1.75rem, 8.5vw, 2.25rem); }
}

@media (max-width: 430px) {
  .evidence-grid { grid-template-columns: 1fr 1fr; }
  .evidence-meta small { display: none; }
  .evidence-open { font-size: .52rem; }
}

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

@media print {
  .site-header, .progress, .hero-actions, .thumb-consent, .archive-action, .site-footer { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .section-dark, .section-signal { color: #000; background: #fff; }
  .hero { min-height: auto; padding: 0; }
  .hero-grid, .statement-grid, .section-heading, .method-grid, .response-grid { display: block; min-height: auto; }
  .hero-visual, .facts-rail { display: none; }
  .hero h1 { font-size: 42pt; }
  .issue-split, .asks-grid { display: block; }
  .issue-panel, .ask-column { min-height: 0; color: #000; background: #fff; border: 1px solid #bbb; page-break-inside: avoid; }
  .evidence-grid { grid-template-columns: repeat(5, 1fr); }
  .evidence-card { color: #000; background: #fff; }
  .evidence-poster { aspect-ratio: 4 / 3; }
  a { color: #000; }
}

/* ========================================================================== 
   DOSSIER 2026 — editorial investigation layout
   ========================================================================== */

.news-body {
  --news-black: #0b0b0a;
  --news-cream: #f4f0e7;
  --news-white: #fffdf8;
  --news-red: #b83224;
  --news-coral: #f06a52;
  --news-yellow: #e8c757;
  --news-blue: #244c5b;
  --news-line: rgba(11, 11, 10, .22);
  color: var(--news-black);
  background: var(--news-cream);
}

.news-body .shell { width: min(92vw, 1440px); }
.news-body .news-header { background: rgba(11, 11, 10, .94); }
.news-body .news-header.is-scrolled { background: rgba(11, 11, 10, .98); }
.news-body .news-header .brand strong { letter-spacing: .12em; }
.news-body .news-header .site-nav { gap: 20px; }
.news-body .news-header .site-nav a { font-size: .66rem; }
.news-body .news-header .nav-cta { background: #b83224; }
.news-body .news-header .nav-cta:hover { background: #b83625; }

.news-hero {
  padding: var(--header-height) 0 clamp(70px, 8vw, 120px);
  color: var(--news-white);
  background: var(--news-black);
  overflow: hidden;
}

.news-edition {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr .7fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.62);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .09em;
}

.news-edition > * { padding: 8px 16px; border-right: 1px solid rgba(255,255,255,.15); }
.news-edition > *:first-child { padding-left: 0; color: var(--news-white); }
.news-edition > *:last-child { padding-right: 0; border-right: 0; text-align: right; color: var(--news-coral); }

.news-hero-copy { padding-block: clamp(62px, 8vw, 118px) clamp(42px, 6vw, 82px); }
.news-rubric {
  margin: 0 0 26px;
  color: rgba(255,255,255,.52);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.news-rubric span { color: var(--news-red); }
.news-hero .news-rubric span { color: var(--news-coral); }
.news-hero h1 {
  max-width: 1360px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
}
.news-hero h1 span {
  display: block;
  color: var(--news-coral);
  font-family: var(--serif);
  font-size: .61em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}
.news-deck {
  max-width: 1180px;
  margin: 45px 0 28px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.7vw, 4.25rem);
  letter-spacing: -.045em;
  line-height: 1.03;
}
.news-summary {
  max-width: 875px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}
.news-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 35px;
  margin-top: 33px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
}
.news-byline span:first-child { color: var(--news-white); font-weight: 800; }

.lead-media {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(270px, .65fr);
  gap: 12px;
  min-height: 610px;
}
.lead-photo,
.lead-still { position: relative; margin: 0; overflow: hidden; background: #222; }
.lead-photo img,
.lead-still img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.lead-photo::after,
.lead-still::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 45%); pointer-events: none; }
.lead-photo:hover img,
.lead-still:hover img { transform: scale(1.018); }
.lead-photo figcaption,
.lead-still > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--news-white);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .06em;
}
.lead-photo figcaption a { color: rgba(255,255,255,.78); text-align: right; }
.lead-stills { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.lead-still > span { display: grid; gap: 5px; }
.lead-still b { font-size: .61rem; letter-spacing: .07em; }
.lead-still small { color: rgba(255,255,255,.68); font-size: .52rem; }
.photo-context-note {
  margin: 13px auto 0;
  color: rgba(255,255,255,.5);
  font-family: var(--mono);
  font-size: .58rem;
  line-height: 1.55;
}

.news-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(45px, 6vw, 82px);
  border-block: 1px solid rgba(255,255,255,.2);
}
.news-facts > div { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid rgba(255,255,255,.2); }
.news-facts > div:first-child { padding-left: 0; }
.news-facts > div:last-child { padding-right: 0; border-right: 0; }
.news-facts strong { color: var(--news-coral); font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 4.15rem); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.news-facts span { max-width: 215px; color: rgba(255,255,255,.6); font-family: var(--mono); font-size: .6rem; letter-spacing: .06em; line-height: 1.55; text-transform: uppercase; }
.metric-notes { padding-top: 13px; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: .54rem; line-height: 1.55; }
.metric-notes p { margin: 0 0 4px; }

.metro {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  contain: layout paint;
  color: var(--news-black);
  background: var(--news-yellow);
  border-block: 1px solid var(--news-black);
}
.metro-track {
  width: max-content;
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 24px;
  animation: metroMove 42s linear infinite;
  will-change: transform;
}
.metro-track span { font-family: var(--mono); font-size: .68rem; font-weight: 900; letter-spacing: .075em; white-space: nowrap; }
.metro-track i { color: var(--news-red); font-size: .45rem; font-style: normal; }
@keyframes metroMove { to { transform: translateX(-50%); } }

.news-section { padding-block: clamp(90px, 10vw, 160px); }
.section-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--news-black);
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.section-marker span { color: var(--news-red); }
.section-marker-light { color: var(--news-white); border-color: rgba(255,255,255,.54); }
.section-marker-light span { color: var(--news-white); }
.news-intro .section-marker span,
.dossier-section .section-marker span,
.place-section .section-marker span,
.responsibility-news .section-marker span,
.timeline-news .section-marker span,
.standards-section .section-marker span,
.sources-news .section-marker span { color: #a92f22; }

.news-intro { background: var(--news-white); }
.news-intro-grid { display: grid; grid-template-columns: .33fr 1.12fr .55fr; gap: clamp(35px, 6vw, 90px); align-items: start; }
.news-intro h2,
.news-section-head h2,
.evidence-heading h2,
.city-data h2,
.reach-head h2,
.asks-news-head h2,
.standards-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .94;
}
.news-intro h2 em { color: var(--news-red); font-weight: 400; }
.news-intro .dropcap { max-width: 820px; margin: 42px 0 0; color: #343530; font-size: 1.08rem; line-height: 1.85; }
.dropcap::first-letter { float: left; margin: .08em .12em 0 0; color: var(--news-red); font-family: var(--serif); font-size: 5.4em; line-height: .72; }
.news-pullquote { margin: 0; padding: 25px 0 0; border-top: 8px solid var(--news-red); }
.news-pullquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.75rem); letter-spacing: -.03em; line-height: 1.12; }

.causal-section { color: var(--news-white); background: var(--news-blue); }
.news-section-head { display: grid; grid-template-columns: .27fr 1fr .5fr; gap: clamp(35px, 6vw, 90px); align-items: start; margin-bottom: clamp(55px, 7vw, 90px); }
.causal-section .section-marker { border-color: rgba(255,255,255,.6); }
.causal-section .section-marker span { color: var(--news-yellow); }
.causal-section .news-section-head > p,
.evidence-heading > p,
.reach-head > p { margin: 0; color: rgba(255,255,255,.65); line-height: 1.75; }
.causal-chain { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); border-left: 1px solid rgba(255,255,255,.3); }
.causal-chain li { position: relative; min-height: 310px; padding: clamp(28px, 3.5vw, 52px); border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.causal-chain li::after { content: "→"; position: absolute; right: -16px; top: 50%; z-index: 2; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--news-black); background: var(--news-yellow); font-family: var(--sans); font-weight: 900; transform: translateY(-50%); }
.causal-chain li:nth-child(3)::after { content: "↓"; top: auto; right: 50%; bottom: -16px; transform: translateX(50%); }
.causal-chain li:nth-child(4)::after { display: none; }
.causal-chain li:last-child::after { display: none; }
.causal-chain li > span { color: var(--news-yellow); font-family: var(--mono); font-size: .57rem; font-weight: 800; letter-spacing: .09em; }
.causal-chain h3 { margin: clamp(50px, 5vw, 75px) 0 20px; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.7rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.causal-chain p { margin: 0; color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.65; }
.analysis-caveat { margin: 25px 0 0; padding-left: 18px; border-left: 3px solid var(--news-yellow); color: rgba(255,255,255,.67); font-family: var(--mono); font-size: .61rem; line-height: 1.65; }

.dossier-section { background: var(--news-cream); }
.dossier-section .news-section-head > p,
.responsibility-news .news-section-head > p,
.sources-news .news-section-head > p { margin: 0; color: var(--muted); line-height: 1.75; }
.investigation-card { display: grid; grid-template-columns: minmax(300px, .83fr) minmax(0, 1.17fr); margin-bottom: 22px; border: 1px solid var(--news-line); background: var(--news-white); overflow: hidden; }
.investigation-card > * { min-width: 0; }
.investigation-card-reverse { grid-template-columns: minmax(0, 1.17fr) minmax(300px, .83fr); }
.investigation-card-reverse .investigation-media { grid-column: 2; grid-row: 1; }
.investigation-card-reverse .investigation-copy { grid-column: 1; grid-row: 1; }
.investigation-media { min-height: 660px; overflow: hidden; background: #20211f; }
.investigation-media > a,
.investigation-media figure { position: relative; width: 100%; height: 100%; display: block; margin: 0; overflow: hidden; }
.investigation-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03); transition: transform .75s var(--ease), filter .4s ease; }
.investigation-media > a::after,
.investigation-media figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 42%); }
.investigation-media > a:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.06); }
.investigation-media > a span,
.investigation-media figcaption { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 2; color: white; font-family: var(--mono); font-size: .58rem; font-weight: 800; letter-spacing: .06em; }
.investigation-copy { padding: clamp(34px, 5.2vw, 78px); }
.dossier-label { display: flex; justify-content: space-between; gap: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--news-line); font-family: var(--mono); font-size: .56rem; letter-spacing: .07em; }
.dossier-label span { color: var(--news-red); font-weight: 900; }
.dossier-label b { max-width: 390px; text-align: right; }
.investigation-copy h3 { margin: clamp(38px, 5vw, 70px) 0 25px; font-family: var(--serif); font-size: clamp(3.3rem, 6.6vw, 7.2rem); font-weight: 400; letter-spacing: -.065em; line-height: .82; }
.investigation-copy h3 { overflow-wrap: anywhere; hyphens: auto; }
.investigation-copy > p { color: #44463f; line-height: 1.78; }
.dossier-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 35px 0; border-block: 1px solid var(--news-line); }
.dossier-facts div { padding: 18px; border-right: 1px solid var(--news-line); }
.dossier-facts div:first-child { padding-left: 0; }
.dossier-facts div:last-child { padding-right: 0; border-right: 0; }
.dossier-facts dt { margin-bottom: 8px; color: var(--news-red); font-family: var(--mono); font-size: .52rem; font-weight: 900; letter-spacing: .08em; }
.dossier-facts dd { margin: 0; font-size: .72rem; line-height: 1.55; }
.research-question { padding: 24px; color: var(--news-white); background: var(--news-black); }
.research-question span { color: var(--news-yellow); font-family: var(--mono); font-size: .54rem; font-weight: 800; letter-spacing: .08em; }
.research-question p { margin: 15px 0 0; font-family: var(--serif); font-size: clamp(1.25rem, 2.05vw, 2rem); line-height: 1.12; }
.evidence-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.evidence-links a { padding: 9px 12px; border: 1px solid var(--news-line); font-family: var(--mono); font-size: .55rem; font-weight: 800; }
.evidence-links a:hover { color: white; background: var(--news-red); border-color: var(--news-red); }
.micro-note { margin: 17px 0 0 !important; font-family: var(--mono); font-size: .54rem; }
.service-note { margin-top: 22px !important; padding: 18px; border-left: 4px solid var(--news-red); background: var(--news-cream); font-family: var(--mono); font-size: .61rem; line-height: 1.7 !important; }

.place-section { background: var(--news-white); }
.photo-essay { display: grid; grid-template-columns: 1.55fr .65fr; gap: 12px; min-height: 720px; }
.photo-essay figure { position: relative; margin: 0; overflow: hidden; background: #242522; }
.photo-essay img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .8s var(--ease), filter .4s ease; }
.photo-essay figure:hover img { transform: scale(1.015); filter: saturate(1); }
.photo-essay figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.74), transparent 40%); }
.photo-essay figcaption { position: absolute; right: 20px; bottom: 20px; left: 20px; z-index: 2; display: grid; gap: 5px; color: white; font-family: var(--mono); font-size: .56rem; letter-spacing: .06em; }
.photo-essay figcaption a { color: rgba(255,255,255,.7); }

.evidence-news { color: var(--news-white); background: var(--news-black); }
.evidence-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(40px, 8vw, 130px); align-items: end; margin-bottom: clamp(55px, 7vw, 90px); }
.evidence-heading .section-marker { margin-bottom: 45px; }
.news-evidence-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.18); }
.news-video-card { min-width: 0; color: var(--news-white); background: #151614; overflow: hidden; }
.video-image { position: relative; aspect-ratio: 4 / 5; display: block; overflow: hidden; background: #292a27; }
.video-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.42), transparent 50%); }
.video-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .35s ease; }
.video-image i { position: absolute; top: 50%; left: 50%; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; padding-left: 3px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(0,0,0,.28); font-size: .75rem; font-style: normal; transform: translate(-50%, -50%); backdrop-filter: blur(4px); }
.news-video-card:hover .video-image img { transform: scale(1.04); filter: brightness(.75); }
.video-meta { display: grid; grid-template-columns: 1fr auto; gap: 5px 12px; padding: 18px; }
.video-meta time { font-family: var(--mono); font-size: .7rem; font-weight: 900; }
.video-meta b { color: var(--news-coral); font-family: var(--mono); font-size: .52rem; letter-spacing: .05em; text-align: right; }
.video-meta small { grid-column: 1 / -1; color: rgba(255,255,255,.48); font-family: var(--mono); font-size: .48rem; letter-spacing: .06em; }
.archive-bar { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.25); }
.archive-bar p { display: grid; gap: 5px; margin: 0; }
.archive-bar b { color: var(--news-yellow); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.archive-bar span { color: rgba(255,255,255,.55); font-size: .78rem; }

.responsibility-news { background: var(--news-cream); }
.responsibility-cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--news-line); background: var(--news-white); }
.responsibility-cards article { min-height: 550px; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 55px); border-right: 1px solid var(--news-line); }
.responsibility-cards article:last-child { border-right: 0; }
.responsibility-cards article > span { color: var(--news-red); font-family: var(--mono); font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.responsibility-cards h3 { margin: 70px 0 32px; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.75rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.responsibility-cards ul { margin: 0; padding: 0; list-style: none; }
.responsibility-cards li { padding: 13px 0; border-top: 1px solid var(--news-line); font-size: .82rem; line-height: 1.55; }
.responsibility-cards a { margin-top: auto; padding-top: 28px; color: var(--news-red); font-family: var(--mono); font-size: .58rem; font-weight: 900; letter-spacing: .06em; }
.responsibility-cards .responsibility-bridge { color: var(--news-white); background: var(--news-blue); }
.responsibility-bridge li { border-color: rgba(255,255,255,.22); }
.responsibility-bridge a { color: var(--news-yellow); }
.responsibility-bridge > span { color: var(--news-yellow) !important; }
.responsibility-disclaimer { margin: 15px 0 0; color: var(--muted); font-family: var(--mono); font-size: .55rem; line-height: 1.65; }

.city-data { color: var(--news-white); background: var(--news-red); }
.city-data-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(55px, 9vw, 150px); align-items: start; }
.city-data-grid > * { min-width: 0; }
.city-data h2 { margin: 45px 0 30px; }
.city-data p { max-width: 600px; color: var(--news-white); }
.city-data a { display: inline-block; margin-top: 20px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.7); font-family: var(--mono); font-size: .62rem; font-weight: 900; }
.city-number-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.35); }
.city-number-grid div { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 50px); border-right: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); }
.city-number-grid div:nth-child(2n) { border-right: 0; }
.city-number-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.city-number-grid strong { font-family: var(--serif); font-size: clamp(2.5rem, 3.6vw, 4.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .85; overflow-wrap: anywhere; }
.city-number-grid span { max-width: 240px; font-family: var(--mono); font-size: .58rem; font-weight: 800; letter-spacing: .06em; line-height: 1.6; text-transform: uppercase; }

.timeline-news { background: var(--news-white); }
.news-timeline { border-top: 2px solid var(--news-black); }
.news-timeline article { display: grid; grid-template-columns: .28fr 70px 1fr; min-height: 210px; padding: 36px 0; border-bottom: 1px solid var(--news-line); }
.news-timeline article > * { min-width: 0; }
.news-timeline time { padding-top: 5px; font-family: var(--mono); font-size: .65rem; font-weight: 900; letter-spacing: .06em; }
.news-timeline article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--news-red); font-family: var(--mono); font-size: .55rem; }
.news-timeline h3 { max-width: 950px; margin: 0 0 15px; font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 4.3rem); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
.news-timeline h3 { overflow-wrap: anywhere; hyphens: auto; }
.news-timeline p { max-width: 780px; margin: 0; color: var(--muted); line-height: 1.7; }

.reach-section { color: var(--news-white); background: #161713; }
.reach-head { display: grid; grid-template-columns: .28fr 1fr .52fr; gap: clamp(35px, 6vw, 90px); align-items: start; margin-bottom: clamp(55px, 7vw, 90px); }
.reach-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(45px, 7vw, 105px); align-items: center; }
.reach-stats > div:not(.social-actions) { padding-block: 28px; border-block: 1px solid rgba(255,255,255,.22); }
.reach-stats > div:nth-child(2) { border-top: 0; }
.reach-stats strong { display: block; color: var(--news-yellow); font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 7.5rem); font-weight: 400; letter-spacing: -.06em; line-height: .86; }
.reach-stats span { display: block; margin-top: 15px; color: rgba(255,255,255,.65); font-family: var(--mono); font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
.reach-stats > p { margin: 22px 0; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: .52rem; line-height: 1.65; }
.social-actions { display: grid; gap: 10px; margin-top: 30px; }
.tiktok-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tiktok-grid a { position: relative; aspect-ratio: 3 / 4; display: block; overflow: hidden; background: #292a27; }
.tiktok-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82), transparent 54%); }
.tiktok-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.tiktok-grid a:hover img { transform: scale(1.035); }
.tiktok-grid a > span { position: absolute; right: 16px; bottom: 16px; left: 16px; z-index: 2; display: grid; gap: 4px; }
.tiktok-grid b { color: white; font-family: var(--mono); font-size: .62rem; letter-spacing: .04em; }
.tiktok-grid small { color: rgba(255,255,255,.65); font-family: var(--mono); font-size: .49rem; }

.asks-news { color: var(--news-white); background: var(--news-red); }
.asks-news-head { display: grid; grid-template-columns: .3fr 1fr; gap: clamp(35px, 7vw, 100px); margin-bottom: clamp(55px, 7vw, 90px); }
.asks-news-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.4); }
.asks-news-grid article { padding: clamp(32px, 5vw, 70px); border-right: 1px solid rgba(255,255,255,.4); }
.asks-news-grid article,
.asks-news-grid li,
.asks-news-grid li > * { min-width: 0; }
.asks-news-grid article:last-child { border-right: 0; }
.asks-news-grid article > span { font-family: var(--mono); font-size: .61rem; font-weight: 900; letter-spacing: .08em; }
.asks-news-grid ol { margin: 55px 0 0; padding: 0; list-style: none; }
.asks-news-grid li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.38); }
.asks-news-grid li b { font-family: var(--mono); font-size: .55rem; }
.asks-news-grid li p { margin: 0; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.9rem); line-height: 1.2; }
.asks-news-grid li p { overflow-wrap: anywhere; }
.joint-question { max-width: 1100px; margin: clamp(70px, 9vw, 125px) auto 0; text-align: center; }
.joint-question span { font-family: var(--mono); font-size: .6rem; font-weight: 900; letter-spacing: .1em; }
.joint-question p { margin: 24px 0 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5.7rem); letter-spacing: -.055em; line-height: .98; }

.standards-section { background: var(--news-cream); }
.standards-grid { display: grid; grid-template-columns: .85fr .65fr; gap: clamp(60px, 10vw, 160px); align-items: start; }
.standards-grid h2 { margin-top: 48px; }
.standards-copy > p { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.55rem); letter-spacing: -.025em; line-height: 1.25; }
.standards-copy ul { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--news-line); }
.standards-copy li { padding: 16px 0 16px 27px; border-bottom: 1px solid var(--news-line); font-size: .82rem; }
.standards-copy li::before { content: "✓"; float: left; margin-left: -27px; color: var(--news-red); font-weight: 900; }
.contact-line { display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; margin-top: 45px; padding-block: 20px; border-block: 2px solid var(--news-black); }
.contact-line span { font-family: var(--mono); font-size: .55rem; font-weight: 900; letter-spacing: .08em; }
.contact-line b { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.7rem); font-weight: 400; }
.contact-line i { color: var(--news-red); font-style: normal; }

.sources-news { background: var(--news-white); }
.news-source-list { border-top: 2px solid var(--news-black); }
.news-source-list a { display: grid; grid-template-columns: 62px 1fr 35px; gap: 20px; align-items: center; min-height: 105px; padding: 18px 0; border-bottom: 1px solid var(--news-line); transition: padding .25s var(--ease), background .2s ease; }
.news-source-list a:hover { padding-inline: 20px; background: var(--news-cream); }
.news-source-list a > span { color: var(--news-red); font-family: var(--mono); font-size: .6rem; font-weight: 900; }
.news-source-list b { display: block; margin-bottom: 5px; font-size: 1rem; }
.news-source-list small { display: block; color: var(--muted); font-size: .76rem; }
.news-source-list i { color: var(--news-red); font-style: normal; text-align: right; }

.news-footer { background: var(--news-black); }
.news-body .noscript { position: fixed; right: 0; bottom: 0; left: 0; z-index: 999; padding: 10px 20px; color: white; background: var(--news-red); font-size: .75rem; text-align: center; }

@media (max-width: 1180px) {
  .news-body .news-header .site-nav { gap: 12px; }
  .news-body .news-header .site-nav a { font-size: .57rem; }
  .lead-media { min-height: 540px; }
  .news-section-head { grid-template-columns: .3fr 1fr; }
  .news-section-head > p { grid-column: 2; }
  .causal-chain li { min-height: 280px; }
  .investigation-media { min-height: 610px; }
  .news-evidence-grid { grid-template-columns: repeat(4, 1fr); }
  .reach-head { grid-template-columns: .3fr 1fr; }
  .reach-head > p { grid-column: 2; }
}

@media (max-width: 900px) {
  .news-body .shell { width: min(90vw, 760px); }
  .news-body .news-header .site-nav a { font-size: clamp(1.7rem, 7vw, 3rem); }
  .news-edition { grid-template-columns: 1fr 1fr; padding-block: 8px; }
  .news-edition > * { padding: 5px 10px; }
  .news-edition > *:nth-child(2) { border-right: 0; }
  .news-edition > *:nth-child(3) { padding-left: 0; }
  .news-hero h1 { font-size: clamp(4.2rem, 14vw, 7.4rem); }
  .lead-media { grid-template-columns: 1fr; min-height: 0; }
  .lead-photo { min-height: 520px; }
  .lead-stills { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lead-still { min-height: 300px; }
  .news-facts { grid-template-columns: 1fr 1fr; }
  .news-facts > div:nth-child(2) { border-right: 0; }
  .news-facts > div { border-bottom: 1px solid rgba(255,255,255,.2); }
  .news-facts > div:nth-last-child(-n+2) { border-bottom: 0; }
  .news-facts > div:nth-child(3) { padding-left: 0; }
  .news-intro-grid { grid-template-columns: 1fr 2fr; }
  .news-pullquote { grid-column: 2; }
  .causal-chain { grid-template-columns: 1fr 1fr; }
  .causal-chain li:nth-child(3)::after { content: "→"; right: -16px; bottom: auto; top: 50%; transform: translateY(-50%); }
  .causal-chain li:nth-child(2)::after,
  .causal-chain li:nth-child(4)::after { content: "↓"; display: grid; top: auto; right: 50%; bottom: -16px; transform: translateX(50%); }
  .investigation-card,
  .investigation-card-reverse { grid-template-columns: 1fr; }
  .investigation-card-reverse .investigation-media,
  .investigation-card-reverse .investigation-copy { grid-column: 1; }
  .investigation-card-reverse .investigation-media { grid-row: 1; }
  .investigation-card-reverse .investigation-copy { grid-row: 2; }
  .investigation-media { min-height: 550px; }
  .photo-essay { min-height: 590px; }
  .news-evidence-grid { grid-template-columns: repeat(3, 1fr); }
  .responsibility-cards { grid-template-columns: 1fr; }
  .responsibility-cards article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--news-line); }
  .responsibility-cards article:last-child { border-bottom: 0; }
  .responsibility-cards h3 { margin-top: 45px; }
  .responsibility-cards a { margin-top: 35px; }
  .city-data-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .reach-stats { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
  .reach-stats > p,
  .social-actions { grid-column: 1 / -1; }
  .asks-news-grid { grid-template-columns: 1fr; }
  .asks-news-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.4); }
  .asks-news-grid article:last-child { border-bottom: 0; }
  .standards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .news-body .shell { width: min(90vw, 590px); }
  .news-edition { grid-template-columns: 1fr; }
  .news-edition > * { padding: 5px 0; border-right: 0; }
  .news-edition > *:nth-child(2),
  .news-edition > *:last-child { display: none; }
  .news-hero-copy { padding-top: 55px; }
  .news-rubric { font-size: .56rem; line-height: 1.6; }
  .news-hero h1 { font-size: clamp(3.75rem, 20vw, 6rem); }
  .news-deck { margin-top: 32px; font-size: clamp(1.7rem, 9.3vw, 3rem); }
  .news-summary { font-size: .96rem; }
  .lead-photo { min-height: 440px; }
  .lead-stills { grid-template-columns: 1fr; }
  .lead-still { min-height: 310px; }
  .lead-photo figcaption { display: grid; }
  .lead-photo figcaption a { text-align: left; }
  .news-facts { grid-template-columns: 1fr; }
  .news-facts > div,
  .news-facts > div:nth-child(3) { min-height: 120px; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .news-facts > div:last-child { border-bottom: 0; }
  .news-facts strong { font-size: 3rem; }
  .news-section { padding-block: 84px; }
  .news-intro-grid,
  .news-section-head,
  .evidence-heading,
  .reach-head,
  .asks-news-head { grid-template-columns: 1fr; gap: 34px; }
  .news-intro .section-marker { margin-bottom: 12px; }
  .news-pullquote,
  .news-section-head > p,
  .reach-head > p { grid-column: 1; }
  .news-intro h2,
  .news-section-head h2,
  .evidence-heading h2,
  .city-data h2,
  .reach-head h2,
  .asks-news-head h2,
  .standards-grid h2 { font-size: clamp(2.55rem, 13vw, 4.4rem); }
  .news-pullquote { margin-top: 20px; }
  .causal-chain { grid-template-columns: 1fr; }
  .causal-chain li { min-height: 250px; }
  .causal-chain li::after,
  .causal-chain li:nth-child(2)::after,
  .causal-chain li:nth-child(3)::after,
  .causal-chain li:nth-child(4)::after { content: "↓"; display: grid; top: auto; right: 50%; bottom: -16px; transform: translateX(50%); }
  .causal-chain li:last-child::after { display: none; }
  .causal-chain h3 { margin-top: 50px; }
  .investigation-media { min-height: 430px; }
  .investigation-copy { padding: 30px 23px; }
  .dossier-label { display: grid; }
  .dossier-label b { text-align: left; }
  .investigation-copy h3 { font-size: clamp(3.4rem, 18vw, 5.5rem); }
  .dossier-facts { grid-template-columns: 1fr; }
  .dossier-facts div,
  .dossier-facts div:first-child,
  .dossier-facts div:last-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--news-line); }
  .dossier-facts div:last-child { border-bottom: 0; }
  .photo-essay { grid-template-columns: 1fr; min-height: 0; }
  .photo-essay figure { min-height: 430px; }
  .photo-essay .photo-tall { min-height: 540px; }
  .evidence-heading .section-marker { margin-bottom: 0; }
  .news-evidence-grid { grid-template-columns: 1fr 1fr; }
  .video-meta { padding: 13px 11px; }
  .video-meta b { display: none; }
  .archive-bar { align-items: stretch; flex-direction: column; }
  .city-number-grid { grid-template-columns: 1fr; }
  .city-number-grid div { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35) !important; }
  .city-number-grid div:last-child { border-bottom: 0 !important; }
  .news-timeline article { grid-template-columns: 44px 1fr; }
  .news-timeline time { grid-column: 2; margin-bottom: 14px; }
  .news-timeline time { overflow-wrap: anywhere; }
  .news-timeline article > span { grid-column: 1; grid-row: 1 / span 2; }
  .news-timeline article > div { grid-column: 2; }
  .reach-stats { grid-template-columns: 1fr; }
  .reach-stats > p,
  .social-actions { grid-column: 1; }
  .tiktok-grid { gap: 5px; }
  .tiktok-grid a > span { right: 9px; bottom: 10px; left: 9px; }
  .tiktok-grid b { font-size: .5rem; }
  .asks-news-grid article { padding: 32px 23px; }
  .asks-news-grid ol { margin-top: 38px; }
  .asks-news-grid li { grid-template-columns: 34px 1fr; }
  .joint-question p { font-size: clamp(2.35rem, 12vw, 4rem); }
  .contact-line { grid-template-columns: 1fr auto; }
  .contact-line b { grid-column: 1 / -1; grid-row: 2; overflow-wrap: anywhere; }
  .news-source-list a { grid-template-columns: 35px 1fr 18px; gap: 10px; }
  .news-source-list small { line-height: 1.45; }
}

@media (max-width: 410px) {
  .news-evidence-grid { grid-template-columns: 1fr; }
  .video-image { aspect-ratio: 4 / 4.2; }
  .tiktok-grid { grid-template-columns: 1fr 1fr; }
  .tiktok-grid a:last-child { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
}

@media (prefers-reduced-motion: reduce) {
  .metro-track { width: auto; flex-wrap: wrap; justify-content: center; padding-block: 16px; transform: none !important; }
  .metro-track [aria-hidden="true"] { display: none; }
}

@media print {
  .news-body .site-header,
  .news-body .progress,
  .news-body .metro,
  .news-body .site-footer { display: none !important; }
  .news-hero,
  .causal-section,
  .evidence-news,
  .city-data,
  .reach-section,
  .asks-news { color: #000; background: #fff; }
  .news-hero { padding: 0; }
  .lead-media { min-height: 0; }
  .lead-photo { min-height: 400px; }
  .news-evidence-grid { grid-template-columns: repeat(5, 1fr); }
  .investigation-card,
  .news-video-card,
  .responsibility-cards { break-inside: avoid; }
}

/* Institutional accountability rebuild — July 2026 */
.news-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.news-hero-actions .button { min-height: 48px; }
.news-hero h1,
.news-section-head h2,
.service-lead h2,
.joint-question p { overflow-wrap: anywhere; hyphens: auto; }
.institution-verdict { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border: 1px solid rgba(255,255,255,.24); background: rgba(0,0,0,.18); }
.institution-verdict > div { min-width: 0; display: flex; flex-direction: column; min-height: 180px; padding: clamp(25px, 3.4vw, 45px); border-right: 1px solid rgba(255,255,255,.24); }
.institution-verdict > div:last-child { border-right: 0; background: var(--news-red); }
.institution-verdict > div:last-child span,
.institution-verdict > div:last-child small { color: #fff; }
.institution-verdict span,
.institution-verdict small { font-family: var(--mono); font-size: .57rem; font-weight: 850; letter-spacing: .075em; line-height: 1.5; }
.institution-verdict span { color: var(--news-yellow); }
.institution-verdict strong { margin: auto 0 18px; font-family: var(--serif); font-size: clamp(1.7rem, 3.1vw, 3.4rem); font-weight: 400; letter-spacing: -.045em; line-height: .92; overflow-wrap: anywhere; }
.institution-verdict small { color: rgba(255,255,255,.62); }
.editorial-position { margin-top: 16px; color: rgba(255,255,255,.62); font-family: var(--mono); font-size: .57rem; line-height: 1.7; }

.reach-quote { max-width: 1080px; margin: 0 auto clamp(60px, 8vw, 105px); text-align: center; }
.reach-quote p { margin: 0; color: var(--news-yellow); font-family: var(--serif); font-size: clamp(2.5rem, 5.5vw, 6rem); letter-spacing: -.05em; line-height: .96; }

.no-persons-note { display: flex; gap: 18px; align-items: baseline; margin: 0 0 30px; padding: 20px 24px; border-left: 5px solid var(--news-red); background: var(--news-white); font-family: var(--mono); font-size: .63rem; line-height: 1.65; }
.no-persons-note b { flex: 0 0 auto; color: var(--news-red); letter-spacing: .05em; text-transform: uppercase; }
.accountability-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--news-black); }
.accountability-card { min-width: 0; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 62px); color: var(--news-white); background: var(--news-black); }
.accountability-card + .accountability-card { border-left: 1px solid rgba(255,255,255,.25); background: var(--news-blue); }
.accountability-title { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 40px; }
.accountability-title span { color: var(--news-yellow); font-family: var(--mono); font-size: .63rem; font-weight: 900; letter-spacing: .1em; }
.accountability-title h3 { max-width: 560px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.7vw, 6.6rem); font-weight: 400; letter-spacing: -.06em; line-height: .86; overflow-wrap: anywhere; }
.accountability-card dl { margin: 0; }
.accountability-card dl div { display: grid; grid-template-columns: 130px 1fr; gap: 25px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.25); }
.accountability-card dt { color: var(--news-yellow); font-family: var(--mono); font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.accountability-card dd { margin: 0; color: rgba(255,255,255,.82); font-size: .82rem; line-height: 1.66; }
.accountability-card > a { display: inline-flex; align-items: center; min-height: 48px; margin-top: auto; padding-top: 28px; color: var(--news-yellow); font-family: var(--mono); font-size: .61rem; font-weight: 900; letter-spacing: .06em; }
.shared-responsibility { margin: 0; padding: clamp(40px, 6vw, 85px); color: var(--news-black); background: var(--news-yellow); text-align: center; }
.shared-responsibility span { font-family: var(--mono); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.shared-responsibility p { max-width: 1100px; margin: 28px auto; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.6rem); letter-spacing: -.05em; line-height: .98; }
.shared-responsibility strong { display: block; max-width: 920px; margin: 0 auto; font-size: .88rem; line-height: 1.7; }

.photo-wall { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 10px; }
.photo-wall figure { position: relative; grid-column: span 4; min-width: 0; min-height: 430px; margin: 0; overflow: hidden; background: #d9d6cd; }
.photo-wall .photo-feature { grid-column: span 8; }
.photo-wall img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s ease; }
.photo-wall figure:hover img { transform: scale(1.025); filter: brightness(.78); }
.photo-wall figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; padding: 60px 22px 20px; color: white; background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,0)); font-family: var(--mono); font-size: .53rem; line-height: 1.55; }
.photo-wall figcaption span { display: grid; gap: 5px; max-width: 520px; }
.photo-wall figcaption b { color: var(--news-yellow); font-size: .56rem; letter-spacing: .07em; }
.photo-wall figcaption a { max-width: 210px; color: rgba(255,255,255,.78); font-weight: 800; text-align: right; }
.future-photo-note { display: flex; gap: 25px; margin: 22px 0 0; padding: 22px 0; border-block: 1px solid var(--news-line); color: var(--muted); font-family: var(--mono); font-size: .58rem; line-height: 1.65; }
.future-photo-note b { flex: 0 0 auto; color: var(--news-red); letter-spacing: .08em; }

.service-accountability { color: var(--news-white); background: var(--news-blue); }
.service-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 8vw, 125px); align-items: start; }
.service-grid > *,
.service-lead,
.service-check { min-width: 0; }
.service-lead .section-marker { overflow-wrap: anywhere; }
.service-lead h2 { margin: 46px 0 30px; }
.service-lead p { max-width: 620px; color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.75; }
.service-lead > a { display: inline-flex; align-items: center; min-height: 48px; margin-top: 25px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.55); color: var(--news-yellow); font-family: var(--mono); font-size: .61rem; font-weight: 900; }
.service-check { margin: 0; padding: 0; border-top: 2px solid white; list-style: none; }
.service-check li { display: grid; grid-template-columns: 72px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.service-check li,
.service-check li > * { min-width: 0; }
.service-check li > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: var(--news-black); background: var(--news-yellow); font-family: var(--mono); font-size: .58rem; font-weight: 900; }
.service-check b { color: var(--news-yellow); font-family: var(--mono); font-size: .63rem; letter-spacing: .075em; }
.service-check p { margin: 11px 0 0; font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2.4rem); line-height: 1.15; overflow-wrap: anywhere; hyphens: auto; }
.service-quote { margin-top: clamp(65px, 9vw, 125px); padding-top: clamp(50px, 7vw, 85px); border-top: 1px solid rgba(255,255,255,.3); text-align: center; }
.service-quote p { max-width: 1100px; margin: 0 auto; color: var(--news-yellow); font-family: var(--serif); font-size: clamp(2.5rem, 5.2vw, 5.8rem); letter-spacing: -.055em; line-height: .97; }

@media (max-width: 1180px) {
  .news-body .news-header .site-nav { gap: 10px; }
  .news-body .news-header .site-nav a { font-size: .52rem; }
  .accountability-card dl div { grid-template-columns: 105px 1fr; }
  .photo-wall figure { min-height: 380px; }
}

@media (max-width: 900px) {
  .institution-verdict { grid-template-columns: 1fr 1fr; }
  .institution-verdict > div:nth-child(2) { border-right: 0; }
  .institution-verdict > div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.24); }
  .accountability-grid { grid-template-columns: 1fr; }
  .accountability-card + .accountability-card { border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
  .photo-wall figure { grid-column: span 6; }
  .photo-wall .photo-feature { grid-column: span 12; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .news-hero-actions { display: grid; }
  .news-hero h1 { font-size: clamp(2.8rem, 14vw, 5.5rem); overflow-wrap: normal; hyphens: none; }
  .institution-verdict { grid-template-columns: 1fr; }
  .institution-verdict > div,
  .institution-verdict > div:nth-child(2) { min-height: 138px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .institution-verdict > div:last-child { grid-column: 1; border-top: 0; border-bottom: 0; }
  .institution-verdict strong { margin-top: 22px; }
  .lead-photo { min-height: 360px; }
  .lead-stills { grid-template-columns: 1fr 1fr; }
  .lead-still { min-height: 215px; }
  .lead-still span { padding: 14px 12px; }
  .lead-still b { font-size: .5rem; }
  .news-facts { grid-template-columns: 1fr 1fr; }
  .news-facts > div,
  .news-facts strong,
  .news-facts span { min-width: 0; overflow-wrap: anywhere; }
  .news-facts > div,
  .news-facts > div:nth-child(3) { min-height: 118px; padding: 20px 13px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
  .news-facts > div:nth-child(2n) { border-right: 0; }
  .news-facts > div:nth-last-child(-n+2) { border-bottom: 0; }
  .news-facts strong { font-size: clamp(2rem, 10vw, 3rem); }
  .reach-quote { margin-bottom: 55px; }
  .tiktok-grid { grid-template-columns: 1fr 1fr; }
  .tiktok-grid a:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .tiktok-grid small,
  .video-meta small { font-size: .62rem; }
  .no-persons-note { display: grid; gap: 8px; }
  .accountability-card { padding: 32px 23px; }
  .accountability-title { min-height: 170px; }
  .accountability-card dl div { grid-template-columns: 1fr; gap: 9px; padding: 21px 0; }
  .shared-responsibility { padding-inline: 24px; }
  .causal-chain li { min-height: 0; padding: 28px 24px 36px; }
  .causal-chain h3 { margin-top: 28px; }
  .investigation-media { min-height: 0; aspect-ratio: 4 / 3; }
  .photo-wall { gap: 5px; }
  .photo-wall figure { grid-column: span 6; min-height: 270px; }
  .photo-wall .photo-feature { grid-column: span 12; min-height: 350px; }
  .photo-wall figcaption { grid-template-columns: 1fr; gap: 8px; padding: 55px 12px 12px; }
  .photo-wall figcaption a { max-width: none; text-align: left; }
  .future-photo-note { display: grid; gap: 10px; }
  .news-evidence-grid { grid-template-columns: 1fr 1fr; }
  .video-image { aspect-ratio: 4 / 4.4; }
  .service-check li { grid-template-columns: 52px 1fr; gap: 15px; }
  .service-lead .section-marker { flex-wrap: wrap; }
  .city-number-grid { grid-template-columns: 1fr 1fr; }
  .city-number-grid div { min-height: 175px; padding: 25px 18px; border-right: 1px solid rgba(255,255,255,.35); }
  .city-number-grid div:nth-child(2n) { border-right: 0; }
  .city-number-grid strong { font-size: clamp(1.9rem, 10vw, 3.2rem); }
  .asks-news-head > p { margin: 0; }
}

@media (max-width: 410px) {
  .news-evidence-grid { grid-template-columns: 1fr 1fr; }
  .tiktok-grid a:last-child { grid-column: auto; aspect-ratio: 3 / 4; }
  .photo-wall figure { min-height: 245px; }
  .photo-wall .photo-feature { min-height: 320px; }
  .photo-wall figcaption span { font-size: .58rem; }
  .photo-wall figcaption a { font-size: .56rem; }
}

@media print {
  .institution-verdict,
  .accountability-card,
  .shared-responsibility,
  .service-accountability { color: #000; background: #fff; }
  .accountability-card,
  .photo-wall figure,
  .service-check li { break-inside: avoid; }
}
