:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-glow: #C8962E;
  --warm-cream: #FDFAF5;
  --warm-white: #FFFCF7;
  --deep-accent: #3A3A3A;
  --soft-accent: #5A5A5A;
  --muted: #8A8279;
  --earth: #7A6942;
  --text-dark: #2A2A2A;
  --text-body: #444444;
  --text-soft: #777270;
  --blush: #F5EDE0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-cream);
  color: var(--text-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

/* ─── Hero Section ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  text-align: center;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(58, 58, 58, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(240, 214, 138, 0.1) 0%, transparent 70%),
    var(--warm-cream);
}

/* Decorative top border */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
}

/* Floating seed/leaf decorations */
.seed-decor {
  position: absolute;
  opacity: 0;
  animation: floatSeed 8s ease-in-out infinite;
}

.seed-decor svg {
  stroke: var(--gold-light);
  stroke-width: 1.5;
  fill: none;
}

.seed-1 { top: 15%; left: 8%; animation-delay: 0s; }
.seed-1 svg { width: 1.4rem; height: 1.4rem; }
.seed-2 { top: 25%; right: 12%; animation-delay: 2s; }
.seed-2 svg { width: 1rem; height: 1rem; }
.seed-3 { bottom: 20%; left: 15%; animation-delay: 4s; }
.seed-3 svg { width: 1.2rem; height: 1.2rem; }
.seed-4 { bottom: 30%; right: 8%; animation-delay: 6s; }
.seed-4 svg { width: 0.9rem; height: 0.9rem; }
.seed-5 { top: 55%; left: 5%; animation-delay: 1s; }
.seed-5 svg { width: 1.1rem; height: 1.1rem; }
.seed-6 { top: 40%; right: 5%; animation-delay: 3s; }
.seed-6 svg { width: 1.3rem; height: 1.3rem; }

@keyframes floatSeed {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
  20% { opacity: 0.25; }
  50% { opacity: 0.35; transform: translateY(-20px) rotate(15deg); }
  80% { opacity: 0.25; }
}

/* Seed icon SVG inline */
.seed-icon {
  display: inline-block;
  color: var(--gold);
}

.leaf-icon {
  display: inline-block;
  color: var(--gold);
}

/* ─── Logo/Brand Area ─── */
.brand {
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease-out 0.2s both;
}

.brand-emblem {
  width: 200px;
  height: 192px;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}

.brand-emblem img {
  display: block;
  width: calc(100% + 6px);
  height: calc(100% + 14px);
  margin: -3px;
  object-fit: cover;
  object-position: center top;
}

.brand-emblem svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--deep-accent);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.brand-name span {
  color: var(--gold);
}

/* ─── Main Content ─── */
.hero-content {
  max-width: 640px;
  animation: fadeUp 1s ease-out 0.5s both;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.tagline em {
  font-style: italic;
  color: var(--gold);
}

.tagline .highlight {
  position: relative;
  display: inline;
}

.tagline .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(212, 168, 67, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Scripture ─── */
.scripture-block {
  margin: 2rem auto 2.5rem;
  max-width: 480px;
  padding: 1.5rem 2rem;
  position: relative;
  animation: fadeUp 1s ease-out 0.8s both;
}

.scripture-block::before,
.scripture-block::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.scripture-block::before { top: 0; }
.scripture-block::after { bottom: 0; }

.scripture-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.scripture-ref {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ─── Email Signup ─── */
.signup-area {
  animation: fadeUp 1s ease-out 1.1s both;
}

.signup-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.signup-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(212, 168, 67, 0.15), 0 1px 3px rgba(0,0,0,0.05);
  border: 1.5px solid rgba(212, 168, 67, 0.25);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.signup-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 4px 30px rgba(212, 168, 67, 0.25), 0 1px 3px rgba(0,0,0,0.05);
}

.signup-form input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--warm-white);
  color: var(--text-dark);
  outline: none;
  min-width: 0;
}

.signup-form input::placeholder {
  color: var(--text-soft);
  opacity: 0.7;
}

