:root {
  --navy: #011739;
  --navy-mid: #0a2558;
  --gold: #f8b415;
  --gold-dark: #e0a010;
  --white: #ffffff;
  --bg: #f9fafb;
  --paper: #ffffff;
  --ink: #2b2b2b;
  --muted: #6b7280;
  --line: #e5e7eb;
  --note-bg: #fff8e6;
  --note-ink: #011739;
  --shadow: 0 8px 24px rgba(1, 23, 57, 0.08);
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "League Spartan", "Arial Narrow", sans-serif;
  --container: 840px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 0.75rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: var(--navy);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.site-nav a:hover {
  color: var(--gold);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.brand:hover {
  color: var(--white);
}

.brand-gate {
  color: var(--gold);
}

.site-header p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

main {
  flex: 1;
  padding: 0 0 3.75rem;
}

.hero {
  background: var(--navy);
  padding: 2.25rem 0 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2rem 2.5rem;
  align-items: center;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid var(--gold);
  border-radius: 3px;
}

.hero-copy .eyebrow {
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 4rem);
  margin-bottom: 0.75rem;
}

.hero-kicker {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: var(--white);
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.5;
}

.hero-verdict {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--gold);
}

.intro {
  margin-bottom: 2rem;
}

.intro-title {
  font-size: clamp(1.7rem, 4vw, 2.25rem);
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.punch {
  display: inline;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.14em;
  padding: 0.08em 0.28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 42rem;
}

.intro p {
  max-width: 42rem;
}

.recap {
  list-style: none;
  margin: 0 0 2.75rem;
  padding: 1.15rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 3px;
}

.recap li {
  display: grid;
  grid-template-columns: minmax(7.5rem, 11rem) 1fr;
  gap: 0.65rem 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.recap li:first-child {
  border-top: 0;
  padding-top: 0;
}

.recap li:last-child {
  padding-bottom: 0;
}

.recap time {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.chapter {
  margin-bottom: 2.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.chapter:last-child,
.closing {
  border-bottom: 0;
  padding-bottom: 0;
}

.chapter p {
  max-width: 42rem;
}

blockquote {
  margin: 1.15rem 0 1.35rem;
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: var(--note-bg);
  color: var(--navy);
}

blockquote p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
}

.question {
  margin: 1.4rem 0;
  padding: 1.1rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  border-radius: 3px;
}

.verdict {
  margin: 1.6rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.close-line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--gold-dark);
}

.exhibit {
  margin: 1.35rem 0 1.5rem;
}

.document-list {
  display: grid;
  gap: 1.25rem;
}

.doc-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-template-areas: "thumb body";
  gap: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.doc-thumb,
.doc-icon {
  grid-area: thumb;
}

.doc-thumb {
  display: block;
  align-self: start;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.doc-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.doc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.doc-body {
  min-width: 0;
  grid-area: body;
}

.doc-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.doc-desc {
  margin-bottom: 0.75rem;
}

.doc-note {
  font-size: 0.95rem;
  background: var(--note-bg);
  color: var(--note-ink);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 0.65rem 0.8rem;
  margin-bottom: 0.9rem;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 3px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.empty {
  color: var(--muted);
}

.error-page {
  text-align: center;
  padding: 3rem 0;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 0.25rem;
  color: var(--gold);
}

.error-page h2 {
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

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

.crawler-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

.facts {
  margin: 0;
  max-width: 42rem;
}

.facts dt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.1rem;
}

.facts dt:first-child {
  margin-top: 0;
}

.facts dd {
  margin: 0.35rem 0 0;
}

.exhibit-fallback {
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-photo {
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 1rem 0;
  }

  .hero {
    padding: 1.5rem 0 1.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-photo {
    max-width: 220px;
  }

  .site-nav {
    width: 100%;
  }

  .recap {
    padding: 1rem;
  }

  .recap li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .doc-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "thumb";
  }

  .doc-thumb img,
  .doc-icon {
    height: 180px;
  }

  .btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  .question {
    padding: 1rem;
  }

  .verdict,
  .close-line {
    word-wrap: break-word;
  }
}
