:root {
  --forest: #1d3529;
  --forest-dark: #12231b;
  --olive: #536047;
  --charcoal: #252a27;
  --ink: #1d211f;
  --muted: #5d625b;
  --gold: #b9965a;
  --gold-dark: #8d713f;
  --ivory: #f7f1e5;
  --parchment: #efe4d0;
  --paper: #fffaf0;
  --line: rgba(29, 53, 41, 0.16);
  --shadow: 0 24px 70px rgba(18, 35, 27, 0.18);
  --shadow-soft: 0 14px 36px rgba(18, 35, 27, 0.11);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Optima, Candara, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(247, 241, 229, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
}

.nav-buy {
  padding: 8px 15px;
  color: var(--forest-dark);
  border: 1px solid rgba(185, 150, 90, 0.7);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest-dark);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5.4vw, 76px);
  min-height: clamp(570px, calc(100vh - 68px), 680px);
  padding: clamp(28px, 4.8vh, 52px) 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.7vw, 4.45rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 12px 21px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 13px 30px rgba(18, 35, 27, 0.25);
}

.button-secondary {
  background: rgba(255, 250, 240, 0.82);
  color: var(--forest-dark);
  border: 1px solid rgba(185, 150, 90, 0.75);
}

.trust-line {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.book-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 28px 22px;
  isolation: isolate;
}

.book-showcase::before {
  content: "";
  position: absolute;
  inset: 9% 0 6% 14%;
  z-index: -2;
  background: #223a2d;
  border: 1px solid rgba(185, 150, 90, 0.38);
  box-shadow: inset 0 0 0 1px rgba(239, 228, 208, 0.08), 0 22px 54px rgba(18, 35, 27, 0.2);
}

.book-showcase::after {
  content: "";
  position: absolute;
  inset: 17% 8% 14% 5%;
  z-index: -1;
  border: 1px solid rgba(239, 228, 208, 0.42);
}

.book-frame {
  width: min(100%, 366px);
  padding: 13px;
  background: #fff8ea;
  border: 1px solid rgba(185, 150, 90, 0.44);
  box-shadow: 0 24px 60px rgba(18, 35, 27, 0.28);
}

.book-frame img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(18, 35, 27, 0.24);
  box-shadow: 10px 14px 26px rgba(18, 35, 27, 0.22);
}

.book-overview,
.reviews,
.other-work,
.media {
  padding: 76px 0;
}

.reviews .eyebrow {
  white-space: nowrap;
}

.other-work {
  padding-bottom: 56px;
}

.media {
  padding-top: 58px;
  padding-bottom: 66px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 5vw, 64px);
}

.prose p,
.about-copy p,
.wide-prose {
  margin: 0 0 18px;
  color: var(--charcoal);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.theme-grid span,
.review-card,
.media-card {
  background: rgba(255, 250, 240, 0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.theme-grid span {
  min-height: 84px;
  padding: 18px;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
}

.section-band {
  padding: 70px 0;
  background: var(--parchment);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(29, 53, 41, 0.14);
  border: 1px solid rgba(29, 53, 41, 0.14);
}

.detail-list p {
  min-height: 150px;
  margin: 0;
  padding: 22px;
  background: var(--paper);
  color: var(--charcoal);
}

.review-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 174px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(185, 150, 90, 0.55);
  box-shadow: 0 18px 44px rgba(18, 35, 27, 0.12);
}

.review-card p {
  position: relative;
  margin: 0 0 18px;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.34;
}

.review-card p::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 16px;
  background: var(--gold);
}

.review-card cite {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5.5vw, 68px);
}

.portrait-frame {
  position: relative;
  padding: 13px;
  background: #fff7e9;
  border: 1px solid rgba(185, 150, 90, 0.38);
  box-shadow: 0 22px 58px rgba(18, 35, 27, 0.2);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(83, 96, 71, 0.2);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  border: 1px solid rgba(18, 35, 27, 0.18);
}

.wide-prose {
  max-width: 860px;
  font-size: 1.08rem;
}

.media-card {
  position: relative;
  min-height: 126px;
  padding: 21px 48px 44px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.media-card::after {
  content: "Listen / Watch";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(83, 96, 71, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(185, 150, 90, 0.7);
  box-shadow: 0 20px 48px rgba(18, 35, 27, 0.14);
}

.media-card:hover::after,
.media-card:focus-visible::after {
  color: var(--gold-dark);
}

.media-card span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-card strong {
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.25;
  max-width: 92%;
}

.final-cta {
  text-align: center;
  padding-top: 62px;
  padding-bottom: 64px;
}

.cta-panel {
  max-width: 860px;
}

.cta-panel h2 {
  margin: 0 auto;
}

.cta-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.centered {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 34px;
  padding: 30px clamp(20px, 5vw, 64px);
  background: var(--forest-dark);
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.92rem;
}

.site-footer strong {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.16rem;
}

.site-footer span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 250, 240, 0.7);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer p {
  grid-column: 1 / -1;
  padding-top: 14px;
  margin: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.66);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-buy {
    text-align: center;
    margin-top: 6px;
  }

  .hero,
  .overview-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    text-align: left;
  }

  .book-showcase {
    padding: 0;
  }

  .book-frame {
    width: min(78vw, 320px);
  }

  .detail-list,
  .review-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-list p {
    min-height: 120px;
  }

  .about-grid {
    align-items: start;
  }

  .portrait-frame {
    width: min(100%, 420px);
  }
}

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

  .site-header {
    min-height: 66px;
    padding-inline: 18px;
  }

  .site-nav {
    inset: 66px 12px auto 12px;
  }

  .section-shell {
    width: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .book-overview,
  .reviews,
  .other-work,
  .media,
  .section-band {
    padding: 62px 0;
  }

  .theme-grid,
  .detail-list,
  .review-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 16px;
  }

  .book-frame {
    width: min(82vw, 290px);
  }

  .detail-list p,
  .review-card,
  .media-card {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
