@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

/* ========== TOKENS ========== */
:root {
  --gold: #9a6b1f;
  --gold-light: #c49a3c;
  --gold-pale: #f7efe0;
  --gold-tint: #fdf8f0;
  --ink: #1c1410;
  --ink-mid: #3d2e1e;
  --ink-soft: #6b5542;
  --crimson: #7a1a1a;
  --white: #ffffff;
  --cream: #faf6ef;
  --border: #e0d4bc;
  --border-soft: #ede5d5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-ui: 'Montserrat', sans-serif;

  --max: 1140px;
  --r-sm: 4px;
  --r: 8px;
  --shadow: 0 4px 24px rgba(28,20,16,0.09);
  --shadow-lg: 0 12px 48px rgba(28,20,16,0.14);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========== NAV ========== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo span { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 400; font-family: var(--font-ui); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.3s; }

/* ========== PAGE TOP SPACING ========== */
.page-body { padding-top: 72px; }

/* ========== HERO ========== */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; padding-right: 5rem; }
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.hero-title em { font-style: italic; color: var(--crimson); }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--ink-mid);
  max-width: 480px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2.5rem;
}
.hero-meta-item { font-family: var(--font-ui); }
.hero-meta-item strong { display: block; font-size: 1.3rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.hero-meta-item span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }

.hero-book {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.book-cover-wrap {
  position: relative;
  width: 280px;
}
.book-cover-3d {
  width: 280px;
  height: 420px;
  background: linear-gradient(135deg, #1a0f08 0%, #3d1f0a 35%, #1a0f08 100%);
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -6px 0 0 #0a0604,
    -8px 2px 12px rgba(0,0,0,0.5),
    4px 8px 40px rgba(0,0,0,0.3),
    0 0 80px rgba(154,107,31,0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}
.book-cover-3d::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(154,107,31,0.03) 2px, rgba(154,107,31,0.03) 4px);
  pointer-events: none;
}
.book-cover-3d::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.book-ornament { color: var(--gold-light); font-size: 2.2rem; margin-bottom: 1rem; opacity: 0.8; }
.book-title-text {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.book-title-text em { color: var(--gold-light); font-style: italic; }
.book-for { color: var(--gold-light); font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.2rem; }
.book-otuo-word {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1;
}
.book-divider { width: 60px; height: 1px; background: var(--gold); margin: 1rem auto; opacity: 0.5; }
.book-author-text { color: rgba(255,255,255,0.6); font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
.book-shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--ink-mid); border-color: var(--ink-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-crimson { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.btn-crimson:hover { background: #5c1313; border-color: #5c1313; transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.85rem; }

/* ========== SECTIONS ========== */
.section { padding: 6rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--crimson); }
.section-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.8;
}
.section-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ========== DARK SECTION ========== */
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255,255,255,0.65); }
.section-dark .section-eyebrow { color: var(--gold-light); }

/* ========== CREAM SECTION ========== */
.section-cream { background: var(--cream); }

/* ========== STRIP ========== */
.strip {
  background: var(--gold-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 2rem;
  text-align: center;
}
.strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
}
.strip strong { color: var(--gold); font-style: normal; }

/* ========== PROPHECY BOX ========== */
.prophecy-box {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 3.5rem;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.prophecy-box::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(154,107,31,0.08);
  line-height: 1;
  pointer-events: none;
}
.prophecy-box blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.prophecy-box blockquote em { color: var(--gold-light); font-style: normal; }
.prophecy-attr {
  margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ========== THEMES GRID ========== */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.theme-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  transition: all 0.25s;
}
.theme-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.theme-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.theme-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.theme-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }

/* ========== TWO COL LAYOUT ========== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ========== EXCERPT ========== */
.excerpt-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 2.5rem; }
.tab-btn {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.excerpt-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink-mid);
  max-width: 720px;
}
.excerpt-text p { margin-bottom: 1.2rem; }
.excerpt-text .drop-cap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.8;
  color: var(--gold);
  margin-right: 0.1em;
  margin-top: 0.05em;
}
.excerpt-gate {
  background: var(--gold-tint);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 2.4rem;
  text-align: center;
  margin-top: 2rem;
}
.excerpt-gate p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.2rem; font-family: var(--font-ui); }

