:root {
  --black: #08080a;
  --coal: #101014;
  --paper: #eeeeef;
  --muted: #b6b6bd;
  --red: #b3181f;
  --red-bright: #e12b31;
  --line: rgba(255,255,255,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.page-shell { min-height: 100vh; overflow: hidden; }
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,0));
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  z-index: 0;
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: -.08em;
  text-indent: -1px;
  color: var(--paper);
  font-size: 14px;
  line-height: 1;
  padding-top: 1px;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border: 1px solid rgba(225,43,49,.72);
  transform: rotate(45deg);
  background: rgba(0,0,0,.54);
  box-shadow: 0 0 24px rgba(225,43,49,.22);
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
}
nav { display: flex; gap: 28px; }
nav a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}
nav a:hover, nav a:focus-visible { color: white; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('assets/hero-backdrop.webp') center/cover no-repeat;
  transform: scale(1.06);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 46%, rgba(186,21,28,.32), transparent 31%),
    linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.52) 55%, var(--black) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.014) 12.1% 12.2%);
  pointer-events: none;
}
.hero-content {
  text-align: center;
  padding: 120px 24px 60px;
  animation: rise .9s ease-out both;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 11px;
  font-weight: 700;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(74px, 13vw, 190px);
  line-height: .73;
  letter-spacing: -.065em;
  text-shadow: 0 8px 50px rgba(0,0,0,.72);
}
h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.82); }
.hero-line {
  margin: 38px 0 28px;
  color: rgba(255,255,255,.88);
  font-family: Georgia, serif;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.primary-button {
  display: inline-flex;
  justify-content: center;
  min-width: 190px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(0,0,0,.42);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  transition: .25s ease;
}
.primary-button:hover, .primary-button:focus-visible {
  border-color: var(--red-bright);
  background: rgba(179,24,31,.22);
  box-shadow: 0 0 34px rgba(225,43,49,.18);
}

.release-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}
.cover-wrap {
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.1);
}
.cover-wrap::after {
  content: "";
  position: absolute;
  inset: 8% -8% -8% 8%;
  z-index: -1;
  background: rgba(179,24,31,.22);
  filter: blur(42px);
}
.release-copy h2, .story-section h2 {
  font-size: clamp(43px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.035em;
}
.release-hook {
  margin: 30px 0 24px;
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
}
.body-copy { color: var(--muted); max-width: 620px; font-size: 17px; }
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  color: rgba(255,255,255,.74);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(225,43,49,.55);
  animation: pulse 1.8s infinite;
}

.story-section {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 28px 150px;
  text-align: center;
}
.story-rule {
  width: 1px;
  height: 70px;
  margin: 0 auto 36px;
  background: linear-gradient(to bottom, transparent, var(--red-bright));
}
.story-section p:last-child {
  max-width: 720px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px,5vw,72px);
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.46);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 9px;
}

@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(225,43,49,0); } 100% { box-shadow: 0 0 0 0 rgba(225,43,49,0); } }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }

@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  nav { display: none; }
  .brand-name { font-size: 11px; }
  .hero-content { padding-top: 100px; }
  h1 { line-height: .8; }
  .hero-line { letter-spacing: .09em; }
  .release-section { grid-template-columns: 1fr; }
  .cover-wrap { max-width: 520px; margin: 0 auto; }
  .release-copy { text-align: center; }
  .body-copy { margin-left: auto; margin-right: auto; }
  footer { flex-direction: column; text-align: center; }
}
