:root {
  --bg: #050000;
  --panel: rgba(10, 0, 0, 0.78);
  --panel-strong: rgba(18, 0, 0, 0.9);
  --text: #fff4ec;
  --muted: #d8b9b4;
  --blood: #a90000;
  --blood-bright: #e00000;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.96)),
    radial-gradient(circle at top left, rgba(149, 0, 0, 0.48), transparent 36rem),
    url("../images/hw-bg-2.webp") center top / cover fixed,
    var(--bg);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.015em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  pointer-events: none;
}

a {
  color: inherit;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-transform: uppercase;
  line-height: 0.95;
  text-wrap: balance;
}

h1 {
  max-width: 960px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(4rem, 13vw, 10.5rem);
  text-shadow: 0 0 14px rgba(224, 0, 0, 0.8), 0 8px 0 #250000;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: #fff;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: #000;
  border: 1px solid var(--blood-bright);
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  background: rgba(3, 0, 0, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, #2c0000, var(--blood));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.4rem;
  box-shadow: 0 0 22px rgba(169, 0, 0, 0.75);
}

.brand-text,
.nav-links a,
.button {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.hero {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 72px);
  padding-top: clamp(5rem, 10vw, 8rem);
}

.hero::after {
  content: "";
  display: block;
  width: min(760px, 100%);
  height: 5px;
  margin-top: 2rem;
  background: linear-gradient(90deg, var(--blood-bright), transparent);
  box-shadow: 0 0 28px rgba(224, 0, 0, 0.9);
}

.eyebrow,
.section-kicker,
.card-number {
  color: #ffbbbb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #7e0000, var(--blood-bright));
  box-shadow: 0 12px 30px rgba(169, 0, 0, 0.36);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.story-copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.video-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 1.5rem;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.video-frame {
  padding: clamp(0.55rem, 1.5vw, 1rem);
  background: linear-gradient(135deg, rgba(120, 0, 0, 0.78), rgba(0, 0, 0, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  box-shadow: 0 0 46px rgba(169, 0, 0, 0.62), var(--shadow);
}

video {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #000;
  border-radius: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.archive-panel {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  box-shadow: var(--shadow);
}

.card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card p {
  color: var(--muted);
  font-size: 1rem;
}

.card-number {
  display: inline-block;
  margin-bottom: 1rem;
}

.archive {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.archive-panel {
  max-width: 900px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(3, 0, 0, 0.92), rgba(40, 0, 0, 0.84)),
    url("../images/spot1.webp") center / cover;
}

.small-note,
.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
  background: #030000;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

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

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

  .hero {
    min-height: auto;
  }

  .story-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav-links a {
    font-size: 0.82rem;
  }

  .button {
    width: 100%;
  }
}
