/* ============================================================
   JIM URBAN — YOUR FRIEND IN THE REAL ESTATE BUSINESS
   Authority Site Stylesheet
   Domain: jimurbandenvercoloradorealestateconsultant.com
   Copyright 2026 Urban Companies
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES / ROOT
   ============================================================ */
:root {
  /* Primary Palette — Navy + Warm Gold (Urban Companies inspired) */
  --navy:        #0d1f3c;
  --navy-mid:    #162d52;
  --navy-light:  #1e3d6e;
  --navy-subtle: #243a5e;

  --gold:        #c9922a;
  --gold-light:  #e4b04a;
  --gold-pale:   #f5dca0;
  --gold-accent: #f0c060;

  --cream:       #faf8f3;
  --cream-mid:   #f2ede3;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;

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

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1180px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --trans: 0.25s ease;
  --trans-slow: 0.4s ease;
}

/* ============================================================
   2. 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);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  font-family: var(--font-refined);
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 56px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--trans);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 31, 60, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,146,42,0.2);
  transition: box-shadow var(--trans);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--trans);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 2px;
  transition: all var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(201,146,42,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(30, 61, 110, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, #0d1f3c 0%, #162d52 40%, #0d1f3c 100%);
}

/* Decorative grid lines */
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
  width: 100%;
}

/* HERO CONTENT (LEFT) */
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,146,42,0.4);
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  background: rgba(201,146,42,0.08);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-refined);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 24px;
}

.hero-lead {
  font-family: var(--font-refined);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* ============================================================
   6. AMAZON BUTTON
   ============================================================ */
.hero-amazon { margin-bottom: 40px; }

.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 var(--trans), box-shadow var(--trans), transform var(--trans);
}
.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 var(--trans); }
.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; }

/* ============================================================
   7. HERO STATS
   ============================================================ */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-block {
  display: flex;
  flex-direction: column;
  padding: 0 32px 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-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  margin-right: 32px;
  flex-shrink: 0;
}

/* ============================================================
   8. HERO BOOK VISUAL
   ============================================================ */
.hero-book {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.hero-book-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-book-img {
  width: 340px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 8px 20px rgba(0,0,0,0.4),
    -6px 0 20px rgba(201,146,42,0.15);
}

/* Foreword ribbon — slim horizontal strip BELOW the cover */
.foreword-ribbon {
  margin-top: 16px;
  width: 100%;
  background: rgba(13, 31, 60, 0.85);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 6px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}

.foreword-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.foreword-author {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.foreword-cred {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}




/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about {
  padding: var(--section-pad);
  background: var(--cream);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.credential-card {
  background: var(--white);
  border: 1px solid rgba(201,146,42,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,31,60,0.1);
  border-color: var(--gold);
}

.credential-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.credential-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   10. BOOK OVERVIEW SECTION
   ============================================================ */
.book-overview {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.book-overview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.book-overview .section-label { color: var(--gold-light); }
.book-overview .section-title { color: var(--white); }
.book-overview .section-title em { color: var(--gold-light); }

.book-overview-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

.book-overview-text p {
  font-family: var(--font-refined);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 20px;
}

.book-highlights {
  list-style: none;
  margin: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-highlights li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.book-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Foreword card */
.foreword-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,42,0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.foreword-card-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.foreword-quote {
  font-family: var(--font-refined);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 24px;
  border: none;
  padding: 0;
  quotes: none;
}

.foreword-card-footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}
.foreword-card-footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}
.foreword-card-footer span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   11. CHAPTERS SECTION
   ============================================================ */
.chapters {
  padding: var(--section-pad);
  background: var(--cream-mid);
}

.chapters-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.chapter-card {
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.chapter-card:hover { border-color: rgba(201,146,42,0.4); }
.chapter-card.open {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(13,31,60,0.1);
}

.chapter-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--trans);
}
.chapter-header:hover { background: rgba(201,146,42,0.04); }
.chapter-card.open .chapter-header { background: var(--navy); }

.chapter-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(201,146,42,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
  transition: color var(--trans);
}
.chapter-card.open .chapter-num { color: var(--gold-light); }

.chapter-meta { flex: 1; }

.chapter-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color var(--trans);
}
.chapter-card.open .chapter-title { color: var(--white); }

.chapter-preview {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
  transition: color var(--trans);
}
.chapter-card.open .chapter-preview { color: rgba(255,255,255,0.6); }

.chapter-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--trans);
}
.chapter-card.open .chapter-icon { transform: rotate(45deg); }

