/* =====================================================================
   Sibin Chacko — Author Website
   Shared stylesheet
   Palette pulled from the book covers: deep teal-navy, warm sunset gold,
   cream paper. Elegant, literary, calm.
   ===================================================================== */

:root {
  --navy:        #16323f;
  --navy-deep:   #0f242d;
  --navy-soft:   #1f4356;
  --gold:        #c9962f;
  --gold-light:  #e0b54e;
  --gold-deep:   #a87a22;
  --cream:       #faf6ee;
  --cream-2:     #f2e9d8;
  --paper:       #fffdf8;
  --ink:         #26211b;
  --ink-soft:    #5a5247;
  --line:        rgba(168,122,34,0.22);

  --font-display: "Playfair Display", Georgia, serif;
  --font-serif:   "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 4px 18px rgba(15,36,45,0.10);
  --shadow-md: 0 18px 50px rgba(15,36,45,0.22);
  --shadow-cover: 0 30px 60px -18px rgba(15,36,45,0.55);

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy); line-height: 1.15; margin: 0 0 .5em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; color: var(--gold); margin: 0 auto 2.4rem;
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: 70px; background: var(--line);
}
.divider span { font-size: 1.1rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .02em;
  padding: 14px 30px; border-radius: 2px;
  cursor: pointer; border: 1px solid transparent;
  transition: all .3s var(--ease);
}
.btn-gold { background: var(--gold); color: #2a1d05; }
.btn-gold:hover { background: var(--gold-light); color: #2a1d05; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(22,50,63,0.35); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.btn-light { background: transparent; color: var(--cream); border-color: rgba(250,246,238,0.5); }
.btn-light:hover { background: var(--cream); color: var(--navy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,238,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand .name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--navy); letter-spacing: .01em; line-height: 1;
}
.brand .tag { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(224,181,78,0.16), transparent 60%),
    radial-gradient(1300px 680px at 62% -12%, var(--navy-soft), var(--navy) 52%, var(--navy-deep) 100%);
  color: var(--cream);
}
/* soft vignette + faint star accents */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 120%, rgba(0,0,0,0.35), transparent 70%),
    radial-gradient(40% 40% at 50% -20%, rgba(255,255,255,0.05), transparent 70%);
}
/* thin gold hairline at the bottom edge */
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(224,181,78,0.55), transparent);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px;
  align-items: center; padding: 104px 0 110px;
}
.hero h1 { color: var(--cream); font-size: clamp(2.5rem, 5.2vw, 4rem); margin-bottom: .35em; letter-spacing: -.005em; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero .lede { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.45; color: rgba(250,246,238,0.86); margin: 0 0 1.6rem; max-width: 32ch; }
.hero .eyebrow { color: var(--gold-light); }
.hero-rating { margin: 0 0 1.8rem; color: var(--gold); letter-spacing: 4px; font-size: 1.05rem; }
.hero-rating span { font-family: var(--font-serif); font-style: italic; letter-spacing: normal; font-size: 1.15rem; color: rgba(250,246,238,0.78); margin-left: 6px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin: 1.5rem 0 0; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,246,238,0.55); }
.hero-copy { animation: heroIn 1s var(--ease) both; }
.hero-cover { position: relative; display: flex; justify-content: center; animation: heroIn 1.1s var(--ease) .1s both; }
/* glow halo behind the cover */
.hero-cover::before {
  content: ""; position: absolute; z-index: 0; width: 420px; height: 420px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(224,181,78,0.35), rgba(224,181,78,0.06) 45%, transparent 68%);
  filter: blur(6px);
}
.hero-cover img {
  position: relative; z-index: 1;
  width: 330px; border-radius: 5px; box-shadow: var(--shadow-cover);
  transform: rotate(-2.5deg);
  transition: transform .6s var(--ease);
}
.hero-cover img:hover { transform: rotate(0deg) translateY(-8px); }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---------- Section base ---------- */
section { padding: 92px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink-soft); max-width: 56ch; margin: .4rem auto 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h2, .bg-navy h3 { color: var(--cream); }

