:root {
  color-scheme: dark;
  --ink: #11100f;
  --charcoal: #171515;
  --black: #090807;
  --paper: #f2eee4;
  --paper-dark: #e1d8c7;
  --muted: #a99f90;
  --red: #c5261f;
  --red-dark: #7f1915;
  --gold: #d7a23d;
  --line: rgba(242, 238, 228, 0.18);
  --dark-line: rgba(17, 16, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(9, 8, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-text {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--paper);
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 6vw, 86px) clamp(32px, 4.5vw, 58px);
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.98), rgba(9, 8, 7, 0.82)),
    repeating-linear-gradient(0deg, rgba(242, 238, 228, 0.04) 0 1px, transparent 1px 7px);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(242, 238, 228, 0.9);
  font-size: clamp(17px, 1.65vw, 23px);
}

.hero-subhead strong {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: var(--paper);
  background: var(--red);
}

.button.secondary {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(242, 238, 228, 0.06);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.72;
}

.hero-photo {
  position: relative;
  min-height: 400px;
  margin: 0;
  overflow: visible;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(9, 8, 7, 0.88)),
    linear-gradient(90deg, rgba(197, 38, 31, 0.22), transparent 42%);
  pointer-events: none;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.stamp {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 3;
  min-width: 360px;
  padding: 14px 34px;
  color: var(--paper);
  background: var(--red);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  transform: translateX(-50%) rotate(7deg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.stamp-bottom {
  top: auto;
  bottom: 30px;
  transform: translateX(-50%) rotate(-6deg);
}

.ticker {
  display: flex;
  overflow: hidden;
  color: var(--paper);
  border-block: 1px solid var(--line);
  background: var(--red);
}

.ticker span {
  min-width: max-content;
  padding: 15px clamp(24px, 5vw, 58px);
  color: var(--paper);
  border-right: 1px solid rgba(242, 238, 228, 0.25);
  font-size: 17px;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 86px);
}

.dossier,
.records-section,
.recognition-section,
.governance-section,
.source-documents,
.source-status {
  background: var(--paper);
  color: var(--ink);
}

.travel-section,
.timeline-section,
.closing {
  background: var(--charcoal);
}

.section-heading {
  max-width: 930px;
}

.section-heading.compact {
  max-width: 760px;
}

h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 56px);
}

h3 {
  font-size: clamp(22px, 2.3vw, 32px);
}

p {
  margin: 18px 0 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.case-card {
  min-height: 330px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--dark-line);
  background: #fffaf0;
}

.case-card.danger {
  color: var(--paper);
  background: var(--red-dark);
  border-color: transparent;
}

.case-card p {
  font-size: 18px;
  font-weight: 800;
}

.case-icon {
  position: relative;
  width: 100%;
  height: 92px;
  margin-bottom: 22px;
  border: 1px solid var(--dark-line);
  background: rgba(17, 16, 15, 0.05);
}

.case-card.danger .case-icon {
  border-color: rgba(242, 238, 228, 0.28);
  background: rgba(242, 238, 228, 0.08);
}

.route-icon span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
}

.route-icon span:nth-child(1) {
  left: 18px;
  bottom: 18px;
}

.route-icon span:nth-child(2) {
  left: 47%;
  top: 18px;
}

.route-icon span:nth-child(3) {
  right: 18px;
  bottom: 24px;
}

.route-icon::before,
.route-icon::after {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--ink);
  transform-origin: left;
}

.route-icon::before {
  left: 34px;
  bottom: 32px;
  width: 42%;
  transform: rotate(-18deg);
}

.route-icon::after {
  left: 50%;
  top: 35px;
  width: 36%;
  transform: rotate(16deg);
}

.docs-icon span {
  position: absolute;
  width: 54%;
  height: 52px;
  left: 22%;
  border: 2px solid currentColor;
  background: rgba(242, 238, 228, 0.12);
}

.docs-icon span:nth-child(1) {
  top: 12px;
  transform: rotate(-5deg);
}

