/* ===== :root VARIABLES ===== */
:root {
  --navy:        #111111;
  --navy-mid:    #1a1a1a;
  --navy-light:  #242424;
  --navy-card:   #161616;
  --gold:        #c8a84b;
  --gold-light:  #e0c068;
  --gold-pale:   #f5e8b8;
  --gold-dark:   #9a7d2e;
  --cream:       #f5f0e8;
  --text-dark:   #1a1a1a;
  --text-body:   #3d3830;
  --text-muted:  #7a7060;
  --border:      rgba(200, 168, 75, 0.22);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-refined: 'Cormorant Garamond', Georgia, serif;
  --radius:      8px;
  --transition:  0.25s ease;
}

/* ===== 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-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== UTILITIES ===== */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--gold-light); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}
.section-heading--light { color: #fff; }

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.75s ease forwards;
}
.fade-in-delay { animation-delay: 0.2s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.scroll-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.nav-brand-sep { color: var(--gold); font-size: 0.85rem; }
.nav-brand-sub {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 7px 16px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #0e0e0e;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 64px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 70% at 68% 45%, rgba(200,168,75,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(200,168,75,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,75,0.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}
.hero-badge-pip {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-family: var(--font-refined);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 5px;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,168,75,0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== 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: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.amazon-btn:hover {
  background: #FF9900;
  color: #111;
  box-shadow: 0 6px 20px rgba(255,153,0,0.4);
  transform: translateY(-2px);
}
.amazon-btn-text { font-size: 0.88rem; font-weight: 700; white-space: nowrap; }
.amazon-logo { flex-shrink: 0; }
.amazon-arrow { flex-shrink: 0; color: #FF9900; transition: color 0.2s; }
.amazon-btn:hover .amazon-arrow { color: #111; }
.amazon-btn--dark { background: rgba(255,255,255,0.06); border-color: #FF9900; }
.amazon-btn--dark:hover { background: #FF9900; color: #111; }

.hero-amazon { margin-bottom: 2rem; }

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 12px 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 20px 0 4px;
}

/* HERO BOOK */
.hero-book { display: flex; justify-content: center; align-items: center; }
.hero-book-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-book-glow {
  position: absolute;
  top: -30px; left: -40px; right: -40px; bottom: 60px;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
/* Frame — warm off-white matte border separates black cover from dark bg */
.hero-book-frame {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 10px 10px 14px;
  background: #e8e0d0;
  box-shadow:
    0 0 0 1px rgba(200,168,75,0.4),
    0 32px 80px rgba(0,0,0,0.75),
    0 8px 24px rgba(0,0,0,0.5);
}
.hero-book-img {
  width: 268px;
  max-width: 100%;
  border-radius: 3px;
  display: block;
}

/* Introduction banner — two-line stacked layout, no overflow */
.hero-intro-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  background: rgba(200,168,75,0.10);
  border: 1px solid rgba(200,168,75,0.30);
  border-radius: 6px;
  padding: 10px 16px;
  z-index: 2;
  width: 100%;
  max-width: 288px;
  box-sizing: border-box;
}
.intro-banner-label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.intro-banner-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.intro-banner-title {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.3;
}

/* ===== ABOUT ===== */
.about {
  padding: 96px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-lead {
  font-family: var(--font-refined);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-license {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0e0e0e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  margin-top: 1rem;
  font-size: 0.8rem;
}
.license-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}
.license-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.95rem;
}
.license-company {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 10px;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cred-card {
  background: #fff;
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cred-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(10,22,40,0.12);
}
.cred-icon { font-size: 1.5rem; margin-bottom: 10px; }
.cred-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cred-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== BOOK OVERVIEW ===== */
.book-overview {
  padding: 96px 0;
  background: #0e0e0e;
  text-align: center;
}
.book-overview-sub {
  font-family: var(--font-refined);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.foreword-box {
  background: rgba(200,168,75,0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 48px 52px;
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: left;
  position: relative;
}
.foreword-box-mark {
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.foreword-quote {
  font-family: var(--font-refined);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.foreword-cite {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: normal;
  line-height: 1.55;
}

.book-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
}
.pillar:hover {
  background: rgba(200,168,75,0.07);
  border-color: rgba(200,168,75,0.35);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== CHAPTERS ===== */
.chapters {
  padding: 96px 0;
  background: var(--cream);
}
.chapters-intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
}
.chapters-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chapter-card {
  background: #fff;
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
  transition: box-shadow var(--transition);
}
.chapter-card:hover { box-shadow: 0 4px 20px rgba(10,22,40,0.1); }
.chapter-card--special { border-color: rgba(200,168,75,0.3); }
.chapter-card--special .chapter-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.chapter-card--special .ch-num { color: var(--gold-light); }
.chapter-card--special .ch-title { color: #fff; }
.chapter-card--special .ch-preview { color: rgba(255,255,255,0.55); }
.chapter-card--special .ch-arrow { color: var(--gold); }

.chapter-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  transition: background var(--transition);
}
.chapter-header:hover { background: rgba(200,168,75,0.04); }
.chapter-header[aria-expanded="true"] { background: rgba(10,22,40,0.04); }
.chapter-header[aria-expanded="true"] .ch-arrow { transform: rotate(90deg); color: var(--gold); }

.ch-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
  min-width: 44px;
  line-height: 1;
  flex-shrink: 0;
}
.ch-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ch-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.ch-preview {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}
.ch-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.chapter-body {
  border-top: 1px solid rgba(200,168,75,0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.chapter-body:not([hidden]) { display: block; }
.chapter-body[hidden] { max-height: 0 !important; }

.chapter-content {
  padding: 28px 32px 32px;
}
.chapter-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(200,168,75,0.15);
}
.chapter-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.chapter-content p:last-child { margin-bottom: 0; }

.ch-reflection {
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 1.5rem;
}
.ch-ref-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.75rem !important;
}
.ch-reflection ol {
  list-style: decimal;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ch-reflection ol li {
  font-size: 0.87rem;
  color: var(--navy);
  line-height: 1.6;
}

/* Manifesto chapter */
.chapter-content--manifesto h4 {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
}
.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.manifesto-list li {
  font-family: var(--font-refined);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  padding: 10px 0 10px 20px;
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}
.manifesto-list li:nth-child(5),
.manifesto-list li:nth-child(6),
.manifesto-list li:nth-child(7),
.manifesto-list li:nth-child(8),
.manifesto-list li:nth-child(9) {
  font-weight: 600;
  color: var(--navy);
  border-left-color: var(--gold-dark);
}

/* Checklist chapter */
.checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}
.checklist li::before {
  content: counter(item);
  counter-increment: item;
  min-width: 24px;
  height: 24px;
  background: #0e0e0e;
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist { counter-reset: item; }

/* ===== RESULTS ===== */
.results {
  padding: 96px 0;
  background: #0e0e0e;
  text-align: center;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.result-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
}
.result-item:hover { background: rgba(200,168,75,0.08); }
.result-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.result-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,22,40,0.12);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-quote {
  font-family: var(--font-refined);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}
.testimonial-cite {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
  border-top: 1px solid rgba(200,168,75,0.15);
  padding-top: 14px;
  line-height: 1.55;
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: #0e0e0e;
}
.faq .section-heading { text-align: center; }
.faq .section-eyebrow { text-align: center; display: block; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(200,168,75,0.35); }
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] .faq-q { color: var(--gold-light); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.faq-a p { margin: 0; }
.faq-link { color: var(--gold); text-decoration: underline; }
.faq-link:hover { color: var(--gold-light); }

/* ===== CONTACT STRIP ===== */
.contact-cta {
  padding: 64px 0;
  background: #181818;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-strip-text { min-width: 220px; }
.contact-strip-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-strip-heading {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.contact-strip-heading em {
  font-style: italic;
  color: var(--gold);
}
.contact-strip-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}
a.contact-strip-item:hover .contact-strip-val { color: var(--gold-light); }
.contact-strip-item--text { cursor: default; }
.contact-strip-icon { font-size: 1rem; }
.contact-strip-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  user-select: text;
}

/* ===== FOOTER ===== */
.footer {
  background: #0e0e0e;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 5px;
}
.footer-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer-company {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-tagline, .footer-lic {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-contact-info a,
.footer-email-plain {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  user-select: text;
}
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom em { font-style: italic; }

/* ===== RESPONSIVE 900px ===== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-amazon { display: flex; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-book { order: -1; }
  .hero-book-img { width: 200px; }
  .hero-badge { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-pillars { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-strip { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-contact-info { flex-direction: column; gap: 6px; }
}

/* ===== RESPONSIVE 640px ===== */
@media (max-width: 640px) {
  .section-container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #0e0e0e;
    flex-direction: column;
    padding: 20px 18px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 14px; font-size: 0.88rem; }
  .nav-toggle { display: flex; }
  .about-credentials { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .foreword-box { padding: 28px 24px; }
  .chapter-header { padding: 16px 18px; gap: 14px; }
  .chapter-content { padding: 20px 18px 24px; }
  .ch-num { font-size: 1.2rem; min-width: 32px; }
  .ch-title { font-size: 0.92rem; }
  .hero-container { padding: 48px 18px; }
  .contact-strip { gap: 20px; }
  .nav-brand-sub { display: none; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav-link.active { color: var(--gold); }