/* ---------- Featured book ---------- */
.feature {
  display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center;
}
.feature .cover-wrap { perspective: 1400px; }
.feature .cover-wrap img {
  border-radius: 4px; box-shadow: var(--shadow-cover);
  transition: transform .6s var(--ease);
}
.feature .cover-wrap img:hover { transform: rotateY(-8deg) translateY(-4px); }
.feature h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
.feature .sub { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--gold-deep); margin: -.3rem 0 1.4rem; }
.feature .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1rem; }
.feature blockquote {
  font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.4;
  color: var(--navy); border-left: 3px solid var(--gold); padding-left: 22px;
  margin: 0 0 1.6rem; font-style: italic;
}
.feature .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.8rem; }
.feature .meta { font-size: .85rem; color: var(--ink-soft); margin-top: 1.4rem; letter-spacing: .02em; }

/* ---------- Inside this book (checklist) ---------- */
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.checklist li::before { content: "✦"; color: var(--gold); flex: none; margin-top: 2px; }

/* ---------- Book cards grid ---------- */
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.book-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: 34px; display: grid; grid-template-columns: 150px 1fr; gap: 28px;
  align-items: start; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.book-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.book-card img { border-radius: 3px; box-shadow: var(--shadow-sm); }
.book-card h3 { font-size: 1.45rem; margin-bottom: .2em; }
.book-card .sub { font-family: var(--font-serif); font-style: italic; color: var(--gold-deep); font-size: 1.05rem; margin-bottom: .8rem; }
.book-card p { font-size: .96rem; color: var(--ink-soft); margin: 0 0 1.1rem; }
.pill {
  display: inline-block; font-family: var(--font-sans); font-size: .66rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  margin-bottom: 1rem;
}
.pill-live { background: rgba(201,150,47,0.16); color: var(--gold-deep); }
.pill-soon { background: rgba(22,50,63,0.10); color: var(--navy-soft); }

/* ---------- Series timeline ---------- */
.series { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 10px; }
.series-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(224,181,78,0.25);
  border-radius: 6px; padding: 32px 28px; position: relative;
}
.series-card .num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-light);
  line-height: 1; margin-bottom: .3rem; font-style: italic;
}
.series-card h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: .2em; }
.series-card .scope { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .9rem; }
.series-card p { color: rgba(250,246,238,0.78); font-size: .95rem; margin: 0; }
.series-card.active { background: rgba(224,181,78,0.10); border-color: var(--gold); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.about-photo {
  border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md);
  position: relative;
}
.about-photo::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201,150,47,0.4); border-radius: 6px;
}
.about p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.about p.lead { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; color: var(--navy); }
.about .signature { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--gold-deep); margin-top: 1rem; }

/* ---------- Newsletter / CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.9rem,4vw,2.7rem); }
.cta-band p { color: rgba(250,246,238,0.82); font-family: var(--font-serif); font-size: 1.3rem; max-width: 52ch; margin: 0 auto 2rem; }
.subscribe { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.subscribe input {
  flex: 1; padding: 14px 18px; border: 1px solid rgba(250,246,238,0.3);
  background: rgba(255,255,255,0.06); color: var(--cream); border-radius: 2px;
  font-family: var(--font-sans); font-size: .95rem;
}
.subscribe input::placeholder { color: rgba(250,246,238,0.6); }
.subscribe input:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: .78rem; color: rgba(250,246,238,0.6); margin-top: 1rem; }

/* ---------- Quote strip ---------- */
.quote-strip { background: var(--cream-2); text-align: center; padding: 80px 0; }
.quote-strip blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); color: var(--navy); line-height: 1.35;
  max-width: 22ch; margin: 0 auto; position: relative;
}
.quote-strip blockquote::before { content: "“"; color: var(--gold); font-size: 2em; line-height: 0; vertical-align: -.35em; margin-right: .05em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(250,246,238,0.7); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--cream); font-family: var(--font-sans); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(250,246,238,0.7); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .92rem; }
.footer-brand p { font-family: var(--font-serif); font-size: 1.05rem; max-width: 34ch; }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.12); margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: rgba(250,246,238,0.5);
}

