:root {
  color-scheme: dark;
  --ink: #f4eee2;
  --muted: #c9bfae;
  --line: rgba(244, 238, 226, 0.18);
  --gold: #d6a74f;
  --earth: #16120f;
  --charcoal: #0b0a0d;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background: var(--charcoal);
}

.hero {
  min-height: 84vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 40px 6vw 72px;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 10, 0.08), rgba(8, 7, 10, 0.92)),
    linear-gradient(90deg, rgba(8, 7, 10, 0.85), rgba(8, 7, 10, 0.28) 52%, rgba(8, 7, 10, 0.78)),
    url("assets/every-road-but-mine-cover.png") center 38% / cover no-repeat;
  transform: scale(1.03);
  z-index: -1;
}

.hero__content {
  max-width: 880px;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.series {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.intro {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.55;
}

main {
  background: linear-gradient(180deg, #100d0d, var(--earth));
}

.book,
.note {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.book {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 72px 0;
}

.book__cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.book__details h2,
.note h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.book__details p,
.note p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.note {
  border-top: 1px solid var(--line);
  padding: 56px 0 72px;
}

.note h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

@media (max-width: 760px) {
  .hero {
    min-height: 78vh;
    padding: 32px 24px 52px;
  }

  .book {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .book__cover {
    max-width: 320px;
  }
}
