@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  font-display: optional;
  src: url("/fonts/newsreader-normal-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: optional;
  src: url("/fonts/newsreader-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url("/fonts/source-sans-3-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("/fonts/dm-mono-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url("/fonts/dm-mono-500-latin.woff2") format("woff2");
}

:root {
  --ink: #171510;
  --paper: #f5efe5;
  --paper-light: #fbf8f2;
  --surface: #ece3d5;
  --rule: #cfc3b2;
  --muted: #6a6257;
  --accent: #9e3f1f;
  --max: 1180px;
  --reading: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 21, 16, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 16, .026) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }
::selection { color: var(--paper-light); background: var(--accent); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--rule);
}
.brand,
.site-nav a,
.eyebrow,
.kicker,
.section-index,
.meta,
.proof-label,
.source-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.brand, .site-nav a { text-decoration: none; }
.brand { display: inline-flex; min-height: 44px; align-items: center; }
.site-nav { display: flex; gap: 20px; }
.site-nav a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding-inline: 4px; color: var(--muted); }
.site-nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .65fr);
  gap: clamp(48px, 8vw, 112px);
  padding: clamp(72px, 9vw, 128px) 0 72px;
}
.hero-copy { max-width: 830px; }
.eyebrow { margin: 0 0 24px; color: var(--accent); }
h1, h2, h3 { font-family: Newsreader, Georgia, serif; font-weight: 400; }
h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.6rem, 8.1vw, 7.2rem);
  letter-spacing: -.045em;
  line-height: .93;
}
h1 em { font-style: italic; font-weight: 400; }
.lede {
  max-width: 710px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.button-primary { color: var(--paper-light); background: var(--ink); }
.button-primary:hover { color: var(--paper-light); background: var(--accent); border-color: var(--accent); }
.button-secondary:hover { color: var(--paper-light); background: var(--ink); }
.button-arrow { transition: transform .18s ease; }
.button:hover .button-arrow { transform: translateX(3px); }

.operator-card { align-self: end; border-top: 1px solid var(--ink); padding-top: 20px; }
.operator-photo { width: 128px; height: 128px; object-fit: cover; border-radius: 50%; filter: saturate(.82) contrast(1.02); }
.operator-card .kicker { margin: 22px 0 10px; color: var(--accent); }
.operator-card p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.5; }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.proof { min-height: 170px; padding: 24px 28px 28px 0; }
.proof + .proof { padding-left: 28px; border-left: 1px solid var(--rule); }
.proof-label { color: var(--accent); }
.proof-value { margin: 16px 0 6px; font-family: Newsreader, Georgia, serif; font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1; }
.proof p { max-width: 30ch; margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.45; }

.editorial-section {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 40px;
  padding: clamp(88px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--rule);
}
.section-index { padding-top: 12px; color: var(--accent); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); letter-spacing: -.035em; line-height: .98; }
.section-intro { max-width: 470px; margin: 0; color: var(--muted); font-size: 1.08rem; }

.triage-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.triage-item { position: relative; min-height: 250px; padding: 26px 28px 30px 0; }
.triage-item + .triage-item { padding-left: 28px; border-left: 1px solid var(--rule); }
.triage-number { font-family: "DM Mono", ui-monospace, monospace; color: var(--accent); font-size: .75rem; }
.triage-item h3 { margin: 40px 0 12px; font-size: 2rem; line-height: 1; }
.triage-item p { margin: 0; color: var(--muted); line-height: 1.5; }
.outcome-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 48px; margin-top: 48px; padding: 32px; background: var(--surface); }
.outcome-panel h3 { margin: 0; font-size: 2rem; }
.outcome-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.outcome-list li { position: relative; padding-left: 24px; }
.outcome-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.note-card { display: flex; min-height: 330px; flex-direction: column; padding: 26px 28px 30px 0; text-decoration: none; }
.note-card:nth-child(3n+2), .note-card:nth-child(3n+3) { padding-left: 28px; border-left: 1px solid var(--rule); }
.note-card:nth-child(n+4) { border-top: 1px solid var(--rule); }
.note-card .meta { color: var(--accent); }
.note-card h3 { margin: 52px 0 18px; font-size: clamp(1.7rem, 2.4vw, 2.45rem); line-height: 1.05; }
.note-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.note-card .read-more { margin-top: auto; padding-top: 32px; font-size: .9rem; font-weight: 600; }
.note-card:hover h3, .note-card:hover .read-more { color: var(--accent); }

.credibility { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 110px); }
.credibility-copy p { max-width: 600px; color: var(--muted); font-size: 1.14rem; }
.credibility-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.credibility-list li { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.credibility-list strong { display: block; margin-bottom: 4px; font-family: Newsreader, Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.credibility-list span { color: var(--muted); font-size: .96rem; }

.final-cta { padding: clamp(88px, 10vw, 136px) 0; }
.final-cta-inner { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; align-items: end; }
.final-cta h2 { max-width: 850px; }
.final-cta p { margin: 0 0 22px; color: var(--muted); }

.site-footer { display: flex; justify-content: space-between; gap: 32px; padding: 32px 0 56px; border-top: 1px solid var(--ink); color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; }

/* Articles */
.article-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.article-header { width: min(100%, 930px); padding: 84px 0 56px; }
.back-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); font-family: "DM Mono", ui-monospace, monospace; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; }
.article-header .meta { margin: 44px 0 16px; color: var(--accent); }
.article-header h1 { max-width: 930px; font-size: clamp(3.4rem, 7vw, 6.4rem); }
.article-deck { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: 1.22rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, var(--reading)) minmax(220px, 300px); gap: clamp(56px, 9vw, 120px); align-items: start; padding-bottom: 112px; }
.article-body { font-family: Newsreader, Georgia, serif; font-size: 1.28rem; line-height: 1.7; }
.article-body p { margin: 0 0 1.45em; }
.article-body h2 { margin: 2.1em 0 .55em; font-size: 2.3rem; letter-spacing: -.02em; }
.article-body a { color: var(--accent); }
.article-aside { position: sticky; top: 28px; border-top: 1px solid var(--ink); padding-top: 18px; }
.article-aside .source-label { color: var(--accent); }
.article-aside p, .article-aside li { color: var(--muted); font-size: .92rem; line-height: 1.5; }
.article-aside ul { padding-left: 18px; }
.article-aside a { display: inline-flex; min-height: 44px; align-items: center; overflow-wrap: anywhere; }
.article-footer-nav { display: flex; justify-content: space-between; gap: 24px; padding: 30px 0 56px; border-top: 1px solid var(--ink); }
.article-footer-nav a { display: inline-flex; min-height: 44px; align-items: center; }

.error-page { display: grid; min-height: calc(100vh - 92px); place-items: center; padding: 80px 0; }
.error-copy { max-width: 800px; }
.error-code { margin: 0 0 18px; color: var(--accent); font-family: "DM Mono", ui-monospace, monospace; }
.error-copy h1 { font-size: clamp(4rem, 10vw, 8rem); }
.error-copy p { max-width: 520px; color: var(--muted); font-size: 1.2rem; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .operator-card { display: grid; grid-template-columns: 104px 1fr; gap: 24px; align-items: center; }
  .operator-photo { width: 104px; height: 104px; }
  .operator-card .kicker { margin-top: 0; }
  .section-head { display: block; }
  .section-intro { margin-top: 24px; }
  .outcome-panel, .credibility, .final-cta-inner, .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 17px; background-size: 48px 48px; }
  .site-shell, .article-shell { width: min(calc(100% - 40px), var(--max)); }
  .site-header { min-height: 76px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .67rem; }
  .hero { padding: 64px 0 52px; }
  h1 { font-size: clamp(3.25rem, 16vw, 4.85rem); }
  .actions { display: grid; }
  .button { width: 100%; }
  .operator-card { grid-template-columns: 82px 1fr; gap: 18px; }
  .operator-photo { width: 82px; height: 82px; }
  .proof-strip, .triage-grid, .notes-grid { grid-template-columns: 1fr; }
  .proof { min-height: auto; padding: 22px 0; }
  .proof + .proof { padding-left: 0; border-top: 1px solid var(--rule); border-left: 0; }
  .proof p { max-width: none; }
  .editorial-section { grid-template-columns: 1fr; gap: 18px; padding: 76px 0; }
  .section-index { padding: 0; }
  h2 { font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .section-head { margin-bottom: 34px; }
  .triage-item, .note-card { min-height: auto; padding: 24px 0 28px; }
  .triage-item + .triage-item, .note-card + .note-card { padding-left: 0; border-top: 1px solid var(--rule); border-left: 0; }
  .triage-item h3, .note-card h3 { margin-top: 28px; }
  .note-card .read-more { margin-top: 24px; padding-top: 0; }
  .outcome-panel { gap: 26px; padding: 24px; }
  .final-cta { padding: 76px 0; }
  .site-footer { display: block; }
  .footer-links { margin-top: 18px; }
  .article-header { padding: 60px 0 42px; }
  .article-header .meta { margin-top: 28px; }
  .article-body { font-size: 1.16rem; }
  .article-footer-nav { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
