body.theme-home {
  color: var(--parchment);
  background: #0d0a08;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.hero-atmosphere,
.hero-veil {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-atmosphere {
  z-index: 0;
}

.hero-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.06);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero-veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 8, 5, 0.62) 0%, rgba(12, 8, 5, 0.22) 46%, rgba(12, 8, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 8, 5, 0.42) 0%, transparent 46%, rgba(12, 8, 5, 0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--wide);
  width: 100%;
  margin: 0 auto;
  padding: 6.5rem 1.25rem 3.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
}

.hero-lede {
  margin: 0;
  max-width: 24rem;
  color: rgba(232, 220, 198, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.hero-books {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: end;
}

.hero-book {
  display: grid;
  justify-items: start;
  text-decoration: none;
  color: var(--parchment);
}

.hero-book img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(56vh, 24rem);
  object-fit: contain;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(232, 220, 198, 0.18);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s var(--ease);
}

.hero-book:hover img,
.hero-book:focus-visible img {
  transform: translateY(-8px);
}

.hero-book h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.hero-book .eyebrow {
  margin-bottom: 0.35rem;
}

.hero-book-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.section {
  padding: clamp(4.2rem, 9vw, 7rem) 1.25rem;
}

.section-inner {
  max-width: var(--wide);
  margin: 0 auto;
}

.series-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #f6f1e4;
}

.series-band::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -2;
  background: url("../assets/eden/cover.jpg") center 28% / cover;
  filter: blur(42px) saturate(1.08) contrast(1.1) brightness(0.58);
  transform: scale(1.12);
}

.series-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(40, 32, 22, 0.18), rgba(40, 32, 22, 0.28)),
    linear-gradient(180deg, rgba(196, 176, 140, 0.42) 0%, rgba(168, 146, 108, 0.5) 100%),
    linear-gradient(90deg, rgba(90, 140, 180, 0.28), rgba(30, 51, 95, 0.2) 48%, rgba(180, 130, 50, 0.24));
}

.series-band .section-inner {
  position: relative;
}

.series-band .eyebrow {
  color: #e3b23c;
}

.series-band h2 {
  margin: 0 auto 1rem;
  max-width: 34rem;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  color: #fff;
  text-shadow: 0 2px 22px rgba(20, 16, 8, 0.35);
}

.series-band p {
  margin: 0 auto;
  max-width: 40rem;
  color: rgba(246, 241, 228, 0.86);
}

.books {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.book-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--parchment);
}

.book-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
}

.book-card:hover img {
  transform: scale(1.1);
}

.book-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 5, 0.08), rgba(10, 7, 5, 0.82));
  z-index: 1;
}

.book-card > * {
  position: relative;
  z-index: 2;
}

.book-card h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.author-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.author-photo {
  overflow: hidden;
  min-height: 28rem;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
  filter: saturate(0.92) contrast(1.05);
}

.author-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.author-copy .signature {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.praise {
  background: linear-gradient(180deg, #100c09, #1a140f 50%, #100c09);
}

.quote-feature {
  margin: 0 auto 2.5rem;
  max-width: 46rem;
  text-align: center;
}

.quote-feature p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.quote-feature footer,
.quote-grid footer {
  color: var(--gold);
  font-family: var(--font-display);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.quote-grid blockquote {
  margin: 0;
}

.quote-grid p {
  color: rgba(232, 220, 198, 0.76);
}

.follow {
  background:
    linear-gradient(180deg, rgba(12, 8, 5, 0.55), rgba(12, 8, 5, 0.88)),
    url("../assets/hero-both-books.jpg") center 40% / cover;
  text-align: center;
}

.follow h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
}

.follow-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .books,
  .author-block,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 5.75rem;
    padding-bottom: 3.25rem;
    gap: 2rem;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-intro h1 {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .hero-books {
    width: min(100%, 18rem);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }

  .hero-book {
    justify-items: center;
    width: 100%;
  }

  .hero-book img {
    width: 100%;
    height: auto;
    margin-bottom: 0.85rem;
  }

  .author-photo,
  .author-photo img {
    min-height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-atmosphere img,
  .hero-book img {
    animation: none;
    transition: none;
  }
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.2%, -0.8%, 0); }
}
