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

:root {
  --void: #0a0906;
  --void-deep: #050403;
  --gold: #c9a227;
  --gold-light: #e8c860;
  --cream: #f5f0e2;
  --paper: #fafaf5;
  --ink: #161310;

  --fin-bg: #0f2418; --fin-bgdark: #071309; --fin-accent: #3ecf8e;
  --emp-bg: #0d1b2e; --emp-bgdark: #060d17; --emp-accent: #4a9eff;
  --mot-bg: #2a1012; --mot-bgdark: #150809; --mot-accent: #ff6b5b;
  --est-bg: #171532; --est-bgdark: #0a0918; --est-accent: #a78bfa;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.gothic {
  font-family: 'UnifrakturMaguntia', cursive;
  font-weight: 400;
}

/* ---------- Corner frame, reused motif from the books ---------- */
.corner-frame {
  position: absolute;
  inset: clamp(16px, 3vw, 40px);
  border: 1px solid rgba(201, 162, 39, 0.22);
  pointer-events: none;
}
.corner {
  position: absolute;
  width: 34px; height: 34px;
  border: 1.4px solid rgba(201, 162, 39, 0.5);
}
.corner.tl { top: clamp(16px, 3vw, 40px); left: clamp(16px, 3vw, 40px); border-right: none; border-bottom: none; }
.corner.br { bottom: clamp(16px, 3vw, 40px); right: clamp(16px, 3vw, 40px); border-left: none; border-top: none; }

/* ---------- Diamond divider, reused motif ---------- */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 28px 0;
}
.divider .line { width: 90px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,162,39,0.6), transparent); }
.divider .dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ================= HEADER / NAV ================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 9, 6, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,0.18);
  padding: 18px clamp(20px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
}
.site-header .brand { display: flex; align-items: center; gap: 12px; }
.site-header .brand img { height: 38px; width: auto; display: block; }
.site-header .brand-text {
  font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 3px;
  color: var(--cream); text-transform: uppercase;
}
.site-header .brand-text span { color: var(--gold); }
.site-header nav { display: flex; gap: clamp(14px, 3vw, 34px); }
.site-header nav a {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,240,226,0.65);
  transition: color .2s;
}
.site-header nav a:hover { color: var(--gold-light); }

/* ================= HERO (index) ================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  background:
    radial-gradient(ellipse 900px 700px at 50% 20%, rgba(201,162,39,0.09), transparent 60%),
    radial-gradient(ellipse 700px 900px at 15% 80%, rgba(62,207,142,0.06), transparent 55%),
    radial-gradient(ellipse 700px 900px at 85% 75%, rgba(167,139,250,0.06), transparent 55%),
    var(--void);
  overflow: hidden;
}
.hero .eyebrow { margin-bottom: 26px; }
.hero .logo-mark { width: clamp(110px, 14vw, 160px); margin-bottom: 30px; filter: drop-shadow(0 10px 30px rgba(201,162,39,0.25)); }
.hero h1 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(201,162,39,0.18);
}
.hero .sub {
  max-width: 640px; margin-top: 26px;
  font-style: italic; font-size: clamp(17px, 2vw, 21px);
  color: rgba(245,240,226,0.78);
}
.hero .meta {
  margin-top: 40px;
  font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
}
.hero .scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
  color: rgba(245,240,226,0.4); text-transform: uppercase;
}

/* ================= WING NAV (4 series as doors) ================= */
.wings {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(201,162,39,0.15);
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.wing-link {
  position: relative;
  padding: 46px 20px;
  text-align: center;
  background: var(--void);
  transition: background .35s;
}
.wing-link:hover { background: var(--wing-bg, #111); }
.wing-link .ic { font-size: 26px; margin-bottom: 14px; display: block; }
.wing-link .name {
  font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cream);
}
.wing-link .count {
  margin-top: 8px; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; color: rgba(245,240,226,0.5);
}
@media (max-width: 780px) {
  .wings { grid-template-columns: repeat(2, 1fr); }
}

/* ================= SERIES SECTION ================= */
.series-section { position: relative; padding: 90px clamp(20px, 5vw, 64px) 100px; }
.series-section .head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.series-section .head .ic { font-size: 30px; margin-bottom: 14px; }
.series-section .head h2 {
  font-family: 'Cinzel', serif; font-size: clamp(24px, 4vw, 34px); letter-spacing: 2px;
  text-transform: uppercase; color: var(--cream); margin-bottom: 16px;
}
.series-section .head p {
  font-style: italic; color: rgba(245,240,226,0.75); font-size: 18px;
}

.shelf {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1280px; margin: 0 auto;
}
.book-card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: transform .3s, border-color .3s;
}
.book-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.4); }
.book-card .cover-img { aspect-ratio: 1/1; overflow: hidden; }
.book-card .cover-img img { width: 100%; height: 100%; object-fit: cover; }
.book-card .info { padding: 16px 18px 20px; }
.book-card .vol { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.book-card .title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 18px; margin-top: 6px; color: var(--cream); line-height: 1.3; }
.book-card .price { margin-top: 10px; font-family: 'Cinzel', serif; font-size: 13px; color: rgba(245,240,226,0.6); }

