/* ─── TOKENS ─── */
:root {
  --cream:       #f5e2cc;
  --cream-light: #faf3ea;
  --cream-dark:  #ecdab8;
  --burgundy:    #7c1326;
  --burgundy-dk: #560d1a;
  --pink:        #e4929e;
  --pink-light:  #f2c4cb;
  --pink-mid:    #d47580;
  --choco:       #7b4a2d;
  --choco-light: #a0673a;
  --white:       #fdf8f3;
  --text-dark:   #2c1a14;
  --text-mid:    #5a3629;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--burgundy) var(--cream-dark);
}
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}
.site-wrap {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
*::-webkit-scrollbar-thumb {
  background: var(--burgundy);
  border-radius: 10px;
  border: 2px solid var(--cream-dark);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--burgundy-dk);
}

/* ─── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 226, 204, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(124, 19, 38, 0.1);
  transition: box-shadow 0.3s var(--ease-smooth);
}
nav.scrolled { box-shadow: 0 4px 32px rgba(124, 19, 38, 0.12); }

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}
.nav-logo a {
  color: inherit;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 8px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: width 0.3s var(--ease-snappy);
}
.nav-links a:hover,
.nav-links a.active { color: var(--burgundy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--burgundy);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.2s var(--ease-bounce) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--burgundy-dk) !important; transform: scale(1.04) !important; color: var(--white) !important; }

/* hamburger */
.hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 1100;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease-snappy), opacity 0.3s;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-logo-image {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(165deg, var(--cream-light) 0%, var(--cream) 55%, var(--pink-light) 140%);
  z-index: 1090;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 96px 28px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  display: flex;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 7vw, 2.4rem);
  font-weight: 700;
  color: var(--burgundy);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s var(--ease-snappy);
  padding: 12px 20px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:active {
  color: var(--burgundy-dk);
}
.mobile-menu a.mobile-nav-cta {
  margin-top: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 50px;
  padding: 16px 28px;
  box-shadow: 0 8px 28px rgba(124, 19, 38, 0.28);
  width: auto;
  min-width: 200px;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }

/* ─── SECTION REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease-snappy), transform 0.55s var(--ease-snappy);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* SPA page switch: never leave active-page content invisible */
.page.active .reveal { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */

/* HERO */
.hero {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  box-sizing: border-box;
}
.hero-slides {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: calc(100svh - 72px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px) scale(0.985);
  transition:
    opacity 0.7s var(--ease-smooth),
    visibility 0.7s,
    transform 0.7s var(--ease-smooth);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  transform: translateX(0) scale(1);
}
.hero-slide.is-leaving {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 0;
  transform: translateX(-28px) scale(0.985);
}
.hero-slide .hero-inner {
  width: 100%;
}
.hero-right {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.hero-right.is-dragging {
  cursor: grabbing;
}
.hero-right img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
.hero-nav,
.hero-dots {
  display: none !important;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 60%, var(--pink-light) 100%);
  z-index: 0;
}
/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  animation: blob-drift 16s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 520px; height: 520px;
  background: var(--pink);
  top: -120px; right: -80px;
  animation-duration: 18s;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  background: var(--choco-light);
  bottom: -60px; left: 60px;
  opacity: 0.18;
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}
.hero-blob-3 {
  width: 260px; height: 260px;
  background: var(--burgundy);
  top: 40%; left: 40%;
  opacity: 0.1;
  animation-duration: 14s;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.06); }
  100% { transform: translate(-20px, 30px) scale(0.96); }
}