/* ---------- Book detail page ---------- */
.book-hero {
  background: radial-gradient(1000px 500px at 75% -10%, var(--navy-soft), var(--navy) 60%, var(--navy-deep));
  color: var(--cream); padding: 80px 0;
}
.book-hero-grid { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.book-hero img { border-radius: 4px; box-shadow: var(--shadow-cover); }
.book-hero h1 { color: var(--cream); font-size: clamp(2rem,4vw,3rem); }
.book-hero .sub { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--gold-light); margin: -.2rem 0 1.4rem; }
.book-hero .buy-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 1.8rem 0 1rem; }
.book-hero .formats { font-size: .85rem; color: rgba(250,246,238,0.7); }
.prose { font-size: 1.08rem; }
.prose p { margin: 0 0 1.3rem; color: var(--ink-soft); }
.prose h2 { margin-top: 2.4rem; }
.book-facts { background: var(--cream-2); border-radius: 6px; padding: 30px 34px; font-size: .95rem; }
.book-facts dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 24px; margin: 0; }
.book-facts dt { font-weight: 600; color: var(--navy); }
.book-facts dd { margin: 0; color: var(--ink-soft); }
.back-link { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

.toc-grid { columns: 2; column-gap: 48px; list-style-position: inside; }
.toc-grid li { margin-bottom: 8px; break-inside: avoid; }
@media (max-width: 640px){ .toc-grid { columns: 1; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 70px 0; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-cover img { width: 250px; }
  .feature, .about, .book-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature .cover-wrap, .about-photo, .book-hero img { max-width: 320px; margin: 0 auto; }
  .series { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 10px 0; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px; }
  .nav-toggle { display: block; }
  .book-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .book-card img { width: 150px; }
  .subscribe { flex-direction: column; }
}
@media (max-width: 760px) {
  .book-hero-grid + section .wrap,
  section .wrap[style*="320px"] { grid-template-columns: 1fr !important; }
  aside[style*="sticky"] { position: static !important; top: auto !important; }
  div[style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}

/* =====================================================================
   v2 ADDITIONS — signature wordmark, bestseller book section,
   buy menu, keepsake grid, mega footer
   ===================================================================== */

/* ---- Signature wordmark (Mel Robbins / Brené style) ---- */
.brand-wordmark { display: flex; align-items: baseline; gap: 9px; line-height: 1; }
.brand-wordmark .script {
  font-family: "Great Vibes", cursive; font-weight: 400;
  font-size: 2.4rem; color: var(--navy); line-height: .9;
}
.brand-wordmark .surname {
  font-family: "Great Vibes", cursive; font-weight: 400;
  font-size: 2.4rem; color: var(--gold-deep); line-height: .9;
  letter-spacing: 0; text-transform: none;
}
.site-header .brand { text-decoration: none; }

/* ---- Bestseller book section ("Books by ...") ---- */
.bookmr { background: var(--cream); }
.bookmr .kicker {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--navy); margin-bottom: 14px;
}
.bookmr .kicker-rule { width: 64px; height: 2px; background: var(--gold); margin: 0 auto 64px; }
.bookmr-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.bookmr-cover { display: flex; justify-content: center; }
.bookmr-cover img {
  width: 360px; max-width: 100%; border-radius: 4px;
  box-shadow: 0 40px 70px -24px rgba(15,36,45,0.55);
  transition: transform .6s var(--ease);
}
.bookmr-cover img:hover { transform: translateY(-6px) rotate(-1deg); }
.bookmr h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: .35em; letter-spacing: -.01em; }
.bookmr .bestseller {
  display: inline-block; font-family: var(--font-sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid var(--line); border-radius: 100px; padding: 6px 16px; margin-bottom: 22px;
}
.bookmr .sub { font-family: var(--font-serif); font-size: 1.6rem; line-height: 1.3; color: var(--navy); margin: 0 0 1.4rem; font-weight: 600; }
.bookmr .body { font-size: 1.06rem; color: var(--ink-soft); margin: 0 0 1.2rem; }
.bookmr .body:last-of-type { margin-bottom: 1.8rem; }

/* ---- Buy-the-book dropdown menu ---- */
.buy-menu { position: relative; display: inline-block; }
.buy-menu summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem;
  padding: 15px 30px; border: 1.5px solid var(--navy); border-radius: 100px;
  color: var(--navy); transition: all .25s var(--ease);
}
.buy-menu summary::-webkit-details-marker { display: none; }
.buy-menu summary .chev { transition: transform .3s var(--ease); font-size: .8em; }
.buy-menu[open] summary { background: var(--navy); color: var(--cream); }
.buy-menu[open] summary .chev { transform: rotate(180deg); }
.buy-menu summary:hover { background: var(--navy); color: var(--cream); }
.buy-list {
  position: absolute; z-index: 20; top: calc(100% + 10px); left: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-md); padding: 8px; min-width: 290px;
  max-height: 60vh; overflow-y: auto;
  animation: fadeUp .25s var(--ease);
}
/* light variant for dark backgrounds (book hero) */
.buy-menu.on-dark summary { border-color: rgba(250,246,238,0.55); color: var(--cream); }
.buy-menu.on-dark summary:hover,
.buy-menu.on-dark[open] summary { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.buy-list a .flag { font-size: 1.05rem; line-height: 1; }
.buy-list a.more { color: var(--gold-deep); font-weight: 600; }
.buy-list a.more:hover { color: var(--navy); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
.buy-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 16px; border-radius: 5px; color: var(--ink);
  font-family: var(--font-sans); font-size: .92rem; font-weight: 500;
}
.buy-list a:hover { background: var(--cream-2); color: var(--navy); }
.buy-list a span { color: var(--ink-soft); font-size: .78rem; }
.buy-list .grp { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); padding: 10px 16px 4px; font-weight: 600; }