.docs-icon span:nth-child(2) {
  top: 20px;
  transform: rotate(2deg);
}

.docs-icon span:nth-child(3) {
  top: 28px;
  transform: rotate(7deg);
}

.eye-icon span,
.eye-icon::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.eye-icon::before {
  width: 114px;
  height: 52px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.eye-icon span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
}

.evidence-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.evidence-label.needed {
  color: var(--paper);
  background: var(--red);
}

.evidence-label.question {
  color: var(--paper);
  background: var(--ink);
}

.evidence-label.verified {
  color: var(--ink);
  background: var(--paper-dark);
}

.split-section-inner,
.records-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.recognition-section {
  border-top: 6px solid var(--red);
  text-align: center;
}

.recognition-section .section-heading {
  margin-inline: auto;
}

.recognition-section p {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.recognition-section .source-link {
  justify-content: center;
  font-size: clamp(15px, 1.35vw, 19px);
}

.governance-section .split-section-inner {
  align-items: stretch;
}

.folder-graphic {
  position: relative;
  min-height: 330px;
  align-self: stretch;
  padding-top: 42px;
}

.folder-tab {
  width: 56%;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--red);
  border-radius: 6px 6px 0 0;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.folder-body {
  display: grid;
  gap: 16px;
  min-height: 268px;
  padding: 28px;
  border: 2px solid var(--dark-line);
  background:
    repeating-linear-gradient(0deg, rgba(17, 16, 15, 0.04) 0 1px, transparent 1px 36px),
    #fffaf0;
  box-shadow: 0 24px 60px rgba(17, 16, 15, 0.16);
}

.folder-body span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-left: 8px solid var(--red);
  color: var(--ink);
  background: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.metric-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(242, 238, 228, 0.06);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
}

.metric-strip span {
  margin-top: 8px;
  color: rgba(242, 238, 228, 0.82);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.travel-accountability-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #211e1b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.travel-accountability-image img {
  display: block;
  width: 100%;
  max-height: 760px;
  height: auto;
  object-fit: contain;
}

.comparison-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: #211e1b;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.document-grid article {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--dark-line);
  background: #fffaf0;
}

.document-preview {
  display: block;
  overflow: hidden;
  max-height: 360px;
  border: 1px solid var(--dark-line);
  background: white;
  box-shadow: 0 18px 40px rgba(17, 16, 15, 0.14);
}

.document-preview img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: top center;
}

.document-grid h3 {
  font-size: clamp(20px, 2vw, 30px);
}

.document-grid p {
  color: #443c35;
  font-weight: 800;
}

.document-grid article > div > a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.comparison-card div {
  min-height: 170px;
  padding: clamp(22px, 3vw, 34px);
}

.comparison-card div + div {
  border-left: 1px solid var(--line);
  background: rgba(197, 38, 31, 0.18);
}

.comparison-card h3,
.travel-timeline h3,
.records-demand-block h3,
.boarding-pass h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.08;
  text-transform: uppercase;
}

.travel-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.travel-timeline article {
  min-height: 118px;
  padding: 15px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(197, 38, 31, 0.14), transparent 42%),
    #211e1b;
}

.travel-timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.travel-timeline p {
  color: rgba(242, 238, 228, 0.82);
  font-size: 13px;
}

.travel-timeline a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.records-demand-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
  margin-top: 44px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--red-dark);
}

.checklist {
  counter-reset: receipt-question;
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  counter-increment: receipt-question;
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  font-weight: 850;
}

.checklist li::before {
  content: counter(receipt-question);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: rgba(9, 8, 7, 0.42);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

blockquote {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 6px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.boarding-pass {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border: 2px dashed var(--ink);
}

.boarding-pass dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.boarding-pass dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-line);
}

.boarding-pass dt {
  color: #61584f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.boarding-pass dd {
  margin: 0;
  font-weight: 900;
}

.mini-ledger {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mini-ledger div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(242, 238, 228, 0.06);
}

.mini-ledger span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-ledger strong {
  text-align: right;
}