/* Cream frosting border decoration top */
.frosting-top {
  position: absolute;
  top: 72px; left: 0; right: 0;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='28' viewBox='0 0 80 28'%3E%3Cellipse cx='10' cy='14' rx='10' ry='10' fill='%23faf3ea' opacity='0.8'/%3E%3Cellipse cx='30' cy='10' rx='10' ry='10' fill='%23faf3ea' opacity='0.8'/%3E%3Cellipse cx='50' cy='14' rx='10' ry='10' fill='%23faf3ea' opacity='0.8'/%3E%3Cellipse cx='70' cy='10' rx='10' ry='10' fill='%23faf3ea' opacity='0.8'/%3E%3C/svg%3E") repeat-x center;
  z-index: 2;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
  box-sizing: border-box;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(124, 19, 38, 0.1);
  border: 1px solid rgba(124, 19, 38, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.5s var(--ease-snappy) 0.2s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--pink-mid);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--burgundy-dk);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.6s var(--ease-snappy) 0.4s forwards;
}
.hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--burgundy);
}
.hero-title .script-accent {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  display: block;
  color: var(--burgundy);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 460px;
  opacity: 0;
  animation: fade-up 0.5s var(--ease-snappy) 0.75s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.45s var(--ease-bounce) 1s forwards;
  position: relative;
  z-index: 5;
}
.page.active .hero-btns {
  opacity: 1;
  animation: none;
  transform: none;
}
.btn-primary {
  padding: 16px 36px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s var(--ease-bounce), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(124, 19, 38, 0.3);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(124, 19, 38, 0.4);
}
.btn-primary:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }

.btn-ghost {
  padding: 15px 32px;
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s, transform 0.2s var(--ease-bounce);
}
.btn-ghost:hover { background: var(--burgundy); color: var(--white); transform: scale(1.04); }
.btn-ghost:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  opacity: 0;
  animation: book-float-in 0.8s var(--ease-snappy) 0.3s forwards;
}
@keyframes book-float-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.book-cover-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: min(420px, 75vh);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  animation: float-book 6s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes float-book {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-14px) rotate(1.5deg); }
}
.book-cover-wrapper img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  filter:
    drop-shadow(0 22px 40px rgba(124, 19, 38, 0.32))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.14));
}
.book-glow {
  display: none;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* STATS STRIP */
.stats-strip {
  background: var(--burgundy);
  padding: 36px 48px;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--pink-light);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  display: block;
}

/* ABOUT TEASER */
.about-teaser {
  padding: 120px 48px;
  background: var(--white);
}
.about-teaser-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 19, 38, 0.08);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--burgundy-dk);
  margin-bottom: 20px;
}
.section-headline em { font-style: italic; color: var(--burgundy); }
.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.about-teaser-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25em;
}
.about-teaser-copy p:last-child {
  margin-bottom: 32px;
}

.author-photo-frame {
  position: relative;
}
.author-photo-frame img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 48px rgba(124, 19, 38, 0.2);
}
.photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(124, 19, 38, 0.4);
}
.photo-badge-text {
  font-family: 'Dancing Script', cursive;
  font-size: 0.75rem;
  color: var(--pink-light);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}

.decorative-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--pink));
  border-radius: 3px;
  margin: 20px 0;
}

/* BOOK SPOTLIGHT HOME */
.book-spotlight {
  padding: 120px 48px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.book-spotlight::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(228,146,158,0.25), transparent 70%);
  pointer-events: none;
}
.book-spotlight-slides {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 420px;
}
.book-spotlight-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}
.book-spotlight-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.book-spotlight-slide.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-28px);
}
.book-spotlight-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.book-spotlight-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.book-spotlight-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(124, 19, 38, 0.22);
  background: rgba(255, 252, 247, 0.92);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 19, 38, 0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.book-spotlight-nav:hover {
  background: #fff;
  box-shadow: 0 10px 28px rgba(124, 19, 38, 0.18);
  transform: translateY(-50%) scale(1.04);
}
.book-spotlight-nav--prev { left: 16px; }
.book-spotlight-nav--next { right: 16px; }
.book-spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.book-spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(124, 19, 38, 0.25);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.book-spotlight-dot.is-active {
  background: var(--burgundy);
  transform: scale(1.2);
}
.book-spotlight .book-display {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.book-spotlight .book-display img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(124, 19, 38, 0.22);
}
.book-display {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.book-display img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(124, 19, 38, 0.3);
}
.book-spine-shadow {
  position: absolute;
  bottom: -8px;
  left: 10px; right: 10px;
  height: 20px;
  background: rgba(124, 19, 38, 0.2);
  filter: blur(12px);
  border-radius: 50%;
}

.book-info {}
.book-title-display {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.book-subtitle-display {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--choco);
  margin-bottom: 24px;
}

.book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tag {
  padding: 6px 16px;
  background: rgba(124, 19, 38, 0.1);
  border: 1px solid rgba(124, 19, 38, 0.18);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.04em;
}

