:root {
  --bg: #120a23;
  --bg2: #261241;
  --paper: rgba(18, 14, 38, 0.88);
  --paper-strong: rgba(13, 11, 30, 0.94);
  --ink: #f6f0ff;
  --muted: #d2c3ec;
  --line: rgba(168, 128, 240, 0.34);
  --accent: #ff5db1;
  --accent2: #6de7ff;
  --accent3: #ffd86f;
  --chip: rgba(49, 31, 84, 0.92);
  --shadow: 0 18px 44px rgba(4, 3, 16, 0.58);
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 32px rgba(109, 231, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", Verdana, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 93, 177, 0.18), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(109, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255, 216, 111, 0.12), transparent 24%),
    radial-gradient(circle at 10px 10px, rgba(255, 255, 255, 0.45) 1px, transparent 2px),
    radial-gradient(circle at 60px 40px, rgba(255, 255, 255, 0.28) 1px, transparent 2px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 3px, rgba(255, 255, 255, 0.01) 3px 18px),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-size: auto, auto, auto, 120px 120px, 160px 160px, 40px 40px, auto;
}

.skipLink {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  background: #1f1435;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skipLink:focus {
  top: 12px;
}

a {
  color: inherit;
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent3);
  outline-offset: 3px;
}

.topNav {
  width: min(1240px, calc(100% - 28px));
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(12, 10, 28, 0.86);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 0.94;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-shadow: 0 0 22px rgba(255, 93, 177, 0.25);
}

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

.navLinks a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(42, 26, 72, 0.95);
}

.navLinks a:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(58, 34, 98, 0.98);
}

.report {
  width: min(1240px, calc(100% - 28px));
  margin: 18px auto 26px;
}

.heroPanel,
.noteCard,
.castSection,
.archiveSection,
.trailCard,
.footer {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow), var(--glow);
}

.heroPanel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  padding: 22px;
  align-items: stretch;
}

.heroCopy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.eyebrow,
.noteLabel,
.sectionLabel,
.archiveTag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent2);
}

.heroCopy h1,
.sectionHead h2,
.noteCard h2,
.trailCard h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 0.95;
}

.heroCopy h1 {
  font-size: clamp(54px, 9vw, 110px);
  text-shadow: 0 0 26px rgba(255, 93, 177, 0.18);
}

.heroCopy h1 span {
  color: var(--accent3);
}

.dek {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.2;
  max-width: 22ch;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--chip);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.heroBody {
  max-width: 70ch;
}

.heroBody p,
.noteCard p,
.sectionHead p,
.archiveCard p,
.trailCard p {
  margin: 0 0 12px;
}

.heroBody p:last-child,
.noteCard p:last-child,
.sectionHead p:last-child,
.archiveCard p:last-child,
.trailCard p:last-child {
  margin-bottom: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
}

.btn.primary {
  color: #160d24;
  background: linear-gradient(120deg, var(--accent3), var(--accent));
}

.btn.secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(38, 22, 65, 0.96);
}

.heroShot {
  position: relative;
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 93, 177, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 12, 34, 0.98), rgba(13, 11, 27, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.stamp {
  position: absolute;
  right: 14px;
  top: 14px;
  transform: rotate(8deg);
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: #130b22;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.heroShot img,
.archiveCard img,
.portraitCard img {
  display: block;
  width: 100%;
  height: auto;
}

.heroShot img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: rgba(0, 0, 0, 0.4);
}

.heroShot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.autopsyGrid,
.trailGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.noteCard,
.trailCard {
  padding: 18px;
}

.noteCard h2,
.trailCard h2,
.sectionHead h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 6px 0 12px;
}

.cleanList {
  margin: 0;
  padding-left: 20px;
}

.cleanList li {
  margin: 8px 0;
}

.castSection,
.archiveSection {
  margin-top: 16px;
  padding: 20px;
}

.sectionHead {
  max-width: 74ch;
  margin-bottom: 16px;
}

.portraitGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portraitCard {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 216, 111, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(21, 16, 42, 0.96), rgba(12, 10, 25, 0.98));
  box-shadow: var(--glow);
}

.portraitCard:nth-child(2n) {
  transform: rotate(-0.8deg);
}

.portraitCard:nth-child(2n + 1) {
  transform: rotate(0.8deg);
}

.portraitCard h3,
.archiveCard h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--accent);
}

.portraitCard img {
  height: 320px;
  object-fit: contain;
  object-position: center top;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 18%, rgba(109, 231, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(4, 4, 10, 0.72), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.archiveGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.archiveCard {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--paper-strong);
}

.archiveCard img {
  margin: 10px 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: rgba(0, 0, 0, 0.45);
}

.footer {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 26px;
  padding: 14px 18px;
  text-align: center;
}

.footer p {
  margin: 6px 0;
}

@media (max-width: 1100px) {
  .heroPanel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .topNav {
    flex-direction: column;
    align-items: flex-start;
  }

  .autopsyGrid,
  .trailGrid,
  .archiveGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .report,
  .topNav,
  .footer {
    width: min(100%, calc(100% - 18px));
  }

  .heroPanel,
  .castSection,
  .archiveSection,
  .noteCard,
  .trailCard,
  .footer {
    border-radius: 18px;
  }

  .heroPanel {
    padding: 16px;
  }

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

  .portraitCard img {
    height: 280px;
  }
}
