:root {
  --ink: #07080b;
  --iron: #c7c9c8;
  --gold: #b4893c;
  --gold-bright: #e0be70;
  --blood: #a41018;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 10%, rgba(140, 5, 13, 0.17), transparent 36rem),
    #07080b;
  color: #eee9df;
  font-family: Georgia, 'Times New Roman', serif;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.08), rgba(7, 8, 11, 0.97) 66%),
    url('/cover-art.png') center 30% / cover;
  filter: blur(22px) saturate(0.72) brightness(0.35);
  opacity: 0.7;
  transform: scale(1.08);
}

.hero-grid {
  width: min(1380px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 28px clamp(22px, 5vw, 74px) clamp(42px, 7vh, 82px);
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(330px, 0.72fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(42px, 7vw, 110px);
}

.site-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(224, 190, 112, 0.28);
}

.wordmark,
.status,
.eyebrow,
.release-note,
footer {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.wordmark,
.status {
  margin: 0;
  font-size: 0.73rem;
}

.wordmark {
  color: var(--gold-bright);
  font-weight: 700;
}

.status {
  color: rgba(238, 233, 223, 0.62);
}

.cover-frame {
  align-self: center;
  width: min(100%, 610px);
  margin: clamp(32px, 5vh, 68px) auto 0;
  padding: 7px;
  background: linear-gradient(145deg, #e0be70, #4b3218 40%, #d0d0cd 64%, #5d3c19);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.72), 0 0 80px rgba(164, 16, 24, 0.2);
}

.cover-art {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #09090a;
}

.hero-copy {
  align-self: center;
  max-width: 580px;
  padding-top: clamp(30px, 8vh, 110px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.6;
}

h1,
h2 {
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.6vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 30px #000;
}

.lead {
  max-width: 48ch;
  margin: 34px 0 0;
  color: rgba(238, 233, 223, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding: 14px 18px;
  border: 1px solid rgba(224, 190, 112, 0.64);
  color: #f3dfb1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.story-link:hover,
.story-link:focus-visible {
  background: var(--gold-bright);
  color: #15100a;
  transform: translateY(-2px);
  outline: none;
}

.release-note {
  margin: 30px 0 0;
  color: rgba(238, 233, 223, 0.43);
  font-size: 0.58rem;
  line-height: 1.6;
}

.premise {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(44px, 9vw, 150px);
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(90px, 13vw, 180px) 0;
  border-top: 1px solid rgba(224, 190, 112, 0.22);
}

.premise h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 4.2vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.premise > p {
  align-self: end;
  margin: 0;
  padding-left: clamp(24px, 5vw, 70px);
  border-left: 1px solid rgba(164, 16, 24, 0.72);
  color: rgba(238, 233, 223, 0.72);
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
  line-height: 1.75;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(238, 233, 223, 0.12);
  color: rgba(238, 233, 223, 0.42);
  font-size: 0.58rem;
}

footer p {
  margin: 0;
}

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

  .cover-frame {
    width: min(100%, 560px);
  }

  .hero-copy {
    padding: 54px 0 20px;
  }

  h1 {
    max-width: 12ch;
  }

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

  .premise > p {
    padding: 0 0 0 22px;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    padding-inline: 16px;
  }

  .site-header {
    padding-inline: 4px;
  }

  .cover-frame {
    margin-top: 24px;
    padding: 4px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  footer {
    gap: 20px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .story-link {
    transition: none;
  }
}
