/* ============================================================
   BRAD BRINKMAN — Your Real Estate Consultant For Life
   Design: Refined luxury editorial — navy & gold palette
   ============================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #132040;
  --navy-light: #1e3155;
  --gold: #c8a84b;
  --gold-light: #e0c068;
  --gold-pale: #f5e8b8;
  --cream: #faf7f0;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3a3a5a;
  --text-light: #7a7a9a;
  --border: rgba(200, 168, 75, 0.2);

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

  --max-w: 1200px;
  --section-pad: 100px 0;
  --radius: 4px;
  --shadow: 0 8px 40px rgba(10, 22, 40, 0.15);
  --shadow-lg: 0 24px 80px rgba(10, 22, 40, 0.25);
}

*, *::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-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

/* ---- UTILITIES ---- */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  padding-left: 24px;
  padding-right: 24px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 40px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

/* ---- NAVIGATION ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { flex-shrink: 0; }
.nav-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-tagline {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: var(--gold);
}
.hero-circle--1 { width: 700px; height: 700px; top: -200px; right: -100px; }
.hero-circle--2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.hero-circle--3 { width: 200px; height: 200px; top: 50%; right: 30%; transform: translateY(-50%); opacity: .03; }

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.hero-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-line { display: block; }
.hero-title-em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, .35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}
.stat { }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-pct { font-size: 1.2rem; }
.stat-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,168,75,.25);
  flex-shrink: 0;
}

/* ---- AMAZON BUTTON ---- */
.amazon-cta {
  margin-bottom: 8px;
}

.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;
  cursor: pointer;
}
.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; }

/* Dark variant used in contact strip */
.amazon-btn--dark {
  background: rgba(255,255,255,.06);
  border-color: #FF9900;
}
.amazon-btn--dark:hover {
  background: #FF9900;
  color: #111;
}

/* Book hero visual */
.hero-book {
  position: relative;
  flex-shrink: 0;
}
.book-wrapper {
  position: relative;
  animation: floatBook 4s ease-in-out infinite;
}
@keyframes floatBook {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.book-cover-img {
  width: 280px;
  max-width: 280px;
  border-radius: 6px;
  box-shadow: -20px 20px 60px rgba(0,0,0,.5), 4px 4px 0 rgba(200,168,75,.15);
  position: relative;
  z-index: 2;
}
.book-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: var(--gold);
  opacity: .15;
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
}
.book-foreword-tag {
  margin-top: 20px;
  background: rgba(200,168,75,.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
}
.book-foreword-tag span {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
}
.book-foreword-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
}
.book-foreword-tag small {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* ---- ABOUT ---- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-lead {
  font-family: var(--font-refined);
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-quote {
  margin-top: 32px;
  padding: 24px 24px 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}
.about-quote p {
  font-family: var(--font-refined);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px !important;
}
.about-quote cite {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.credential-card {
  background: var(--cream);
  border: 1px solid rgba(10,22,40,.08);
  padding: 24px;
  border-radius: 6px;
  transition: box-shadow .2s, transform .2s;
}
.credential-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.credential-icon { font-size: 1.6rem; margin-bottom: 10px; }
.credential-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.credential-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.55; }

/* ---- BOOK OVERVIEW ---- */
.book-overview {
  background: var(--cream);
  position: relative;
}
.book-overview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.book-overview-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.book-overview-image { flex-shrink: 0; }
.book-overview-img {
  width: 240px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.book-lead {
  font-family: var(--font-refined);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 28px;
}

.book-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.book-features li {
  font-size: .95rem;
  color: var(--text-mid);
  padding-left: 4px;
}
.feature-diamond {
  color: var(--gold);
  margin-right: 10px;
  font-size: .7rem;
  vertical-align: middle;
}
.book-features em { color: var(--navy); font-style: italic; }

.book-foreword-box {
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
}
.foreword-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.foreword-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.foreword-role {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.foreword-excerpt {
  font-family: var(--font-refined);
  font-size: .98rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

/* ---- CHAPTERS ---- */
.chapters { background: var(--white); }

.chapters-intro {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 56px;
  margin-top: -16px;
}

.chapters-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chapter-card { border-bottom: 1px solid rgba(10,22,40,.08); }
.chapter-card:last-child { border-bottom: none; }

.chapter-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: block;
  transition: background .2s;
}
.chapter-toggle:hover { background: var(--cream); }
.chapter-toggle[aria-expanded="true"] { background: var(--navy); }
.chapter-toggle[aria-expanded="true"] .chapter-num { color: var(--gold); }
.chapter-toggle[aria-expanded="true"] .chapter-name { color: var(--white); }
.chapter-toggle[aria-expanded="true"] .chapter-sub { color: rgba(255,255,255,.5); }
.chapter-toggle[aria-expanded="true"] .chapter-preview-text { color: rgba(255,255,255,.6); }
.chapter-toggle[aria-expanded="true"] .chapter-chevron { color: var(--gold); transform: rotate(180deg); }

.chapter-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px 16px;
}

.chapter-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  transition: opacity .2s;
}
.chapter-toggle:hover .chapter-num,
.chapter-toggle[aria-expanded="true"] .chapter-num { opacity: 1; }

.chapter-info { flex: 1; }
.chapter-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 3px;
}
.chapter-sub {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.chapter-chevron {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}

.chapter-preview-text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 0 28px 20px calc(28px + 48px + 20px);
  font-style: italic;
}

.chapter-body {
  border-top: 1px solid rgba(200,168,75,.15);
  background: var(--cream);
}
.chapter-body[hidden] { display: none; }

.chapter-body-inner {
  padding: 36px 48px 36px calc(48px + 48px + 20px);
  max-width: 820px;
}
.chapter-body-inner p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.chapter-body-inner p:last-child { margin-bottom: 0; }

.method-box {
  background: var(--navy);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 28px 0;
  border-left: 4px solid var(--gold);
}
.method-label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.method-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.method-list li {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  padding-left: 12px;
  border-left: 2px solid rgba(200,168,75,.3);
  line-height: 1.55;
}
.method-list li strong { color: var(--gold-light); }

/* ---- RESULTS ---- */
.results {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: var(--gold);
  opacity: .03;
  border-radius: 50%;
}

.results-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}