.book-quote-home {
  background: var(--white);
  border-left: 4px solid var(--burgundy);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}
.book-quote-home p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 48px;
  background: var(--white);
}
.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-center { text-align: center; margin-bottom: 64px; }
.section-center .section-tag { margin: 0 auto 20px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.testimonials-slider {
  position: relative;
  padding: 20px 60px 12px;
}
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  padding: 14px 12px 28px;
  box-sizing: border-box;
}
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s var(--ease-snappy);
  will-change: transform;
}
.testimonials-track .testimonial-card {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  height: auto;
  box-sizing: border-box;
}
.testimonials-nav {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(124, 19, 38, 0.18);
  background: var(--cream-light);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(124, 19, 38, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}
.testimonials-nav:hover {
  background: var(--burgundy);
  color: #fff;
}
.testimonials-nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.testimonials-nav--prev { left: 4px; }
.testimonials-nav--next { right: 4px; }
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 4px;
}
.testimonials-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(124, 19, 38, 0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-dot.is-active {
  background: var(--burgundy);
  transform: scale(1.15);
}
.testimonials-slider.is-static .testimonials-nav,
.testimonials-slider.is-static .testimonials-dots {
  display: none;
}
.testimonials-slider.is-static {
  padding: 20px 0 12px;
}
.testimonials-slider.is-static .testimonials-track .testimonial-card {
  flex: 1 1 0 !important;
  width: auto !important;
  max-width: none !important;
}
.testimonial-card {
  background: var(--cream-light);
  border: 1px solid rgba(124, 19, 38, 0.1);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(124, 19, 38, 0.16);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star {
  font-size: 0.95rem;
  line-height: 1;
}
.star.is-filled { color: var(--burgundy); }
.star.is-empty { color: rgba(124, 19, 38, 0.25); }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 22px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-info-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.author-info-role {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.3;
}

/* CTA BANNER */
.cta-banner {
  padding: 100px 48px;
  background: var(--burgundy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(228,146,158,0.2), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 20px;
}
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--white);
  color: var(--burgundy);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
.cta-btn:focus-visible { outline: 2px solid var(--pink-light); outline-offset: 4px; }

/* ─────────────────────────────────────────
   BOOK PAGE
───────────────────────────────────────── */
.book-hero {
  padding: 160px 48px 100px;
  background: linear-gradient(145deg, var(--cream-light), var(--cream));
  position: relative;
  overflow: hidden;
}
.book-hero--stacked {
  padding-top: 100px;
  border-top: 1px solid rgba(124, 19, 38, 0.08);
}
.book-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 19, 38, 0.15), transparent);
}
.book-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.book-hero-blob-1 {
  width: 400px; height: 400px;
  background: rgba(228,146,158,0.3);
  top: -80px; right: -60px;
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.book-hero-blob-2 {
  width: 300px; height: 300px;
  background: rgba(124,19,38,0.12);
  bottom: -40px; left: 100px;
  animation: blob-drift 22s ease-in-out infinite alternate-reverse;
}

.book-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.book-cover-main {
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 100%;
}
.book-cover-main img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(124, 19, 38, 0.35), -8px 0 24px rgba(0,0,0,0.1);
}
.book-cover-main-shadow {
  width: 80%;
  height: 20px;
  background: rgba(124,19,38,0.2);
  filter: blur(14px);
  border-radius: 50%;
  margin: 0 auto;
  margin-top: -4px;
}

.book-detail-content { padding-top: 8px; }
.book-detail-genre { margin-bottom: 16px; }

.book-detail-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.book-detail-author {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--choco);
  font-style: italic;
  margin-bottom: 4px;
}
.book-detail-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.rating-stars { display: flex; gap: 3px; }
.rating-num {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.rating-count { font-size: 0.85rem; color: var(--text-mid); }

.book-detail-desc {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 36px;
  border-left: 3px solid var(--pink);
  padding-left: 20px;
}

.book-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.meta-item {
  background: var(--white);
  border: 1px solid rgba(124,19,38,0.1);
  border-radius: 14px;
  padding: 16px 20px;
}
.meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 4px;
}
.meta-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.buy-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* BOOK EXCERPT */
.book-excerpt {
  padding: 100px 48px;
  background: var(--burgundy);
}
.book-excerpt-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.excerpt-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 24px;
}
.excerpt-ornament {
  font-family: 'Dancing Script', cursive;
  font-size: 5rem;
  color: var(--pink-light);
  opacity: 0.3;
  line-height: 0.7;
  display: block;
  margin-bottom: 12px;
}
.excerpt-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}
.excerpt-source {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-light);
  letter-spacing: 0.06em;
}