/* ========== AUTHOR ========== */
.author-section { display: grid; grid-template-columns: 300px 1fr; gap: 5rem; align-items: start; }
.author-photo-wrap {
  position: sticky;
  top: 100px;
}
.author-photo {
  width: 280px; height: 340px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.author-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--ink-soft);
}

.author-bio p { margin-bottom: 1.2rem; color: var(--ink-mid); }
.author-bio h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; margin-bottom: 0.3rem; }
.author-bio .author-title { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }

.bib-list { margin-top: 2.5rem; }
.bib-list h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.5rem; }
.bib-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.bib-num { font-family: var(--font-ui); font-size: 0.7rem; color: var(--ink-soft); min-width: 24px; }
.bib-title { font-family: var(--font-body); font-size: 1rem; color: var(--ink); font-style: italic; }
.bib-badge {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
  white-space: nowrap;
}

/* ========== LEAD FORM ========== */
.lead-section { background: var(--ink); color: var(--white); }
.lead-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.lead-inner .section-title { color: var(--white); }
.lead-inner .section-lead { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; }
.lead-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 1rem; }
.lead-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.35); }
.lead-form input:focus { border-color: var(--gold-light); }
.lead-form button {
  padding: 0.9rem 1.6rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.lead-form button:hover { background: var(--gold-light); }
.lead-note { font-family: var(--font-ui); font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
.lead-success { display: none; text-align: center; padding: 2rem; }
.lead-success.show { display: block; }
.lead-success .check { font-size: 3rem; margin-bottom: 1rem; }
.lead-success p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.lead-benefits { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; }
.lead-benefit { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); text-transform: uppercase; display: flex; align-items: center; gap: 0.4rem; }
.lead-benefit::before { content: '✓'; color: var(--gold-light); }

/* ========== BUY CARDS ========== */
.buy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.buy-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 2.4rem 2rem;
  background: var(--white);
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.buy-card.featured {
  border-color: var(--gold);
  background: var(--gold-tint);
  position: relative;
}
.buy-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 100px;
}
.buy-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.buy-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.buy-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.buy-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.6; flex: 1; }
.buy-contact { background: var(--cream); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem 2.5rem; margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.buy-contact h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.4rem; }
.buy-contact p { font-size: 0.95rem; color: var(--ink-soft); }
.contact-details { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-mid); font-family: var(--font-ui); }
.contact-row strong { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); min-width: 60px; }

/* ========== TESTIMONIALS ========== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.8rem;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-text { font-family: var(--font-body); font-style: italic; font-size: 1rem; line-height: 1.75; color: var(--ink-mid); margin-bottom: 1.5rem; }
.testi-author { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: var(--gold-tint);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-hero .section-eyebrow { justify-content: center; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.page-hero .section-eyebrow::before, .page-hero .section-eyebrow::after { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; color: var(--ink); margin-bottom: 1rem; }
.page-hero h1 em { color: var(--crimson); font-style: italic; }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,0.4); }
.footer-brand .nav-logo { color: var(--white); }
.footer-brand .nav-logo span { color: var(--gold-light); }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; font-family: var(--font-ui); }
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== MOBILE MENU ========== */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 2rem 3rem; text-align: center; }
  .hero-text { padding-right: 0; align-items: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-book { margin-top: 3rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .author-section { grid-template-columns: 1fr; }
  .author-photo-wrap { position: static; display: flex; flex-direction: column; align-items: center; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .buy-contact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 1.5rem; }
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .themes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .lead-form { flex-direction: column; }
  .lead-form input { border-radius: var(--r-sm); }
  .lead-form button { border-radius: var(--r-sm); }
  .lead-benefits { flex-direction: column; align-items: center; gap: 1rem; }
  .prophecy-box { padding: 2rem 1.8rem; }
}
