/* ============================================================
   :root — CSS Variables (Jeni VanOrnum — Teal + Gold palette)
   ============================================================ */
:root {
  --teal:        #0d5c6b;
  --teal-mid:    #0f7a8f;
  --teal-light:  #1a9db8;
  --teal-pale:   #d0edf3;
  --teal-dark:   #083e4a;
  --gold:        #c8a84b;
  --gold-light:  #e0c068;
  --gold-pale:   #f5e8b8;
  --cream:       #faf8f3;
  --dark:        #0d1f24;
  --dark-mid:    #152d35;
  --text:        #2c3e42;
  --text-muted:  #5a7278;
  --white:       #ffffff;
  --border:      rgba(13,92,107,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --font-refined: 'Cormorant Garamond', Georgia, serif;

  --max-w:    1160px;
  --radius:   8px;
  --shadow:   0 8px 32px rgba(13,92,107,0.12);
  --shadow-lg:0 20px 60px rgba(13,92,107,0.18);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   Utilities
   ============================================================ */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light em { color: var(--gold-light); }
.section-intro {
  font-family: var(--font-refined);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal-mid);
  color: var(--white);
  border-color: var(--teal-mid);
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,92,107,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-teal:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.35);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,62,74,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,75,0.2);
  transition: background .3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.nav-logo-tag {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* ============================================================
   Amazon Button
   ============================================================ */
.amazon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #232f3e;
  color: #fff;
  border: 2px solid #FF9900;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.amazon-btn:hover {
  background: #FF9900;
  color: #111;
  box-shadow: 0 6px 20px rgba(255,153,0,.4);
  transform: translateY(-2px);
}
.amazon-btn-text { font-size: .88rem; font-weight: 700; white-space: nowrap; }
.amazon-logo { flex-shrink: 0; }
.amazon-arrow { flex-shrink: 0; color: #FF9900; transition: color .2s; }
.amazon-btn:hover .amazon-arrow { color: #111; }
.amazon-btn--dark { background: rgba(255,255,255,.06); border-color: #FF9900; }
.amazon-btn--dark:hover { background: #FF9900; color: #111; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,168,75,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,157,184,0.12) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-lead { max-width: 500px; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.35);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: var(--font-refined);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.hero-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-amazon {
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px 0 0;
}
.stat-block:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  margin-right: 28px;
  flex-shrink: 0;
}


.hero-scroll-hint {
  text-align: center;
  padding: 20px 32px 28px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fade-in-up 1s 1.2s both;
}

/* Hero Book Visual */
.hero-book-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 16px;
}
.hero-book-static {
  position: relative;
  padding-bottom: 52px;
}
.hero-book-img {
  width: 320px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(200,168,75,0.2);
}
.foreword-ribbon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 8px);
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.15) 20%, rgba(200,168,75,0.15) 80%, transparent);
  border-top: 1px solid rgba(200,168,75,0.35);
  border-bottom: 1px solid rgba(200,168,75,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  white-space: nowrap;
}
.foreword-ribbon-label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foreword-ribbon-label::after { content: '·'; margin-left: 6px; opacity: .4; }
.foreword-ribbon-name {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
}
.foreword-ribbon-sub {
  font-family: var(--font-refined);
  font-size: .75rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   About Section
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-bio {}
.about-lead {
  font-family: var(--font-refined);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--teal-dark);
  margin-bottom: 18px;
}
.about-bio p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  background: var(--teal-pale);
  border-left: 4px solid var(--teal-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--teal-dark);
}
.about-contact-inline a { color: var(--teal-mid); font-weight: 700; }
.about-contact-inline a:hover { color: var(--teal); text-decoration: underline; }
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cred-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow .2s, transform .2s;
}
.cred-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.cred-icon { font-size: 1.6rem; margin-bottom: 10px; }
.cred-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.cred-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   Book Overview
   ============================================================ */
.book-overview {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}
.book-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(200,168,75,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.book-overview-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: center;
}
.book-overview-cover img {
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), -6px 6px 0 rgba(200,168,75,0.2);
  width: 100%;
}
.book-overview-content {}
.book-overview-lead {
  font-family: var(--font-refined);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
}
.foreword-pullquote {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 28px;
  position: relative;
}
.quote-mark {
  width: 36px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}
.foreword-pullquote blockquote {
  font-family: var(--font-refined);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 10px;
}
.foreword-pullquote cite {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   Chapters
   ============================================================ */
.chapters { background: var(--cream); }
.chapters-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chapter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.chapter-card:hover { box-shadow: var(--shadow); }
.chapter-card[data-chapter].open { box-shadow: var(--shadow-lg); }
.chapter-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: background .2s;
}
.chapter-header:hover { background: var(--teal-pale); }
.chapter-card.open .chapter-header { background: var(--teal-pale); }
.chapter-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.chapter-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-pale);
  line-height: 1;
  min-width: 52px;
  background: var(--teal-mid);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.chapter-card.open .chapter-num { background: var(--teal); }