/* BOOK MORE DETAIL */
.book-more {
  padding: 100px 48px;
  background: var(--white);
}
.book-more--home-shelf {
  background: var(--cream-light, #faf6f0);
}
.book-more-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.book-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.book-section-card {
  background: var(--cream-light);
  border: 1px solid rgba(124,19,38,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.25s var(--ease-snappy), box-shadow 0.25s;
}
.book-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124,19,38,0.12);
}
.bsc-icon {
  width: 52px; height: 52px;
  background: rgba(124,19,38,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--burgundy);
}
.bsc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy-dk);
  margin-bottom: 12px;
}
.bsc-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* BOOK CATALOG (multiple products) */
.book-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.book-catalog-card {
  background: var(--cream-light);
  border: 1px solid rgba(124,19,38,0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-snappy), box-shadow 0.25s;
}
.book-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124,19,38,0.12);
}
.book-catalog-card__cover {
  background: var(--cream);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.book-catalog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-catalog-card__body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.book-catalog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy-dk);
  line-height: 1.3;
  margin: 0;
}
.book-catalog-card__sub {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin: 0;
}
.book-catalog-card__price {
  font-weight: 600;
  color: var(--burgundy);
  margin: 4px 0 8px;
}
.book-catalog-card__body .btn-primary,
.book-catalog-card__body .btn-ghost,
.buy-buttons .btn-primary,
.buy-buttons .btn-ghost {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}


/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-hero {
  padding: 160px 48px 100px;
  background: linear-gradient(145deg, var(--cream-light), var(--cream));
  position: relative;
  overflow: hidden;
}
.about-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.about-hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(228,146,158,0.28);
  top: -100px; right: -60px;
  animation: blob-drift 20s ease-in-out infinite alternate;
}
.about-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(124,19,38,0.25);
}
.about-photo-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--burgundy);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(124,19,38,0.35);
}
.about-photo-badge-title {
  font-family: 'Dancing Script', cursive;
  font-size: 0.9rem;
  color: var(--pink-light);
  display: block;
  line-height: 1.4;
}

.about-bio-content { padding-top: 8px; }
.about-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--burgundy-dk);
  line-height: 1.05;
  margin-bottom: 8px;
}
.about-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 28px;
}
.about-bio-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ABOUT MISSION */
.about-mission {
  padding: 100px 48px;
  background: var(--white);
}
.about-mission-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.mission-card {
  background: var(--cream-light);
  border: 1px solid rgba(124,19,38,0.1);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-snappy), box-shadow 0.25s;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(124,19,38,0.12);
}
.mission-card-accent {
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(228,146,158,0.25), transparent 70%);
  pointer-events: none;
}
.mission-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(124,19,38,0.08);
  position: absolute;
  top: 16px; right: 28px;
  line-height: 1;
}
.mission-icon {
  width: 56px; height: 56px;
  background: rgba(124,19,38,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.mission-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--burgundy-dk);
  margin-bottom: 12px;
}
.mission-text {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--text-mid);
}

/* HEALTH MESSAGE */
.health-message {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}
.health-message-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.health-message-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--burgundy-dk);
  line-height: 1.2;
  margin-bottom: 20px;
}
.health-message-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.health-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.health-stat {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(124,19,38,0.1);
  transition: transform 0.25s var(--ease-snappy), box-shadow 0.25s;
}
.health-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(124,19,38,0.1);
}
.health-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--burgundy);
  display: block;
}
.health-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.4;
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 48px;
  background: var(--white);
}
.contact-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-headline { margin-bottom: 16px; }
.contact-left p { font-size: 0.98rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 32px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(124,19,38,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; color: var(--pink-mid); letter-spacing: 0.08em; text-transform: uppercase; }
.contact-info-value { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); margin-top: 2px; }

