/* ─────────────────────────────────────────────
   Reset & Custom Properties
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:          #FAF6EF;
  --linen:          #F5ECD7;
  --warm-white:     #FFFAF0;
  --forest:         #1D5C5C;
  --forest-light:   #2A7070;
  --terracotta:     #C67B5C;
  --terracotta-deep:#5D3A2E;
  --sage:           #9CAF88;
  --sage-light:     #C8D9BB;
  --gold:           #D4A843;
  --gold-light:     #E0BF6A;
  --bark:           #6B7355;
  --text:           #3A3A3A;
  --text-light:     #7A7A72;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--warm-white);
  line-height: 1.75;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ─────────────────────────────────────────────
   Typography
───────────────────────────────────────────── */
.label {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--forest);
  margin-top: 0.5rem;
}

.prose {
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  line-height: 1.82;
  color: var(--text);
  max-width: 62ch;
}

em.tc { font-style: italic; color: var(--terracotta-deep); }

/* ─────────────────────────────────────────────
   Layout
───────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.25rem;
}

section { padding: 6.5rem 0; }

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}

/* ─────────────────────────────────────────────
   Gold divider
───────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider.center { margin: 1.5rem auto; }

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */
.btn {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.88rem 2.1rem;
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.35s ease-out, color 0.35s ease-out;
}

.btn:hover { background: var(--forest); color: var(--cream); }

.btn-clay {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn-clay:hover { background: var(--terracotta); color: #fff; }

.btn-gold {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-gold:hover { background: var(--gold-light); color: var(--forest); }

/* ─────────────────────────────────────────────
   Scroll reveal
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   Navigation
───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.2rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#nav.scrolled {
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(29, 92, 92, 0.09);
}

#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  text-decoration: none;
}

.nav-logo em { font-style: italic; color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--forest);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   Hero (homepage)
─────────────────────���─────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(156, 175, 136, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse at 82% 28%, rgba(198, 123, 92, 0.09) 0%, transparent 52%),
    linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 52%, var(--linen) 100%);
}

.hero-inner { max-width: 760px; }

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.15s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: var(--forest);
  line-height: 1.04;
  margin-top: 1.1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.3s forwards;
}

.hero-title em { font-style: italic; color: var(--terracotta); }

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.75rem auto;
  transform: scaleX(0);
  transform-origin: center;
  animation: growLine 0.6s ease-out 0.55s forwards;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.32rem);
  line-height: 1.78;
  color: var(--text);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.45s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.6s forwards;
}

.hero-cta a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: background 0.35s ease-out, color 0.35s ease-out;
}

.hero-cta a:hover { background: var(--forest); color: var(--cream); }
.hero-cta a:hover svg path { stroke: var(--cream); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes growLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─────────────────────────────────────────────
   Books / Catalog (homepage)
───────────────────────────────────────────── */
#books { background: var(--warm-white); }

.books-header { text-align: center; margin-bottom: 4.5rem; }

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 860px) {
  .books-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.book-card {
  border: 1px solid rgba(29, 92, 92, 0.08);
  background: var(--linen);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
  text-decoration: none;
  color: inherit;
}

.book-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 48px rgba(29, 92, 92, 0.09);
}

.book-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.cover-1 { background: linear-gradient(155deg, #EAE6DC 0%, #D9CCB8 55%, #C8A882 100%); }
.cover-2 { background: linear-gradient(155deg, #E6E0D4 0%, #D4C5AF 55%, #C2A98A 100%); }
.cover-3 { background: linear-gradient(155deg, #EBE2D8 0%, #D8BAA2 55%, #C49272 100%); }

.cover-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 1.55rem;
  color: var(--forest);
  line-height: 1.18;
}

.cover-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.75;
  margin-top: 0.4rem;
}

.book-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: #fff;
  padding: 0.28rem 0.6rem;
}

.book-info {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-title {
  font-size: 1.55rem;
  color: var(--forest);
}

.book-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.3rem;
}

.book-desc {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  margin-top: 0.9rem;
  flex: 1;
}

.book-meta {
  font-family: 'Nunito', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(29, 92, 92, 0.08);
}

.book-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.book-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.book-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.book-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.book-link-secondary {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.book-link-secondary:hover { color: var(--forest); }

/* ─────────────────────────────────────────────
   About (homepage)
───────────────────────────────────────────── */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.author-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.prose-stack { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.8rem; }

.credentials {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(29, 92, 92, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.cred-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
}

.cred-value { font-size: 1rem; color: var(--text); }

/* ─────────────────────────────────────────────
   Reviews
───────────────────────────────────────────── */
#reviews { background: var(--linen); }

.reviews-header { text-align: center; margin-bottom: 4rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--warm-white);
  border: 1px solid rgba(29, 92, 92, 0.07);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.review-text {
  font-size: 1.08rem;
  line-height: 1.77;
  font-style: italic;
  color: var(--text);
  flex: 1;
}

.review-attr {
  font-family: 'Nunito', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ─────────────────────────────────────────────
   Trade (dark)
───────────────────────────────────────────── */
#trade { background: var(--forest); }

#trade .label { color: var(--gold-light); }
#trade .section-title { color: var(--cream); }
#trade .divider { background: var(--gold-light); }

.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

@media (max-width: 860px) { .trade-grid { grid-template-columns: 1fr; gap: 3rem; } }

.trade-list { display: flex; flex-direction: column; }

.trade-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(250, 246, 239, 0.1);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.82);
}

.trade-item::before { content: '—'; color: var(--gold-light); flex-shrink: 0; }

.trade-note {
  margin-top: 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 239, 0.42);
}

.trade-pitch h3 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.trade-pitch .prose {
  color: rgba(250, 246, 239, 0.8);
  max-width: 100%;
}

.trade-pitch .prose + .prose { margin-top: 1.1rem; }

/* ─────────────────────────────────────────────
   Doula / Partners
───────────────────────────────────────────── */
#doula { background: var(--linen); }

.doula-inner { max-width: 680px; }

.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.8rem;
  margin: 2.25rem 0;
}

.pull-quote p {
  font-style: italic;
  font-size: clamp(1.1rem, 2.1vw, 1.3rem);
  line-height: 1.72;
  color: var(--text);
}

/* ─────────────────────────────────────────────
   Newsletter / Sign-Up
───────────────────────────────────────────── */
#newsletter { background: var(--cream); text-align: center; }

.newsletter-inner { max-width: 560px; margin: 0 auto; }

.newsletter-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--terracotta-deep);
  line-height: 1.6;
  margin: 0.75rem 0 1.5rem;
}

.newsletter-desc {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.82;
  color: var(--text-light);
  max-width: 52ch;
  margin: 0 auto 2.75rem;
}

.newsletter-form-wrap { max-width: 400px; margin: 0 auto; }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
footer {
  background: var(--forest);
  text-align: center;
  padding: 3.75rem 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.footer-logo em { font-style: italic; color: var(--gold-light); }

.footer-copy {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(250, 246, 239, 0.38);
  margin-top: 1.1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(250, 246, 239, 0.38);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-socials a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.58);
  text-decoration: none;
  padding: 0 1.2rem;
  transition: color 0.3s ease;
}

.footer-socials a:not(:last-child) {
  border-right: 1px solid rgba(250, 246, 239, 0.15);
}

.footer-socials a:hover { color: var(--gold-light); }

.footer-email {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 239, 0.65);
  text-decoration: none;
  margin-top: 1.4rem;
  transition: color 0.3s ease;
}

.footer-email:hover { color: var(--gold-light); }

/* ─────────────────────────────────────────────
   Book Page — Hero
───────────────────────────────────────────── */
.book-hero {
  padding: 9rem 0 6rem;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(156, 175, 136, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(198, 123, 92, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 52%, var(--linen) 100%);
}

.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .book-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.book-hero-cover {
  position: relative;
}

.book-hero-cover img {
  width: 100%;
  display: block;
  box-shadow: 0 24px 80px rgba(29, 92, 92, 0.14);
}

.book-hero-cover-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(29, 92, 92, 0.14);
}

.book-hero-status {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: #fff;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.book-hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.1s forwards;
}

.book-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--forest);
  line-height: 1.06;
  margin-top: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.25s forwards;
}