/* Chapter body */
.chapter-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.chapter-card.open .chapter-body { max-height: 9000px; }

.chapter-body-inner {
  padding: 40px 32px 40px 120px;
  border-top: 1px solid rgba(201,146,42,0.15);
}

.chapter-body-inner p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.chapter-body-inner h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
}

.chapter-body-inner strong { color: var(--navy); }

/* ============================================================
   12. TEAM SECTION
   ============================================================ */
.team {
  padding: var(--section-pad);
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  background: var(--cream);
  border: 1px solid rgba(13,31,60,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,31,60,0.1);
  border-color: var(--gold);
}

.team-card-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-card-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   13. RESULTS SECTION
   ============================================================ */
.results {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
}

.results .section-label { color: var(--gold-light); }
.results .section-title { color: var(--white); }
.results .section-title em { color: var(--gold-light); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 56px 0 72px;
}

.result-stat {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: var(--radius-lg);
  transition: background var(--trans), border-color var(--trans);
}
.result-stat:hover {
  background: rgba(201,146,42,0.08);
  border-color: rgba(201,146,42,0.5);
}

.result-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}

.result-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Testimonials */
.results-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--trans);
}
.testimonial-card:hover { border-color: rgba(201,146,42,0.5); }

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-refined);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 20px;
  quotes: none;
}

.testimonial-card footer {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   14. FAQ SECTION
   ============================================================ */
.faq {
  padding: var(--section-pad);
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(13,31,60,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item[open] { border-color: var(--gold); }

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background var(--trans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--trans);
}
.faq-item[open] summary { background: rgba(201,146,42,0.06); }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-top: 1px solid rgba(201,146,42,0.12);
  padding-top: 20px;
  margin-top: 0;
}
.faq-item p strong { color: var(--navy); }

/* ============================================================
   15. CONTACT STRIP
   ============================================================ */
.contact-cta {
  padding: 72px 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,146,42,0.2);
  border-bottom: 1px solid rgba(201,146,42,0.2);
}

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

.contact-strip-text { flex: 1; min-width: 220px; }

.contact-strip-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.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-shrink: 0;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--trans);
}
.contact-strip-item:hover { opacity: 0.8; }

.contact-strip-item--email { cursor: default; }
.contact-strip-item--email:hover { opacity: 1; }

.contact-strip-icon { font-size: 1rem; flex-shrink: 0; }

.contact-strip-val {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

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

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,146,42,0.15);
}

.footer-inner {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { flex-shrink: 0; }

.footer-brand-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-author {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.footer-company {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  margin-bottom: 2px;
}

.footer-lic {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--trans);
}
.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-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
  padding: 12px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ============================================================
   17. ANIMATIONS — FADE IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in--delay { animation-delay: 0.2s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   18. SCROLL FADE (intersection observer targets)
   ============================================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   20. RESPONSIVE — 960px breakpoint
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    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: 260px; }

  .foreword-ribbon {
    justify-content: center;
  }

  .book-overview-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .results-grid { grid-template-columns: repeat(2, 1fr); }

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

  .chapter-body-inner { padding-left: 32px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201,146,42,0.2);
  }
  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 0.88rem;
  }
  .nav-cta {
    margin: 8px 24px !important;
    padding: 12px 24px !important;
    text-align: center;
  }

  .contact-strip {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .contact-strip-links { align-items: center; }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-brand-top { justify-content: center; }
  .footer-contact-info { justify-content: center; }
}

/* ============================================================
   21. RESPONSIVE — 640px breakpoint
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-pad: 72px 0; }

  .section-container { padding: 0 20px; }

  .hero-book-img { width: 200px; }

  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .stat-block { padding: 0; text-align: center; }
  .stat-divider { width: 60px; height: 1px; margin: 0; }

  .team-grid { grid-template-columns: 1fr; }

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

  .chapter-header { gap: 16px; padding: 22px 20px; }
  .chapter-num { font-size: 1.5rem; min-width: 40px; }
  .chapter-body-inner { padding: 28px 20px; }

  .foreword-ribbon {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 12px 16px;
  }
}