.contact-form {
  background: var(--cream-light);
  border: 1px solid rgba(124,19,38,0.1);
  border-radius: 24px;
  padding: 40px 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(124,19,38,0.15);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  resize: none;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(124,19,38,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s var(--ease-bounce);
}
.form-submit:hover { background: var(--burgundy-dk); transform: scale(1.02); }
.form-submit:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }

/* SUCCESS MESSAGE */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 60px; height: 60px;
  background: rgba(124,19,38,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--burgundy);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--burgundy-dk);
  padding: 80px 48px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink-light);
  margin-bottom: 12px;
  display: inline-block;
  text-decoration: none;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-bounce);
  min-width: 44px; min-height: 44px;
}
.social-btn:hover { background: rgba(228,146,158,0.25); color: var(--pink-light); transform: scale(1.1); }
.social-btn:focus-visible { outline: 2px solid var(--pink-light); outline-offset: 2px; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink-light); }
.footer-links a:focus-visible { outline: 2px solid var(--pink-light); outline-offset: 2px; }

.footer-newsletter-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.6;
}
.newsletter-form {
  width: 100%;
}
.footer-newsletter-input-wrap {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}
.footer-input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  min-height: 44px;
}
.footer-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-input:focus { outline: none; border-color: var(--pink-light); }
.footer-input.is-invalid { border-color: #f2a0a8; }
.footer-subscribe {
  flex-shrink: 0;
  padding: 11px 18px;
  background: var(--pink-mid);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
  cursor: pointer;
}
.footer-subscribe:hover { background: var(--burgundy); transform: scale(1.03); }
.footer-subscribe:focus-visible { outline: 2px solid var(--pink-light); outline-offset: 2px; }
.footer-subscribe:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.footer-newsletter-msg {
  margin-top: 10px;
  font-size: 0.78rem;
  line-height: 1.4;
}
.footer-newsletter-msg.is-success { color: var(--pink-light); }
.footer-newsletter-msg.is-error { color: #f2a0a8; }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-copy a { color: var(--pink-light); transition: color 0.2s; }
.footer-copy a:hover { color: var(--white); }

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee-section {
  padding: 24px 0;
  background: var(--pink-light);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 24px;
}
.marquee-item::after {
  content: '♥';
  color: var(--burgundy);
  opacity: 0.5;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero: allow natural height so stacked content isn't clipped */
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: hidden;
  }
  .hero-slides {
    display: grid;
    height: auto;
    min-height: calc(100svh - 72px);
  }
  .hero-slide {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    align-self: stretch;
    width: 100%;
    min-height: 100%;
    padding: 12px 0 28px;
    box-sizing: border-box;
  }
  .hero-inner,
  .about-teaser-inner,
  .book-spotlight-inner,
  .book-hero-inner,
  .about-hero-inner,
  .contact-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-inner {
    padding: 32px 36px 40px;
    gap: 36px;
    align-items: start;
  }
  .hero-left {
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .hero-sub { max-width: 540px; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
    order: -1;
  }
  .book-cover-wrapper {
    width: min(420px, 78vw);
    height: min(340px, 38vh);
    margin: 0 auto;
  }
  @keyframes float-book {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-10px) rotate(1deg); }
  }

  .about-teaser,
  .book-spotlight,
  .testimonials,
  .cta-banner,
  .book-excerpt,
  .book-more,
  .about-mission,
  .health-message,
  .contact-section {
    padding: 80px 36px;
  }
  .book-hero,
  .about-hero {
    padding: 120px 36px 72px;
  }
  .stats-strip { padding: 40px 36px; }

  .about-teaser-inner { gap: 40px; }
  .about-teaser-inner .author-photo-frame {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .about-teaser-inner .author-photo-frame img {
    aspect-ratio: 4 / 5;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
  }
  .about-teaser-inner > div { text-align: center; }
  .about-teaser-inner .section-tag { margin-left: auto; margin-right: auto; }
  .about-teaser-inner .decorative-line { margin-left: auto; margin-right: auto; }
  .photo-badge {
    right: 8px;
    bottom: -12px;
    width: 88px;
    height: 88px;
  }

  .book-cover-main {
    position: static;
    width: min(480px, 100%);
    margin: 0 auto;
  }
  .book-spotlight-inner {
    justify-items: center;
    text-align: center;
  }
  .book-display {
    width: min(480px, 100%);
    max-width: 100%;
    margin: 0 auto;
  }
  .book-info { width: 100%; text-align: center; }
  .book-tags { justify-content: center; }
  .book-info > div[style] { justify-content: center; }
  .book-detail-content { text-align: center; }
  .book-detail-desc { border-left: none; padding-left: 0; border-top: 3px solid var(--pink); padding-top: 16px; }
  .book-rating { justify-content: center; }
  .buy-buttons { justify-content: center; }

  .about-hero-inner { gap: 36px; }
  .about-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .about-photo-wrap img {
    aspect-ratio: 4 / 5;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
  }
  .about-photo-badge {
    right: 8px;
    bottom: -12px;
    left: auto;
    max-width: calc(100% - 24px);
  }
  .about-bio-content { text-align: center; }
  .about-name { font-size: clamp(2.2rem, 5vw, 3.2rem); }

  .contact-section-inner { gap: 40px; }
  .contact-form { padding: 32px 28px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-slider { padding: 20px 56px 12px; }
  .book-sections-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .section-center { margin-bottom: 48px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }

  footer { padding: 56px 20px 28px; }

  .hero {
    padding-top: 72px;
    min-height: 100svh;
  }
  .hero-slides { min-height: calc(100svh - 72px); }
  .frosting-top { top: 72px; height: 18px; }
  .hero-slide {
    padding: 8px 0 24px;
    transform: translateX(18px) scale(0.99);
  }
  .hero-slide.is-leaving { transform: translateX(-18px) scale(0.99); }
  .hero-inner { padding: 20px 16px 28px; gap: 24px; }
  .hero-left { gap: 16px; }
  .eyebrow {
    padding: 6px 14px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
  .hero-title {
    font-size: clamp(1.85rem, 7.2vw, 2.6rem);
    line-height: 1.12;
  }
  .hero-title .script-accent { font-size: clamp(2.1rem, 8vw, 3.1rem); }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-btns {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  .book-cover-wrapper {
    width: min(320px, 80vw);
    height: min(255px, 34vh);
    margin: 0 auto;
  }
  .book-cover-wrapper img { border-radius: 10px; }
  .hero-blob-1 { width: 280px; height: 280px; }
  .hero-blob-2 { width: 200px; height: 200px; }
  .hero-blob-3 { width: 140px; height: 140px; }

  .about-teaser,
  .book-spotlight,
  .testimonials,
  .cta-banner,
  .book-excerpt,
  .book-more,
  .about-mission,
  .health-message,
  .contact-section {
    padding: 56px 20px;
  }
  .stats-strip { padding: 32px 20px; }
  .marquee-section { padding: 14px 0; }
  .marquee-item { font-size: 0.85rem; padding: 0 18px; }

  .book-hero,
  .about-hero {
    padding: 104px 20px 56px;
  }
  .book-cover-main {
    position: static;
    top: auto;
    width: min(360px, 100%);
    margin: 0 auto;
  }
  .book-display {
    width: min(360px, 100%);
    margin: 0 auto;
  }
  .book-spotlight-inner { justify-items: center; text-align: center; }
  .book-spotlight-nav { display: none; }
  .book-spotlight-actions { justify-content: center; }
  .book-info { text-align: center; }
  .book-tags { justify-content: center; }
  .book-title-display { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .book-detail-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .book-meta-grid { grid-template-columns: 1fr; }
  .buy-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .buy-buttons .btn-primary,
  .buy-buttons .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .section-headline { font-size: clamp(1.55rem, 6vw, 2.1rem); }
  .section-body { font-size: 0.95rem; }
  .section-center { margin-bottom: 36px; }

  .author-photo-frame {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
  }
  .author-photo-frame img {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    max-height: 240px;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
  }
  .photo-badge {
    width: 72px;
    height: 72px;
    right: 4px;
    bottom: -8px;
  }
  .photo-badge-text { font-size: 0.65rem; }

  .about-photo-wrap {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
  }
  .about-photo-wrap img {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    max-height: 240px;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
  }
  .about-photo-badge {
    right: 4px;
    bottom: -8px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .about-photo-badge-title { font-size: 0.75rem; }
  .about-name { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .about-tagline { font-size: 1.15rem; margin-bottom: 20px; }
  .about-bio-text { font-size: 0.95rem; line-height: 1.75; }

  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .stat-number { font-size: 2.3rem; }
  .stat-label { font-size: 0.72rem; letter-spacing: 0.08em; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-slider { padding: 16px 44px 8px; }
  .testimonials-viewport { padding: 10px 8px 20px; }
  .testimonials-track { gap: 16px; }
  .testimonials-nav {
    width: 36px;
    height: 36px;
  }
  .testimonials-nav.testimonials-nav--prev { left: 0; }
  .testimonials-nav.testimonials-nav--next { right: 0; }

  .book-sections-grid { grid-template-columns: 1fr; gap: 20px; }
  .book-section-card { padding: 28px 22px; }
  .mission-grid { grid-template-columns: 1fr; gap: 20px; }
  .mission-card { padding: 28px 22px; }
  .health-stats { grid-template-columns: 1fr; gap: 16px; }
  .health-message-headline { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .health-stat { padding: 28px 20px; }
  .health-stat-num { font-size: 2.1rem; }

  .cta-banner { padding: 56px 20px; }
  .cta-banner .section-headline { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-banner .btn-primary { width: 100%; max-width: 320px; }

  .excerpt-ornament { font-size: 3.5rem; }
  .excerpt-text { font-size: 1.05rem; line-height: 1.75; }

  .contact-form { padding: 24px 18px; border-radius: 18px; }
  .form-input,
  .form-textarea { font-size: 16px; /* prevent iOS zoom */ }
  .contact-info-item { align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-brand { text-align: center; }
  .footer-tagline { max-width: none; margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  .footer-col-title { text-align: center; }
  .footer-links { text-align: center; }
  .footer-newsletter { text-align: center; }
  .footer-newsletter-text { margin-left: auto; margin-right: auto; }
  .footer-newsletter-input-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-subscribe { width: 100%; }
  .footer-input { width: 100%; font-size: 16px; }

  .nav-logo { font-size: 1.35rem; }
  .nav-logo-image { height: 34px; max-width: 150px; }
}

@media (max-width: 480px) {
  nav { padding: 0 12px; height: 64px; }
  .hero { padding-top: 64px; }
  .hero-slides { min-height: calc(100svh - 64px); }
  .frosting-top { top: 64px; }

  .hero-inner { padding: 16px 14px 24px; gap: 18px; }
  .hero-title { font-size: clamp(1.65rem, 8vw, 2.1rem); }
  .hero-title .script-accent { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .hero-sub { font-size: 0.9rem; line-height: 1.6; }
  .book-cover-wrapper {
    width: min(280px, 82vw);
    height: min(230px, 32vh);
  }
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .about-teaser,
  .book-spotlight,
  .testimonials,
  .cta-banner,
  .book-excerpt,
  .book-more,
  .about-mission,
  .health-message,
  .contact-section {
    padding: 48px 16px;
  }
  .book-hero,
  .about-hero {
    padding: 92px 16px 48px;
  }
  .stats-strip { padding: 28px 16px; }
  footer { padding: 48px 16px 24px; }

  .book-cover-main,
  .book-display {
    max-width: 100%;
    width: 100%;
  }
  .author-photo-frame,
  .about-photo-wrap {
    max-width: 180px;
  }
  .author-photo-frame img,
  .about-photo-wrap img {
    max-height: 200px;
    aspect-ratio: 1 / 1;
  }
  .photo-badge {
    width: 64px;
    height: 64px;
    right: 0;
    bottom: -6px;
  }
  .about-photo-badge {
    right: 0;
    bottom: -6px;
    padding: 8px 10px;
  }

  .mobile-menu { padding: 88px 20px 40px; gap: 4px; }
  .mobile-menu a { font-size: 1.65rem; padding: 10px 16px; }
  .mobile-menu a.mobile-nav-cta {
    font-size: 0.95rem;
    padding: 14px 24px;
    margin-top: 12px;
  }

  .testimonials-slider { padding: 12px 40px 4px; }
  .mission-card-num { font-size: 2.8rem; }
}
