:root {
  --ink: #120d0d;
  --night: #070708;
  --charcoal: #181412;
  --blood: #7f1717;
  --blood-bright: #b72a25;
  --bone: #f0e7d6;
  --paper: #d7c4a4;
  --moss: #4e5a45;
  --steel: #8a908f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 18% 12%, rgba(127, 23, 23, 0.24), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #16100d 48%, #070707 100%);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  gap: 0;
  text-decoration: none;
}

.brand span {
  color: var(--bone);
  font-family: "Cinzel", serif;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1;
}

.brand small {
  color: var(--paper);
  font-family: "Special Elite", cursive;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

nav a {
  color: rgba(240, 231, 214, 0.76);
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible {
  color: var(--bone);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(100% - 32px, var(--max));
  min-height: calc(100svh - 84px);
  margin: 0 auto;
  padding: clamp(38px, 7vw, 90px) 0 clamp(72px, 9vw, 110px);
}

.hero__backdrop {
  position: absolute;
  inset: 8% -8% 4%;
  z-index: -1;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 196, 164, 0.2);
}

.hero__backdrop::before,
.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__backdrop::before {
  background:
    linear-gradient(110deg, rgba(7, 7, 8, 0.2), rgba(7, 7, 8, 0.88)),
    repeating-linear-gradient(92deg, transparent 0 32px, rgba(240, 231, 214, 0.035) 33px 34px),
    linear-gradient(178deg, transparent 0 56%, rgba(127, 23, 23, 0.32) 56.3% 57.1%, transparent 57.5%),
    linear-gradient(180deg, transparent 0 46%, rgba(215, 196, 164, 0.1) 46.3%, transparent 46.7%);
}

.hero__backdrop::after {
  background:
    radial-gradient(ellipse at 75% 22%, rgba(240, 231, 214, 0.16), transparent 10rem),
    linear-gradient(0deg, rgba(7, 7, 8, 0.78), transparent 42%);
}

.kicker {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: "Special Elite", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1,
h2 {
  font-family: "Cinzel", serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.1rem, 12vw, 10.8rem);
  letter-spacing: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.72);
}

.hero h1 {
  font-family: "Special Elite", cursive;
  font-weight: 400;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

h3 {
  color: var(--bone);
  font-family: "Special Elite", monospace;
  font-size: 1.05rem;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(240, 231, 214, 0.84);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(240, 231, 214, 0.4);
  font-family: "Special Elite", monospace;
  font-size: 0.95rem;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  border-color: var(--blood-bright);
  background: var(--blood);
  color: var(--bone);
}

.button--ghost {
  background: rgba(18, 13, 13, 0.5);
}

.book-portrait {
  justify-self: center;
  width: min(100%, 420px);
  margin: 0;
}

.book-portrait img {
  width: 100%;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.72));
}

.book-portrait figcaption {
  margin-top: 10px;
  color: rgba(240, 231, 214, 0.72);
  font-family: "Special Elite", monospace;
  font-size: 0.82rem;
  text-align: center;
  text-transform: uppercase;
}

section:not(.hero) {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.story-band {
  padding: clamp(54px, 8vw, 96px) 0;
  border-top: 1px solid rgba(215, 196, 164, 0.18);
}

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

.story-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.pullquote {
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(215, 196, 164, 0.26);
  background:
    linear-gradient(rgba(18, 13, 13, 0.68), rgba(18, 13, 13, 0.74)),
    radial-gradient(circle at 35% 12%, rgba(127, 23, 23, 0.38), transparent 16rem);
}

.pullquote p {
  margin: 0;
  color: var(--paper);
  font-family: "Special Elite", monospace;
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  line-height: 1.25;
}

.copy {
  columns: 2 260px;
  column-gap: 42px;
}

.copy p,
.feature p,
.author p,
.contact p {
  margin-top: 0;
  color: rgba(240, 231, 214, 0.78);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(215, 196, 164, 0.2);
  border-bottom: 1px solid rgba(215, 196, 164, 0.2);
}

.timeline__item {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(215, 196, 164, 0.16);
  background: rgba(240, 231, 214, 0.035);
}

.timeline__item:last-child {
  border-right: 0;
}

.timeline__item span {
  display: block;
  margin-bottom: 40px;
  color: var(--blood-bright);
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.timeline__item p {
  margin-bottom: 0;
  color: rgba(240, 231, 214, 0.7);
}

.feature,
.author {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) 0;
}

.feature img,
.author img {
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  border: 1px solid rgba(215, 196, 164, 0.22);
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.feature__copy,
.author__copy {
  max-width: 640px;
}

.author {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.8fr);
  border-top: 1px solid rgba(215, 196, 164, 0.18);
}

.author img {
  object-position: center 22%;
}

.contact {
  padding: clamp(54px, 8vw, 90px) 0;
  border-top: 1px solid rgba(215, 196, 164, 0.18);
  text-align: center;
}

.contact p {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: rgba(215, 196, 164, 0.58);
  font-family: "Special Elite", monospace;
  font-size: 0.78rem;
  text-align: center;
}

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

  nav {
    justify-content: flex-start;
  }

  .hero,
  .story-grid,
  .feature,
  .author {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .book-portrait {
    width: min(72vw, 360px);
  }

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

  .timeline__item {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 196, 164, 0.16);
  }

  .timeline__item:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
    gap: 28px;
  }

  h1 {
    font-size: clamp(4.1rem, 10vw, 6.4rem);
  }

  .lead {
    font-size: 1.18rem;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .site-header,
  section:not(.hero),
  .hero,
  footer {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(3.6rem, 22vw, 5.6rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .feature img,
  .author img {
    height: 300px;
  }

  .pullquote {
    min-height: 0;
    padding: 24px;
  }
}