.result-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,168,75,.15);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.result-card--hero {
  background: var(--gold);
  border-color: var(--gold);
}
.result-card--hero .result-num { color: var(--navy); }
.result-card--hero .result-lbl { color: var(--navy-mid); }
.result-card--hero .result-ctx { color: rgba(10,22,40,.6); }

.result-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.result-lbl {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.result-ctx {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.testimonials-section {}
.testimonials-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
  font-style: italic;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,168,75,.12);
  border-radius: 8px;
  padding: 28px;
}
.testimonial-card p {
  font-family: var(--font-refined);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin-bottom: 16px;
}
.testimonial-card cite {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ---- FAQ ---- */
.faq { background: var(--cream); }

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(10,22,40,.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(10,22,40,.08);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  background: var(--white);
  transition: background .2s;
}
.faq-q:hover { background: var(--cream); }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .3s;
  font-weight: 300;
}
details[open] .faq-q::after { transform: rotate(45deg); }
details[open] .faq-q { background: var(--navy); color: var(--white); }
details[open] .faq-q::after { color: var(--gold-light); }

.faq-a {
  padding: 20px 28px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(200,168,75,.15);
}
.faq-a p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-a strong { color: var(--navy); }

/* ---- CONTACT CTA / STRIP ---- */
.contact-cta {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 400px; height: 400px;
  background: var(--gold);
  opacity: .04;
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta .section-container {
  padding-top: 56px;
  padding-bottom: 56px;
}

.contact-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-strip-text { flex: 1 1 260px; }

.contact-strip-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.contact-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  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;
  flex: 1 1 220px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.contact-strip-item:hover { color: var(--gold-light); }
.contact-strip-icon { font-size: 1rem; flex-shrink: 0; }
.contact-strip-val { line-height: 1; }

.contact-strip-amazon { flex-shrink: 0; }

/* ---- FOOTER — compact single-band layout ---- */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.footer-author {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.footer-company {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.footer-tagline {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer-lic {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 0;
  margin: 0;
}
.footer-nav a {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-contact-info a {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  white-space: nowrap;
}
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom em { font-style: italic; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge,
.hero-title,
.hero-subtitle,
.hero-actions,
.hero-stats {
  animation: fadeUp .7s ease-out both;
}
.hero-badge { animation-delay: .1s; }
.hero-title { animation-delay: .2s; }
.hero-subtitle { animation-delay: .3s; }
.hero-actions { animation-delay: .4s; }
.hero-stats { animation-delay: .5s; }
.hero-book { animation: fadeUp .9s ease-out .3s both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-book { order: -1; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-credentials { grid-template-columns: 1fr 1fr; }

  .book-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-overview-image { display: none; }

  .results-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-strip { flex-direction: column; align-items: flex-start; gap: 28px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 24px 16px; }
  .footer-contact-info { flex-direction: column; gap: 8px; }

  .chapter-body-inner { padding: 28px; }
  .chapter-preview-text { padding-left: 28px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .results-grid { grid-template-columns: 1fr; }
  .result-card--hero .result-num { font-size: 3rem; }

  .about-credentials { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 16px; text-align: center; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ---- Scroll fade-in targets ---- */
.fade-in-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Active nav link ---- */
.nav-links a.is-active {
  color: var(--gold-light) !important;
}