.map-board {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(197, 38, 31, 0.12), transparent 48%),
    repeating-linear-gradient(0deg, rgba(242, 238, 228, 0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(242, 238, 228, 0.06) 0 1px, transparent 1px 24px),
    #211e1b;
}

.map-dot {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
}

.map-dot span {
  position: absolute;
  top: 32px;
  width: max-content;
  color: var(--paper);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dot-home {
  left: 18%;
  bottom: 24%;
}

.dot-dc {
  right: 19%;
  top: 20%;
}

.dot-event {
  right: 34%;
  bottom: 28%;
}

.map-line {
  position: absolute;
  height: 4px;
  background: var(--gold);
  transform-origin: left;
}

.line-one {
  left: 22%;
  bottom: 31%;
  width: 55%;
  transform: rotate(-28deg);
}

.line-two {
  right: 26%;
  top: 36%;
  width: 24%;
  transform: rotate(45deg);
}

.map-question {
  position: absolute;
  left: 7%;
  top: 10%;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.map-question.second {
  right: 7%;
  bottom: 10%;
  left: auto;
  top: auto;
  background: var(--black);
  border: 1px solid var(--line);
}

.redacted-stack {
  position: relative;
  min-height: 430px;
}

.paper-sheet {
  position: absolute;
  width: 74%;
  min-height: 240px;
  padding: 26px;
  color: var(--ink);
  border: 1px solid var(--dark-line);
  background: #fffaf0;
  box-shadow: 0 18px 40px rgba(17, 16, 15, 0.2);
}

.paper-sheet.top {
  left: 4%;
  top: 16px;
  transform: rotate(-5deg);
}

.paper-sheet.middle {
  left: 16%;
  top: 92px;
  transform: rotate(4deg);
}

.paper-sheet.bottom {
  right: 4%;
  top: 166px;
  transform: rotate(-1deg);
}

.paper-sheet b {
  display: block;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.paper-sheet span {
  display: block;
  width: 92%;
  height: 20px;
  margin-top: 14px;
  background: var(--ink);
}

.paper-sheet span.short {
  width: 58%;
}

.record-demands {
  display: grid;
  gap: 14px;
}

.record-demands article,
.status-grid article {
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: #fffaf0;
}

.record-demands p {
  color: #443c35;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #211e1b;
}

.timeline time {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
}

.source-link,
.timeline a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.source-link.light {
  color: var(--gold);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.status-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  font-weight: 850;
}

.closing .section-heading {
  margin-inline: auto;
}

@media (max-width: 980px) {
  .hero,
  .case-grid,
  .split-section-inner,
  .document-grid,
  .records-grid,
  .records-demand-block,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .travel-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-text {
    width: 100%;
    padding-top: 12px;
    text-align: center;
  }

  nav {
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-top: 10px;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(26px, 7.5vw, 38px);
  }

  .hero-photo,
  .hero-photo img {
    min-height: 240px;
  }

  .stamp {
    top: 10px;
    left: 50%;
    min-width: 280px;
    padding: 12px 28px;
    font-size: 20px;
  }

  .stamp-bottom {
    top: auto;
    bottom: 16px;
  }

  .ticker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }

  .ticker span {
    min-width: 0;
    padding: 14px 16px;
    font-size: 14px;
    text-align: center;
    white-space: normal;
    border-right: 1px solid rgba(242, 238, 228, 0.25);
    border-bottom: 1px solid rgba(242, 238, 228, 0.25);
  }

  .ticker span:nth-child(2n) {
    border-right: 0;
  }

  .ticker span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .comparison-card,
  .travel-timeline {
    grid-template-columns: 1fr;
  }

  .travel-timeline article {
    min-height: auto;
    padding: 14px;
  }

  .comparison-card div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .document-grid article {
    grid-template-columns: 1fr;
  }

  .document-preview {
    max-height: 420px;
  }

  .folder-tab {
    width: 72%;
  }

  .folder-body,
  .records-demand-block,
  .boarding-pass {
    padding: 20px;
  }

  .boarding-pass dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