.signup-form button {
  border: none;
  background: var(--deep-accent);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 1.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  letter-spacing: 0.02em;
}

.signup-form button:hover {
  background: var(--soft-accent);
}

.signup-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* ─── Book Preview Strip ─── */
.preview-section {
  padding: 5rem clamp(2rem, 7vw, 6.25rem);
  background: #FFFFFF;
  text-align: center;
}

.section-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #2A1810;
  margin-bottom: 3rem;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.book-card {
  background: #FFF8F0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8DDD0;
  box-shadow: 0 8px 30px rgba(42, 24, 16, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 24, 16, 0.08);
}

.book-card-cover {
  width: 100%;
  height: 218px;
  background: linear-gradient(180deg, #F8F0E0 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-card-cover .placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-soft);
  text-align: center;
}

.book-card-body {
  padding: 1.5rem;
}

.book-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2A1810;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.book-age {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8B7033;
  background: #F0E6D0;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.book-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8A7A6A;
}

/* ─── Mission Strip ─── */
.mission-strip {
  padding: 5rem clamp(2rem, 14vw, 12.5rem);
  text-align: center;
  background: #2A1810;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mission-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
}

.mission-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.mission-strip .section-label {
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}

.mission-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.mission-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-top: 1.5rem;
  position: relative;
  line-height: 1.6;
}

/* ─── About the Founder ─── */
.founder-section {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  background:
    linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-white) 30%, var(--warm-white) 70%, var(--warm-cream) 100%);
  text-align: center;
}

.founder-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.founder-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212, 168, 67, 0.3);
  box-shadow: 0 8px 30px rgba(58, 58, 58, 0.08), 0 0 0 8px rgba(212, 168, 67, 0.06);
  flex-shrink: 0;
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.founder-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.founder-name a:hover {
  color: var(--gold);
}

.founder-role {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.founder-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 600px;
}

.founder-bio + .founder-bio {
  margin-top: 0.25rem;
}

.founder-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 700px;
  margin-top: 0.5rem;
  position: relative;
  padding: 1rem 0;
}

.founder-quote::before,
.founder-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.founder-quote::before { top: 0; }
.founder-quote::after { bottom: 0; }

/* ─── Footer ─── */
footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--warm-cream);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-accent);
  margin-bottom: 0.5rem;
}

.footer-brand span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(58, 58, 58, 0.08);
  color: var(--deep-accent);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--deep-accent);
  color: #fff;
}

.footer-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 1rem;
  opacity: 0.7;
}

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

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .signup-form {
    flex-direction: column;
    border-radius: 12px;
  }
  .signup-form input {
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    text-align: center;
    border-radius: 0;
  }
  .signup-form button {
    border-radius: 0;
    padding: 1rem;
  }
  .book-grid {
    grid-template-columns: 1fr;
    max-width: 370px;
  }
  .seed-decor { display: none; }
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Confirmation popup styling */
.signup-success {
  display: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-accent);
  margin-top: 0.75rem;
  animation: fadeUp 0.4s ease-out;
}

/* ─── Home Hero (side-by-side) ─── */
.home-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 5rem clamp(2rem, 7vw, 6.25rem);
  background:
    linear-gradient(180deg, #FDFAF5 0%, #F8F0E0 60%, #F5EDE3 100%);
}

.home-hero-text {
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  background: rgba(212, 168, 67, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(184, 134, 11, 0); }
}

.home-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.home-hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 480px;
}

.home-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero-book {
  flex-shrink: 0;
  text-decoration: none;
}

.home-hero-book-wrap {
  width: 420px;
  padding: 60px 70px;
  background: #F5EDE3;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(42, 24, 16, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-hero-book:hover .home-hero-book-wrap {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(42, 24, 16, 0.12);
}

.home-hero-book-cover {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42, 24, 16, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-cream);
}

.home-hero-book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.home-hero-book-cover .placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  padding: 1rem;
}


