:root {
  color-scheme: light;
  --ink: #20232a;
  --muted: #5d6470;
  --paper: #f7f4ef;
  --panel: #fffdf9;
  --green: #496b58;
  --red: #a7473f;
  --gold: #c99a48;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(980px, 100%);
  min-height: min(620px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  align-items: center;
  gap: 56px;
}

.copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.cover-stack {
  position: relative;
  min-height: 420px;
}

.book {
  position: absolute;
  width: min(260px, 64vw);
  aspect-ratio: 0.68;
  border-radius: 5px;
  box-shadow: 0 22px 50px rgb(32 35 42 / 20%);
}

.book-back {
  left: 48px;
  top: 10px;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 16%), transparent 18%),
    linear-gradient(135deg, #f1ddbd, #d9b36a);
  transform: rotate(8deg);
}

.book-front {
  left: 0;
  top: 52px;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 18%), transparent 15%),
    linear-gradient(160deg, var(--red), #713b4f 58%, #243f54);
  color: #fff9ed;
  transform: rotate(-5deg);
}

.book-front span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  text-align: center;
}

@media (max-width: 760px) {
  .page {
    padding: 24px;
    place-items: start center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cover-stack {
    min-height: 310px;
  }

  .book {
    width: min(210px, 68vw);
  }

  .book-back {
    left: 42px;
  }

  .book-front {
    top: 44px;
  }
}