.chapter-titles { text-align: left; }
.chapter-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 2px;
}
.chapter-subtitle {
  font-family: var(--font-refined);
  font-size: .9rem;
  font-style: italic;
  color: var(--text-muted);
}
.chapter-toggle-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--teal-mid);
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.chapter-card.open .chapter-toggle-icon { transform: rotate(45deg); color: var(--teal); }
.chapter-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
}
.chapter-body[hidden] { display: none; }
.chapter-preview {
  margin-top: 20px;
  margin-bottom: 16px;
}
.chapter-preview p {
  font-family: var(--font-refined);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--teal-mid);
  line-height: 1.75;
}
.chapter-full { display: none; }
.chapter-card.open .chapter-full { display: block; }
.chapter-full p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.chapter-full p strong { color: var(--teal-dark); font-weight: 700; }
.chapter-quote {
  background: linear-gradient(135deg, var(--teal-pale), rgba(200,168,75,0.08));
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-refined);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.75;
  margin-top: 20px;
}

/* ============================================================
   Results
   ============================================================ */
.results {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.015) 80px,
    rgba(255,255,255,0.015) 81px
  );
  pointer-events: none;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.result-block {
  background: rgba(255,255,255,0.04);
  padding: 40px 28px;
  text-align: center;
  transition: background .2s;
}
.result-block:hover { background: rgba(255,255,255,0.08); }
.result-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.result-desc {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: .1em;
}
.testimonial-card blockquote {
  font-family: var(--font-refined);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.testimonial-card cite {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--teal-light); }
.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal-mid);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] .faq-question { background: var(--teal-pale); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
}
.faq-answer p strong { color: var(--teal-dark); }

/* ============================================================
   Contact Strip
   ============================================================ */
.contact-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
  padding: 0;
}
.contact-cta .section-container { padding: 60px 32px; }
.contact-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-strip-text { flex: 1; min-width: 200px; }
.contact-strip-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-strip-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.contact-strip-heading em {
  font-style: italic;
  color: var(--gold-light);
}
.contact-strip-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s;
  text-decoration: none;
}
.contact-strip-item:not(.no-link):hover { color: var(--gold-light); }
.contact-strip-item.no-link { cursor: default; }
.contact-strip-icon { font-size: 1rem; flex-shrink: 0; }
.contact-strip-val { font-size: .9rem; }
.contact-strip-amazon { flex-shrink: 0; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,168,75,0.15);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-company {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: .04em;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: .75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.footer-lic {
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-contact-info a,
.footer-contact-info span {
  font-family: var(--font-body);
  font-size: .78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  transition: color .2s;
}
.footer-contact-info a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom em { font-style: italic; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: fade-in-up .6s .1s both; }
.hero-title  { animation: fade-in-up .6s .25s both; }
.hero-subtitle { animation: fade-in-up .6s .35s both; }
.hero-lead   { animation: fade-in-up .6s .45s both; }
.hero-ctas   { animation: fade-in-up .6s .55s both; }
.hero-amazon { animation: fade-in-up .6s .65s both; }
.hero-stats  { animation: fade-in-up .6s .75s both; }
.hero-book-wrap { animation: fade-in-up .8s .3s both; }

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive — 960px
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 48px;
  }
  .hero-book-wrap { order: -1; }
  .hero-badge { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-amazon { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-lead { margin: 0 auto 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-credentials { grid-template-columns: 1fr 1fr; }
  .book-overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .book-overview-cover { max-width: 280px; margin: 0 auto; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-strip { gap: 32px; }
  .footer-inner { flex-direction: column; gap: 20px; }
}

/* ============================================================
   Responsive — 640px
   ============================================================ */
@media (max-width: 640px) {
  .section-container { padding: 60px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--teal-dark); padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { padding: 96px 20px 40px; }
  .hero-book-img { width: 220px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-num { font-size: 2.2rem; }
  .contact-strip { flex-direction: column; gap: 24px; }
  .about-credentials { grid-template-columns: 1fr; }
  .footer-inner { padding: 24px 20px; }
  .footer-contact-info { flex-direction: column; gap: 8px; }
  .stat-divider { display: none; }
  .stat-block { padding: 0 16px 0 0; }
}

/* ============================================================
   Active nav link
   ============================================================ */
.nav-links a.active { color: var(--gold); }