/* ---- Keepsake feature grid (seniors page) ---- */
.keepsake-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 1.6rem 0 0; }
.keepsake-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 24px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.keepsake-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.keepsake-card .ico { color: var(--gold); font-size: 1.3rem; margin-bottom: 10px; }
.keepsake-card h4 { font-family: var(--font-display); font-size: 1.18rem; color: var(--navy); margin: 0 0 .35em; }
.keepsake-card p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* ---- Series journey (book page) — 3 aligned cards ---- */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 1.4rem; }
.journey-card {
  border: 1px solid var(--line); border-radius: 8px; padding: 26px 24px; background: var(--cream);
  position: relative; overflow: hidden;
}
.journey-card.now { background: var(--cream-2); border-color: var(--gold); }
.journey-card .bk { font-family: var(--font-sans); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.journey-card h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin: .3em 0 .15em; }
.journey-card .scope { font-style: italic; font-family: var(--font-serif); color: var(--gold-deep); font-size: 1.05rem; margin-bottom: .6rem; }
.journey-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.journey-card .tag-now { display: inline-block; margin-top: 12px; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* ---- Mega footer (topics) ---- */
.mega-footer { background: var(--navy-deep); color: rgba(250,246,238,0.72); padding: 76px 0 34px; }
.mega-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; }
.mega-brand .brand-wordmark .script { color: var(--cream); }
.mega-brand .brand-wordmark .surname { color: var(--cream); }
.mega-brand p { font-family: var(--font-serif); font-size: 1.05rem; max-width: 30ch; margin: 18px 0 22px; color: rgba(250,246,238,0.7); }
.mega-social { display: flex; gap: 14px; }
.mega-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,246,238,0.25);
  display: inline-flex; align-items: center; justify-content: center; color: rgba(250,246,238,0.8);
  transition: all .25s var(--ease);
}
.mega-social a:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.mega-social svg { width: 17px; height: 17px; fill: currentColor; }
.mega-col h4 { color: var(--cream); font-family: var(--font-sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.mega-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.mega-col a { color: rgba(250,246,238,0.7); font-size: .92rem; }
.mega-col a:hover { color: var(--gold-light); }
.mega-bottom {
  border-top: 1px solid rgba(250,246,238,0.12); margin-top: 52px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: rgba(250,246,238,0.5);
}

@media (max-width: 980px) {
  .bookmr-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .bookmr-cover img { width: 280px; }
  .bookmr .buy-menu, .bookmr .actions { justify-content: center; }
  .mega-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mega-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .keepsake-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .mega-top { grid-template-columns: 1fr; }
  .bookmr .sub { font-size: 1.35rem; }
}