@media (max-width: 768px) {
  .home-hero {
    flex-direction: column;
    text-align: center;
  }
  .home-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .home-hero-btns {
    justify-content: center;
  }
  .home-hero-book-wrap {
    width: 280px;
    padding: 30px 40px;
  }
}

/* ─── Site Navigation ─── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3.5rem;
  background: var(--warm-cream);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: var(--deep-accent);
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--soft-accent);
}

/* ─── Page Hero ─── */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, var(--warm-cream) 0%, var(--blush) 100%);
}

.page-hero .section-label {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.page-hero .divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 0 auto;
}

/* Dark hero variant */
.page-hero--dark {
  background: var(--deep-accent);
  position: relative;
  overflow: hidden;
}

.page-hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
}

.page-hero--dark .section-label {
  color: var(--gold-light);
}

.page-hero--dark h1 {
  color: #fff;
  position: relative;
}

.page-hero--dark p {
  color: rgba(255,255,255,0.85);
  position: relative;
}

.page-hero--dark .divider {
  background: var(--gold-light);
  position: relative;
}

.page-hero--dark .scripture-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-top: 1.5rem;
  position: relative;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Book Detail Cards ─── */
.books-list {
  padding: clamp(2rem, 6vw, 3.75rem) clamp(2rem, 7vw, 6.25rem);
  background: #FFFFFF;
}

.book-detail {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  padding: 2.5rem;
  background: #FFF8F0;
  border-radius: 20px;
  border: 1px solid #E8DDD0;
  margin-bottom: 3.75rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.book-detail:last-child {
  margin-bottom: 0;
}

a.book-detail--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.book-detail--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(42, 24, 16, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-detail-cover {
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(42, 24, 16, 0.08);
  background: var(--blush);
}

.book-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.book-detail-cover .placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  padding: 1rem;
}

.book-detail-info {
  flex: 1;
}

.book-detail-info .book-age {
  margin-bottom: 0.75rem;
}

.book-detail-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.book-detail-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: var(--deep-accent);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--soft-accent);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--earth);
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* ─── Value Cards (Mission page) ─── */
.values-section {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  background: var(--warm-white);
}

.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.values-header .section-label {
  margin-bottom: 0.75rem;
}

.values-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.values-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--warm-cream);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58, 58, 58, 0.06);
}

.value-card svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ─── Founder Detail (About page) ─── */
.founder-detail {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}

.founder-detail-photo {
  width: 360px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(42, 24, 16, 0.08);
}

.founder-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.founder-detail-text {
  flex: 1;
}

.founder-detail-text .section-label {
  margin-bottom: 0.75rem;
}

.founder-detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.founder-detail-text .founder-role {
  margin-bottom: 1.25rem;
}

.founder-detail-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* ─── Quote Banner ─── */
.quote-banner {
  padding: clamp(2.5rem, 5vw, 4rem) 2rem;
  text-align: center;
  background: var(--blush);
}

.quote-banner .divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.quote-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-dark);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.quote-banner cite {
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--earth);
}

/* ─── Email Signup Section ─── */
.signup-section {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  text-align: center;
  background: var(--blush);
}

.signup-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.signup-section > p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* ─── Responsive: Nav + New Pages ─── */
/* ─── Mobile Menu ─── */
.nav-toggle,
.nav-close,
.mobile-cta {
  display: none;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--deep-accent);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .site-nav {
    padding: 1rem 1.5rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    padding: 2rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.4rem;
  }
  .mobile-cta {
    display: inline-block !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: var(--deep-accent);
    padding: 0.85rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--deep-accent);
    padding: 0.5rem;
  }
  .nav-links .nav-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .book-detail {
    flex-direction: column;
    text-align: center;
  }
  .book-detail-cover {
    width: 200px;
  }
  .founder-detail {
    flex-direction: column;
    text-align: center;
  }
  .founder-detail-photo {
    width: 260px;
    height: 320px;
  }
}

/* ═══════════════════════════════════════
   BOOK DETAIL PAGES
   ═══════════════════════════════════════ */