/* ================= FOOTER ================= */
.site-footer {
  padding: 50px 24px 60px; text-align: center;
  border-top: 1px solid rgba(201,162,39,0.15);
}
.site-footer .brand { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.site-footer .author { margin-top: 6px; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1.5px; color: rgba(245,240,226,0.55); text-transform: uppercase; }
.site-footer .sub { margin-top: 8px; font-style: italic; font-size: 13px; color: rgba(245,240,226,0.45); }
.site-footer .copyright { margin-top: 18px; font-size: 11.5px; color: rgba(245,240,226,0.3); max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ================= BOOK SALES PAGE ================= */
.book-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 130px clamp(20px, 6vw, 90px) 80px;
  background: radial-gradient(ellipse at 50% 40%, var(--s-glow, rgba(201,162,39,0.16)) 0%, var(--s-bg, #111) 45%, var(--s-bgdark, #050403) 100%);
  overflow: hidden;
}
.book-hero .wrap {
  display: grid; grid-template-columns: 380px 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center; max-width: 1180px; width: 100%;
}
.book-hero .cover-stage { display: flex; justify-content: center; }
.book-hero .cover-stage img {
  width: 100%; max-width: 340px;
  transform: rotate(-5deg);
  border-radius: 4px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.book-hero .content .breadcrumb {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: rgba(245,240,226,0.5);
  text-transform: uppercase; margin-bottom: 22px;
}
.book-hero .content .breadcrumb a:hover { color: var(--gold-light); }
.book-hero .content .eyebrow { margin-bottom: 14px; }
.book-hero .content h1 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(40px, 6vw, 66px); line-height: 1.1; color: var(--cream);
  margin-bottom: 22px;
}
.book-hero .content .hook {
  font-style: italic; font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(245,240,226,0.9); max-width: 520px; margin-bottom: 30px;
}
.book-hero .content .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; }
.book-hero .content .price { font-family: 'Cinzel', serif; font-size: 32px; color: var(--gold-light); }
.book-hero .content .price-label { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: rgba(245,240,226,0.5); }
.cta-btn {
  display: inline-block; padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 3px; font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 3px;
  color: #1a1206; text-transform: uppercase; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(201,162,39,0.25);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,162,39,0.35); }
.book-hero .content .fine-print {
  margin-top: 16px; font-size: 12.5px; color: rgba(245,240,226,0.4); font-style: italic;
}
.trust-badges {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px;
}
.trust-badges span {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px;
  color: rgba(245,240,226,0.6); text-transform: uppercase;
}
@media (max-width: 860px) {
  .trust-badges { justify-content: center; }
}

@media (max-width: 860px) {
  .book-hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .book-hero .content .hook { margin-left: auto; margin-right: auto; }
  .book-hero .content .price-row { justify-content: center; }
}

/* ---- benefits section on book page ---- */
.benefits {
  padding: 90px clamp(20px, 6vw, 90px);
  background: var(--paper);
  color: var(--ink);
}
.benefits .inner { max-width: 760px; margin: 0 auto; }
.benefits .eyebrow2 {
  font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--s-accent, var(--gold)); margin-bottom: 18px; text-align: center; display: block;
}
.benefits h2 {
  font-family: 'Cinzel', serif; font-size: clamp(22px, 3vw, 30px); text-align: center;
  margin-bottom: 30px; color: var(--ink);
}
.benefits p.desc {
  font-size: 19px; line-height: 1.7; color: #333; margin-bottom: 40px; text-align: center;
}
.benefit-list { list-style: none; }
.benefit-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 17.5px; color: #222;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list .mark {
  width: 9px; height: 9px; margin-top: 8px; flex-shrink: 0;
  background: var(--s-accent, var(--gold)); transform: rotate(45deg);
}

/* ---- second CTA / related books ---- */
.closing-cta {
  padding: 90px clamp(20px, 6vw, 90px);
  text-align: center;
  background: var(--s-bgdark, var(--void-deep));
}
.closing-cta .eyebrow { margin-bottom: 18px; }
.closing-cta h2 {
  font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(32px, 5vw, 46px);
  color: var(--cream); margin-bottom: 20px;
}
.closing-cta p { font-style: italic; color: rgba(245,240,226,0.7); max-width: 480px; margin: 0 auto 34px; }

.related { padding: 70px clamp(20px, 6vw, 90px) 100px; background: var(--void); }
.related h3 {
  text-align: center; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(245,240,226,0.55); margin-bottom: 40px;
}
.related .shelf { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); max-width: 1180px; }

