/* ============================================================
   BETHANY CRIGGER — Global Styles
   Palette: #D9DFC6 | #EFF3EA | #FFFDF0 | #FFF2C2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Nunito:wght@300;400;500;600&family=Dancing+Script:wght@500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --sage:         #D9DFC6;
  --cream-light:  #EFF3EA;
  --ivory:        #FFFDF0;
  --pale-yellow:  #FFF2C2;
  --dark:         #2a2a1e;
  --mid:          #5a5a3e;
  --muted:        #8a8a68;
  --accent-green: #6b7a4a;
  --accent-gold:  #c9a84c;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --max-width: 1140px;
  --section-pad: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  --radius: 6px;

  --shadow-book: 18px 28px 60px rgba(80, 60, 20, 0.22);
  --shadow-card: 0 6px 30px rgba(80, 60, 20, 0.10);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.8; color: var(--mid); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: block;
}

.script {
  font-family: var(--font-script);
  font-size: 1.4em;
  color: var(--accent-green);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: var(--ivory);
  box-shadow: 0 4px 16px rgba(42, 42, 30, 0.25);
}
.btn-dark:hover {
  background: #3d3d2a;
  box-shadow: 0 8px 24px rgba(42, 42, 30, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--ivory); }

.btn-sage {
  background: var(--sage);
  color: var(--dark);
}
.btn-sage:hover { background: #c8cead; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(255, 253, 240, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(42, 42, 30, 0.08);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--dark);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent-green);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--accent-green); }

.nav-links .nav-regal {
  color: var(--accent-green);
  border: 1.5px solid var(--accent-green);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
}
.nav-links .nav-regal:hover { background: var(--accent-green); color: white; }
.nav-links .nav-regal::after { display: none; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 253, 240, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(20px, 5vw, 60px) 32px;
    gap: 20px;
    border-top: 1px solid var(--sage);
    box-shadow: 0 8px 24px rgba(42, 42, 30, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ── Section Dividers (wavy SVG) ─────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg { width: 100%; height: auto; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 50% 70%, var(--pale-yellow) 0%, var(--ivory) 45%, var(--cream-light) 80%, var(--sage) 100%);
  padding-top: 70px; /* offset for fixed nav */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-banner-img {
  width: 100%;
  height: clamp(320px, 52vw, 620px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
@media (min-width: 1024px) {
  .hero-banner-img {
    object-position: center calc(20% - 55px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 36px clamp(20px, 6vw, 80px) 48px;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--accent-green);
  margin-bottom: 6px;
  display: block;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero-name strong { font-weight: 600; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--mid);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-decor-char {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* ── Featured Book: Sunshine for Yofi ───────────────────── */
.featured-book {
  background: var(--ivory);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.featured-book-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.featured-book-cover {
  position: relative;
}
.featured-book-cover .featured-book-decor {
  border-radius: 0;
  box-shadow: none;
}

.featured-book-decor {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 180px;
  opacity: 0.08;
  pointer-events: none;
}

.featured-book-content h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 8px;
  line-height: 1.05;
}
.featured-book-content h2 em {
  font-style: italic;
  color: var(--accent-green);
}

.featured-book-blurb {
  margin: 20px 0 32px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--mid);
}

.featured-book-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.release-pill {
  background: var(--pale-yellow);
  border: 1px solid var(--accent-gold);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--dark);
}

.featured-book-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.featured-book-links {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.featured-book-links a {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.featured-book-links a:hover { color: var(--dark); }

/* ≥1200px: 2-col, left column ~505px — book fills naturally at 810px max */

/* ≤1100px: collapse to 1-col so book always gets generous width */
@media (max-width: 1100px) {
  .featured-book-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-book-ctas { justify-content: center; }
  .featured-book-meta { justify-content: center; }
  .book-mockup-img { max-width: 680px; }
}

/* ≤768px: tablet portrait */
@media (max-width: 768px) {
  .book-mockup-img { max-width: 560px; }
}

/* ≤600px: large phone */
@media (max-width: 600px) {
  .book-mockup-img { max-width: 440px; }
}

/* ≤400px: compact phone */
@media (max-width: 400px) {
  .book-mockup-img { max-width: 340px; }
}

/* ── Coloring Books Section ──────────────────────────────── */
.coloring-section {
  background: var(--cream-light);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

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

.coloring-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.coloring-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}

.book-card {
  background: var(--ivory);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(80, 60, 20, 0.16);
}

.book-card-cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.book-card-body {
  padding: 24px;
}

.book-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.badge-available { background: #d4edda; color: #2d6a4f; }
.badge-coming-soon { background: var(--pale-yellow); color: #7a5f20; }

.book-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.book-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 20px;
}

.book-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.book-card-link:hover { gap: 10px; }
.book-card-link::after { content: '→'; }

/* ── Book Mockup Image ───────────────────────────────────── */
.book-mockup-img {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
  display: block;
}

.featured-book-cover::after {
  content: '';
  display: block;
  width: 52%;
  height: 18px;
  background: rgba(70, 50, 8, 0.3);
  filter: blur(18px);
  border-radius: 50%;
  margin: -24px auto 0;
  position: relative;
  z-index: -1;
}

/* ── About Teaser ────────────────────────────────────────── */
.about-teaser {
  background: var(--pale-yellow);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.about-teaser-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-teaser-illustration {
  position: relative;
}

.about-teaser-illustration img {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  margin: 0 auto;
}

.about-teaser-content .eyebrow { margin-bottom: 16px; }

.about-teaser-content h2 {
  margin-bottom: 20px;
}

.about-teaser-content p {
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-teaser-illustration img { max-width: 260px; }
}

/* ── Instagram Section ───────────────────────────────────── */
.instagram-section {
  background: var(--ivory);
  padding: var(--section-pad);
}

.instagram-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.instagram-handle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-green);
  margin-bottom: 40px;
  display: inline-block;
}
.instagram-handle:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Placeholder until embed is installed */
.instagram-embed-placeholder {
  background: var(--cream-light);
  border: 2px dashed var(--sage);
  border-radius: 12px;
  padding: 60px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.instagram-embed-placeholder strong { color: var(--mid); }

/* ── Fun Facts (About page) ──────────────────────────────── */
.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fun-fact-card {
  background: var(--ivory);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.fun-fact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 2rem;
}
.fun-fact-icon svg { width: 100%; height: 100%; }


.fun-fact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.fun-fact-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Fun Facts & Humble Opinions ────────────────────────── */
.facts-section,
.opinions-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}

.facts-section    { background: var(--pale-yellow); }
.opinions-section { background: var(--cream-light); }

.opinion-card {
  background: var(--ivory);
  border-top: 3px solid var(--accent-green);
}
.opinion-card .fun-fact-icon { color: var(--accent-green); }

/* ── Lily background art ─────────────────────────────────── */
main {
  position: relative;
}

.lily-art-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;          /* doesn't need height — children are abs positioned */
  pointer-events: none;
  overflow: visible;  /* let images bleed across the full page */
  z-index: 1;
}

.lily-deco {
  position: absolute;
  opacity: 0.12;
  user-select: none;
  pointer-events: none;
}

/* Section content sits above lily art */
main > section > div,
main > section > header,
.page-hero,
.quote-section {
  position: relative;
  z-index: 2;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-section {
  background: var(--cream-light);
  padding: clamp(20px, 3vw, 40px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.contact-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.contact-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  max-height: 520px;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-block {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--sage);
}

.contact-email-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
}
.contact-email-link:hover { color: var(--dark); }

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--accent-green);
  transition: color 0.2s;
}
.contact-instagram i {
  font-size: 2rem;
  line-height: 1;
}
.contact-instagram:hover { color: var(--dark); }

@media (max-width: 680px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-photo img {
    max-height: 360px;
  }
}

/* ── Sunshine for Yofi Page ──────────────────────────────── */
.sfy-hero {
  background: radial-gradient(ellipse at 40% 50%, var(--pale-yellow) 0%, var(--ivory) 50%, var(--cream-light) 100%);
  padding: 140px clamp(20px, 6vw, 80px) 80px;
  position: relative;
  overflow: hidden;
}

.sfy-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sfy-highlights {
  background: var(--cream-light);
  padding: var(--section-pad);
}

.sfy-highlights-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sfy-highlights h2 {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.sfy-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.sfy-highlight-card {
  background: var(--ivory);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sfy-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(80, 60, 20, 0.14);
}

.sfy-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 2.2rem;
}
.sfy-card-icon svg { width: 100%; height: 100%; }

.sfy-highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.sfy-highlight-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.sfy-highlight-card a {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .sfy-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* Show book cover above text on mobile */
  .sfy-hero-inner > div:last-child { order: -1; }
}

/* ── About page bio layout ───────────────────────────────── */
.bio-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.bio-photo-col {
  position: sticky;
  top: 120px;
}

@media (max-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bio-photo-col {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Inspirational Quote ─────────────────────────────────── */
.quote-section {
  background: var(--sage);
  padding: clamp(50px, 7vw, 90px) clamp(20px, 8vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  max-width: 800px;
  margin: 0 auto 20px;
}

.quote-source {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 253, 240, 0.85);
  padding: clamp(50px, 6vw, 80px) clamp(20px, 5vw, 60px) clamp(30px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -15px;
  width: 190px;
  height: 280px;
  background: url('../images/Lily_of_the_Valley_Single_1.webp') no-repeat bottom left / contain;
  opacity: 0.045;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -15px;
  width: 210px;
  height: 240px;
  background: url('../images/Lily_of_the_ValleyHalf.webp') no-repeat bottom right / contain;
  opacity: 0.045;
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 253, 240, 0.1);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 12px;
}

.footer-brand-tagline {
  font-size: 0.88rem;
  color: rgba(255, 253, 240, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 240, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: rgba(255, 253, 240, 0.7);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: rgba(255, 253, 240, 0.1);
  border-color: rgba(255, 253, 240, 0.4);
  color: var(--ivory);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 253, 240, 0.45);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 253, 240, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 253, 240, 0.4);
}

.footer-regal {
  color: rgba(255, 253, 240, 0.6);
  transition: color 0.2s;
}
.footer-regal:hover { color: var(--ivory); }
.footer-regal span { color: var(--accent-green); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: radial-gradient(ellipse at 50% 60%, var(--pale-yellow) 0%, var(--ivory) 50%, var(--cream-light) 100%);
  padding: 140px clamp(20px, 6vw, 80px) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--mid);
  max-width: 560px;
  margin-inline: auto;
}

/* ── Utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.text-center { text-align: center; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 32px; }
.mt-lg  { margin-top: 56px; }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 32px; }

/* ── Scroll fade-in animation ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── Stretched / fully-clickable cards ───────────────────── */
.book-card { position: relative; cursor: pointer; }
.book-card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sfy-highlight-card { position: relative; cursor: pointer; }
.sfy-highlight-card a::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ── Release Countdown ───────────────────────────────────── */
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}
.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.countdown-sep {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--muted);
  align-self: flex-start;
  padding-top: 4px;
}