/* ─── Book Hero ─── */
.book-hero {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 5rem clamp(2rem, 7vw, 7rem);
  background: linear-gradient(180deg, #FDFAF5 0%, #F8F0E0 60%, #F5EDE3 100%);
}

.book-hero-cover {
  flex-shrink: 0;
}

.book-hero-cover-wrap {
  width: 380px;
  padding: 50px 60px;
  background: #F5EDE3;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(42, 24, 16, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-hero-cover-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(42, 24, 16, 0.15);
}

.book-hero-info {
  flex: 1;
}

.book-hero-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 1rem 0 0.5rem;
}

.book-hero-author {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.book-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.book-hero-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.book-hero-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.book-hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Centered hero for coming-soon books */
.book-hero--centered {
  flex-direction: column;
  text-align: center;
}

.book-hero--centered .book-hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-hero--centered .book-hero-badges {
  justify-content: center;
}

.book-hero--centered .book-hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Book Sections ─── */
.book-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 10vw, 12.5rem);
  text-align: center;
}

.book-section--white { background: #FFFFFF; }
.book-section--cream { background: #FFF8F0; }
.book-section--dark {
  background: #2A1810;
  position: relative;
  overflow: hidden;
}

.book-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
}

.book-section--dark .section-label {
  color: var(--gold-light);
  position: relative;
}

.book-section .section-label { margin-bottom: 1rem; }
.book-section .section-title { margin-bottom: 2.5rem; }

.book-section .divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 1.5rem auto 0;
}

/* ─── Book Prose ─── */
.book-prose {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.book-prose--left {
  text-align: left;
}

.book-prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.book-prose p:last-child { margin-bottom: 0; }

.book-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem !important;
  line-height: 1.65 !important;
  color: var(--text-dark) !important;
}

.book-prose--light {
  position: relative;
}

.book-prose--light p {
  color: rgba(255,255,255,0.9);
}

.book-prose--light strong {
  color: var(--gold-light);
}

.book-section-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 2rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.book-declaration {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  text-align: center;
  color: var(--gold) !important;
  margin-top: 1.5rem !important;
}

/* ─── Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: #FDFAF5;
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58, 58, 58, 0.06);
}

.feature-card svg {
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ─── Chapter Grid ─── */
.chapter-grid {
  display: flex;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.chapter-list {
  flex: 1;
  padding-left: 1.25rem;
}

.chapter-list li {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 2;
}

/* ─── Perfect For Grid ─── */
.perfect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.perfect-card {
  background: #FDFAF5;
  border: 1px solid #E8DDD0;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.perfect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58, 58, 58, 0.06);
}

.perfect-card svg {
  margin-bottom: 0.75rem;
}

.perfect-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.perfect-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ─── Journey Grid (I Am Daddy's Girl) ─── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.journey-card {
  background: #FFF8F0;
  border: 1px solid #E8DDD0;
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58, 58, 58, 0.06);
}

.journey-days {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.journey-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.journey-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ─── Book Details Table ─── */
.book-details-table {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.book-detail-row {
  display: flex;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
}

.book-detail-row:last-child {
  border-bottom: none;
}

.book-detail-row span:first-child {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  width: 140px;
  flex-shrink: 0;
}

.book-detail-row span:last-child {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ─── Book CTA ─── */
.book-cta {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  text-align: center;
  background: var(--blush);
}

.book-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.book-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.book-cta p:last-child {
  margin-bottom: 0;
}

.book-cta .signup-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  opacity: 0.8;
  margin-top: 0.75rem;
}

/* ─── Book Detail Responsive ─── */
@media (max-width: 768px) {
  .book-hero {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
  .book-hero-cover-wrap {
    width: 260px;
    padding: 30px 40px;
  }
  .book-hero-info h1 {
    margin-top: 0.5rem;
  }
  .book-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .book-hero-btns {
    justify-content: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .perfect-grid {
    grid-template-columns: 1fr;
    max-width: 370px;
  }
  .chapter-grid {
    flex-direction: column;
    gap: 0;
  }
  .journey-grid {
    grid-template-columns: 1fr;
  }
}