/* ================= WHATSAPP FLOATING BUTTON ================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #2fce6b, #1fa855);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(0,0,0,0.5); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
}

/* ================= LEAD MAGNET (email capture) ================= */
.lead-magnet {
  padding: 80px clamp(20px, 6vw, 90px);
  background: radial-gradient(ellipse 800px 500px at 50% 0%, rgba(201,162,39,0.10), transparent 60%), var(--void-deep);
  text-align: center;
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.lead-magnet .inner { max-width: 560px; margin: 0 auto; }
.lead-magnet .eyebrow { margin-bottom: 16px; }
.lead-magnet h2 {
  font-family: 'UnifrakturMaguntia', cursive; font-size: clamp(28px, 4.5vw, 42px);
  color: var(--cream); margin-bottom: 16px;
}
.lead-magnet p {
  font-style: italic; color: rgba(245,240,226,0.75); font-size: 17px; margin-bottom: 32px;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form input {
  width: 100%; padding: 16px 18px; border-radius: 3px;
  border: 1px solid rgba(201,162,39,0.35); background: rgba(255,255,255,0.04);
  color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 16px;
}
.lead-form input::placeholder { color: rgba(245,240,226,0.4); }
.lead-form input:focus { outline: none; border-color: var(--gold-light); }
.lead-form button {
  border: none; cursor: pointer; padding: 16px 34px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 3px; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 2.5px;
  color: #1a1206; text-transform: uppercase; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.lead-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.3); }
.lead-magnet .fine { margin-top: 16px; font-size: 12px; color: rgba(245,240,226,0.35); }

/* ================= BUNDLE / COLLECTION CTA ================= */
.bundle-cta {
  max-width: 900px; margin: 0 auto; margin-top: 50px;
  padding: 34px clamp(24px, 5vw, 50px);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(255,255,255,0.02));
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; text-align: left;
}
.bundle-cta .txt .eyebrow { margin-bottom: 8px; }
.bundle-cta .txt h4 {
  font-family: 'Cinzel', serif; font-size: 19px; color: var(--cream); margin-bottom: 6px;
}
.bundle-cta .txt p { font-style: italic; font-size: 14.5px; color: rgba(245,240,226,0.65); max-width: 420px; }
.bundle-cta .wa-btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 15px 26px; border-radius: 3px;
  background: linear-gradient(135deg, #2fce6b, #1fa855);
  font-family: 'Cinzel', serif; font-size: 12.5px; letter-spacing: 1.5px;
  color: #082c16; text-transform: uppercase; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.bundle-cta .wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(47,206,107,0.3); }
.bundle-cta .wa-btn svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .bundle-cta { flex-direction: column; text-align: center; }
  .bundle-cta .txt p { max-width: none; }
}

/* ================= FAQ ================= */
.faq { padding: 90px clamp(20px, 6vw, 90px); background: var(--void); }
.faq .inner { max-width: 720px; margin: 0 auto; }
.faq h2 {
  font-family: 'Cinzel', serif; font-size: clamp(20px, 3vw, 26px); letter-spacing: 1.5px;
  text-transform: uppercase; text-align: center; color: var(--cream); margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid rgba(201,162,39,0.15); padding: 22px 0; }
.faq-item .q {
  font-family: 'Cinzel', serif; font-size: 14.5px; letter-spacing: 0.5px;
  color: var(--gold-light); margin-bottom: 10px;
}
.faq-item .a {
  font-size: 16.5px; line-height: 1.65; color: rgba(245,240,226,0.75);
}