.book-hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.35s forwards;
}

.book-hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.8;
  color: var(--text);
  max-width: 54ch;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.45s forwards;
}

.book-hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.75rem 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: growLine 0.6s ease-out 0.55s forwards;
}

.book-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.6s forwards;
}

.book-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 92, 92, 0.1);
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.7s forwards;
}

.spec-item {}

.spec-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
}

.spec-value {
  font-size: 0.95rem;
  color: var(--text);
}

/* ─────────────────────────────────────────────
   Book Page — About
───────────────────────────────────────────── */
.book-about { background: var(--warm-white); }

.book-about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .book-about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.book-themes {
  background: var(--linen);
  padding: 2rem;
}

.book-themes h4 {
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.theme-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.theme-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}

.theme-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   Book Page — Buy
───────────────────────────────────────────── */
.book-buy { background: var(--cream); }

.buy-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.buy-option {
  background: var(--warm-white);
  border: 1px solid rgba(29, 92, 92, 0.09);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.buy-option-name {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.buy-option-title {
  font-size: 1.2rem;
  color: var(--forest);
}

.buy-option-price {
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────────
   Book Page — Related
───────────────────────────────────────────── */
.related-books { background: var(--linen); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--warm-white);
  border: 1px solid rgba(29, 92, 92, 0.07);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(29, 92, 92, 0.08);
}

.related-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-info {
  padding: 1.25rem;
}

.related-title {
  font-size: 1.2rem;
  color: var(--forest);
}

.related-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.2rem;
}

/* ─────────────────────────────────────────────
   Breadcrumb
───────────────────────────────────────────── */
.breadcrumb {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover { color: var(--terracotta); }

.breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }
