:root {
  --paper: #f6f4ee;
  --paper-strong: #fffdf7;
  --ink: #151515;
  --muted: #5f625e;
  --line: #c9c2b4;
  --line-strong: #2f2f2f;
  --red: #b3202a;
  --red-deep: #7d1019;
  --green: #276c52;
  --yellow: #d8ad2f;
  --yellow-soft: #fff3c4;
  --blueprint: #1f5d70;
  --shadow: 0 16px 36px rgba(30, 28, 22, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  color: var(--ink);
  font: 17px/1.62 Georgia, "Times New Roman", serif;
}

a {
  color: var(--red-deep);
}

a:hover {
  color: var(--blueprint);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.8rem;
}

.site-shell {
  width: min(var(--max), calc(100vw - 28px));
  margin: 0 auto;
  padding: 16px 0 42px;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 18px 0 14px;
  border-bottom: 4px solid var(--ink);
}

.brand {
  text-decoration: none;
  color: var(--ink);
}

.brand-kicker,
.eyebrow,
.status-label,
.meta-label {
  margin: 0 0 6px;
  color: var(--red);
  font: 800 0.76rem/1.2 "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-title {
  display: block;
  font: 900 clamp(2rem, 6vw, 4.3rem)/0.92 "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.brand-line {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font: 600 0.98rem/1.45 "Helvetica Neue", Arial, sans-serif;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.top-nav a,
.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 0.82rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper-strong);
  color: var(--ink);
  font: 800 0.84rem/1.1 "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 var(--ink);
}

.button-link.primary,
.top-nav a:first-child {
  background: var(--red);
  color: white;
}

.button-link.secondary {
  background: var(--yellow-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  margin: 24px 0;
}

.hero-copy,
.dossier,
.panel,
.case-file,
.response-article,
.source-quote,
.audit-box {
  background: var(--paper-strong);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(22px, 4vw, 42px);
  border-left: 12px solid var(--red);
}

h1,
h2,
h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.lede {
  max-width: 780px;
  margin: 18px 0 0;
  color: #2f302c;
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.dossier {
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(179, 32, 42, 0.1) 0 7px, transparent 7px),
    var(--paper-strong);
}

.dossier dl {
  margin: 0;
}

.dossier div,
.stat-strip div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.dossier div:last-child,
.stat-strip div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font: 800 0.75rem/1.2 "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.panel,
.case-file,
.audit-box {
  padding: 18px;
}

.panel {
  border-width: 2px;
  box-shadow: 6px 6px 0 rgba(21, 21, 21, 0.18);
}

.panel p,
.case-file p,
.audit-box p {
  margin: 0;
  color: var(--muted);
}

.section {
  margin: 24px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
}

.case-file {
  display: grid;
  gap: 14px;
  border-left: 10px solid var(--blueprint);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.48rem;
  border: 1px solid var(--ink);
  background: var(--yellow-soft);
  color: var(--ink);
  font: 800 0.72rem/1.1 "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.badge.green {
  background: rgba(39, 108, 82, 0.14);
  color: var(--green);
}

.badge.red {
  background: rgba(179, 32, 42, 0.13);
  color: var(--red-deep);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 20px;
  align-items: start;
}

.response-article {
  padding: clamp(20px, 3.5vw, 38px);
}

.response-article h2 {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 3px solid var(--ink);
}

.response-article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.source-quote {
  margin: 18px 0;
  padding: 16px;
  border-left: 12px solid var(--yellow);
}

.source-quote blockquote {
  margin: 0;
  font-size: 1.03rem;
}

.source-quote footer {
  margin-top: 10px;
  color: var(--muted);
  font: 700 0.84rem/1.35 "Helvetica Neue", Arial, sans-serif;
}

.fisk-point {
  margin: 18px 0;
  padding: 16px;
  border: 2px solid var(--line-strong);
  background: #fffaf0;
}

.fisk-point h3 {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.point-number {
  color: var(--red);
  font-size: 0.86rem;
}

.sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.audit-box {
  border-width: 2px;
}

.audit-box ul,
.plain-list {
  margin: 10px 0 0;
  padding-left: 1.2rem;
}

.audit-box li + li,
.plain-list li + li {
  margin-top: 0.55rem;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.status-strip div {
  padding: 12px;
  border: 2px solid var(--ink);
  background: var(--yellow-soft);
}

.site-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 4px solid var(--ink);
  color: var(--muted);
  font: 700 0.9rem/1.45 "Helvetica Neue", Arial, sans-serif;
}

.site-footer a {
  color: var(--ink);
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 18px, var(--max));
  }

  .top-nav a,
  .button-link,
  button {
    width: 100%;
  }
}
