:root {
  color-scheme: dark;
  --ink: #070b12;
  --ink-2: #0d1724;
  --ink-3: #152235;
  --paper: #f4ecd9;
  --paper-2: #e6d9bd;
  --muted: #b9c0ca;
  --line: rgba(244, 236, 217, 0.2);
  --red: #a81722;
  --red-bright: #d5303c;
  --gold: #c5a35b;
  --white: #fff9ec;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.92), rgba(7, 11, 18, 1)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.notice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.25;
}

.notice span,
.footer__notice span {
  flex: 0 0 auto;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav a {
  padding-block: 0.25rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  border-color: var(--red-bright);
}

.hero {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 249, 236, 0.04) 0 1px, transparent 1px 5px);
  pointer-events: none;
}

.hero__poster {
  width: 100%;
  height: auto;
  max-height: 64svh;
  object-fit: contain;
  object-position: center;
  background: #efe4cc;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), 1120px);
  margin-inline: auto;
  padding: 1.5rem 0 3rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 14ch;
  color: var(--paper);
  font-size: 2.55rem;
  text-shadow: 0 4px 20px var(--shadow);
}

.subtitle {
  max-width: 34ch;
  margin: 1.2rem 0 0;
  color: var(--paper);
  font-size: 1.05rem;
}

.subtitle span {
  display: block;
}

.subtitle span + span {
  margin-top: 0.35rem;
}

.actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  flex: 1 1 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-bright);
}

.button--secondary {
  border-color: rgba(244, 236, 217, 0.45);
  background: rgba(7, 11, 18, 0.3);
  color: var(--paper);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--paper);
  background: rgba(244, 236, 217, 0.1);
}

.section {
  padding: 4.75rem 1rem;
  border-top: 1px solid rgba(244, 236, 217, 0.12);
  background: var(--ink);
}

.section--ink {
  background:
    linear-gradient(135deg, rgba(168, 23, 34, 0.16), transparent 38%),
    var(--ink-2);
}

.section--split {
  background:
    linear-gradient(90deg, rgba(244, 236, 217, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--ink), var(--ink-3));
  background-size: 32px 100%, auto;
}

.section__body {
  width: min(100%, 850px);
  margin-inline: auto;
}

.section__body > p {
  max-width: 42rem;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.45rem;
  color: var(--paper);
  font-size: 2.35rem;
}

h3 {
  color: var(--white);
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: rgba(255, 249, 236, 0.84);
}

blockquote {
  margin: 2rem 0;
  padding: 1.2rem 0 1.2rem 1.2rem;
  border-left: 5px solid var(--red-bright);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.pullquote {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(244, 236, 217, 0.22);
  border-radius: 8px;
  background: rgba(244, 236, 217, 0.06);
}

.pullquote span,
.pullquote strong {
  display: block;
}

.pullquote span {
  color: var(--paper-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.pullquote strong {
  margin-top: 0.9rem;
  color: var(--white);
  font-size: 1.05rem;
}

.stacked-lines {
  margin: 1.5rem 0 1.7rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stacked-lines p {
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(244, 236, 217, 0.11);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.stacked-lines p:first-child {
  border-top: 0;
}

.claim-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.claim-card {
  min-height: 15rem;
  padding: 1.2rem;
  border: 1px solid rgba(244, 236, 217, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 236, 217, 0.08), rgba(244, 236, 217, 0.035)),
    var(--ink-2);
}

.claim-card__number {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--red-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.claim-card p {
  margin-top: 0.85rem;
}

.question-line {
  margin-top: 1.8rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.25;
}

.two-line,
.manifest,
.not-this,
.but-this,
.look-list {
  margin: 1.5rem 0;
}

.two-line {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-line p {
  margin: 0.35rem 0;
  color: var(--paper);
  font-weight: 700;
}

.manifest,
.not-this,
.but-this {
  display: grid;
  gap: 0.65rem;
}

.manifest p,
.not-this p,
.but-this p {
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--red-bright);
  background: rgba(244, 236, 217, 0.06);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.3;
}

.not-this p {
  border-left-color: rgba(244, 236, 217, 0.4);
  color: var(--muted);
}

.but-this p {
  border-left-color: var(--gold);
}

.closing {
  background:
    linear-gradient(180deg, rgba(168, 23, 34, 0.18), rgba(7, 11, 18, 0)),
    var(--ink);
}

.look-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.look-list span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(244, 236, 217, 0.2);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(244, 236, 217, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
}

.sources {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 236, 217, 0.96), rgba(230, 217, 189, 0.98)),
    var(--paper);
}

.sources .section-label {
  color: var(--red);
}

.sources h2,
.sources p {
  color: var(--ink);
}

.source-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(7, 11, 18, 0.16);
  border-radius: 8px;
  background: rgba(255, 249, 236, 0.55);
}

.source-list span {
  font-weight: 700;
  line-height: 1.45;
}

.source-list a {
  width: max-content;
  max-width: 100%;
  color: var(--red);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18rem;
}

.footer {
  padding: 2.2rem 1rem 2.8rem;
  border-top: 4px solid var(--red);
  background: #03060a;
}

.footer__notice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  width: min(100%, 850px);
  margin: 0 auto 1rem;
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer p {
  width: min(100%, 850px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 479px) {
  .notice {
    display: block;
  }

  .notice span {
    display: block;
  }
}

@media (min-width: 680px) {
  .notice {
    font-size: 0.88rem;
  }

  .site-header {
    padding-inline: 1.5rem;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(7, 11, 18, 0) 0%, rgba(7, 11, 18, 0.28) 74%, var(--ink) 100%),
      var(--ink);
  }

  .hero__inner {
    width: min(calc(100% - 3rem), 1120px);
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .subtitle {
    max-width: 46rem;
    font-size: 1.15rem;
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    flex: 0 0 auto;
  }

  .section {
    padding-block: 5.8rem;
    padding-inline: 1.5rem;
  }

  .claim-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .source-list li {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .hero__inner {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: 4.2rem;
  }

  .section__body {
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 2rem 4rem;
  }

  .section-label {
    grid-column: 1;
    grid-row: 1 / span 8;
    margin-top: 0.35rem;
  }

  .section__body > :not(.section-label) {
    grid-column: 2;
  }

  .claim-grid {
    grid-column: 1 / -1;
  }

  .sources .section__body {
    grid-template-columns: 0.85fr 2.15fr;
  }
}
