/* ============================================
   COACH DEFOREST — PREMIUM DESIGN SYSTEM
   "BlackRock meets Duke Basketball"
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #0a1628;
  --navy-light: #0f1f3d;
  --navy-medium: #142240;
  --red: #c41e3a;
  --red-hover: #d4253f;
  --gold: #d4a843;
  --gold-light: #e8c76a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #1a1a1a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.25);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.logo-text { color: var(--white); }
.logo-accent { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 36px;
}
.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

/* Mobile CTA — hidden on desktop, shown in mobile overlay */
.mobile-cta {
  display: none !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text,
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

/* ============================================
   PAGE HERO (Smaller, for inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.stat .stat-number,
.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .stat-label,
.stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
/* Stats on light/white backgrounds (e.g. About page "By the Numbers") */
.section-light .stat .stat-number,
.section-light .stat-item .stat-number,
.section-white .stat .stat-number,
.section-white .stat-item .stat-number {
  color: var(--navy);
}
.section-light .stat .stat-label,
.section-light .stat-item .stat-label,
.section-white .stat .stat-label,
.section-white .stat-item .stat-label {
  color: var(--gray-500);
}

/* ============================================
   SECTIONS — Alternating Dark/Light
   ============================================ */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}
.section-dark p,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}
.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}
.section-dark .section-label {
  color: var(--gold);
}

/* Book info (inside cards with white bg - keep dark text) */
.book-card .book-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.book-card .book-info p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.section-light {
  background: var(--off-white);
}
.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-title {
  color: inherit;
}

/* ============================================
   FEATURED BOOKS GRID
   ============================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.book-card-image {
  position: relative;
  height: 320px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-card-image img {
  height: 85%;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.book-card:hover .book-card-image img {
  transform: scale(1.05);
}
.book-card-body {
  padding: 28px;
}
.book-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.book-card-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}
.book-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.book-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 2px;
}
.book-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
}
.book-link:hover {
  color: var(--red-hover);
  gap: 10px;
}

/* ============================================
   ABOUT PREVIEW / SPLIT SECTION
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.split-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}
.split-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.section-dark .split-content p {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   TESTIMONIAL / QUOTE
   ============================================ */
.quote-section {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}
.quote-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.quote-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0.5;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}
.quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b1425 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn {
  position: relative;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.9rem;
}
.contact-detail span {
  font-size: 1rem;
  color: var(--gray-700);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--gray-100);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand .footer-logo {
  display: flex;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-contact p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  color: var(--gold);
  width: 16px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* mobile nav handled by .main-nav.active in overlay section */

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-image img {
    height: 350px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .books-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat .stat-number,
  .stat-item .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
  }
  .hero-content {
    padding: 60px 20px;
  }

  .section {
    padding: 70px 0;
  }

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

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.about-content h3 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--navy);
}

/* Gold accent line for emphasis */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-line-center {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}

/* Placeholder image style */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  text-align: center;
  padding: 40px 24px;
}
.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
}
.section-dark .feature-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,67,0.2);
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.section-dark .feature h3 {
  color: var(--white);
}
.feature p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-500);
}
.section-dark .feature p {
  color: rgba(255,255,255,0.55);
}

/* ============================================
   BOOK PLACEHOLDERS
   ============================================ */
.book-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, var(--navy) 0%, #152238 50%, var(--navy-light) 100%);
  color: var(--gold);
  border-radius: var(--radius);
}
.book-placeholder i {
  font-size: 3rem;
  opacity: 0.6;
}
.book-placeholder span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.4;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.image-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, var(--navy) 0%, #152238 60%, var(--navy-light) 100%);
  color: var(--gold);
  border-radius: var(--radius-lg);
}
.image-placeholder.tall {
  height: 500px;
}
.image-placeholder i {
  font-size: 4rem;
  opacity: 0.4;
}
.image-placeholder span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.35;
}

/* ============================================
   QUOTE BLOCK (inline section)
   ============================================ */
.section-quote {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}
.quote-block {
  max-width: 800px;
  margin: 0 auto;
}
.quote-block .quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}
.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   CTA ACTIONS (multi-button)
   ============================================ */
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-content {
  position: relative;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   BOOK META
   ============================================ */
.book-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.book-meta i {
  color: var(--gold);
  margin-right: 4px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}
.btn-full {
  width: 100%;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #c49a38;
  transform: translateY(-2px);
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.contact-layout {
  align-items: start;
}
.contact-info-panel {
  padding-top: 40px;
}
.contact-info-block h2 {
  margin-bottom: 32px;
}
.contact-detail h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--gray-500);
}
.contact-detail a:hover {
  color: var(--red);
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gray-500);
  transition: var(--transition);
}
.contact-socials a:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   STATS — compact variant
   ============================================ */
.stats-grid.compact {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   MOBILE NAV — Full-screen overlay
   ============================================ */
@media (max-width: 900px) {
  .main-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    padding: 80px 40px 40px;
    gap: 0;
    z-index: 998;
    opacity: 1;
    visibility: visible;
    animation: mobileNavFadeIn 0.3s ease;
  }
  .main-nav.active .nav-link {
    font-size: 1.4rem;
    padding: 16px 0;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    animation: mobileNavItemSlide 0.35s ease forwards;
  }
  .main-nav.active .nav-link:nth-child(1) { animation-delay: 0.05s; }
  .main-nav.active .nav-link:nth-child(2) { animation-delay: 0.1s; }
  .main-nav.active .nav-link:nth-child(3) { animation-delay: 0.15s; }
  .main-nav.active .nav-link:nth-child(4) { animation-delay: 0.2s; }
  .main-nav.active .nav-link:nth-child(5) { animation-delay: 0.25s; }
  .main-nav.active .nav-link:nth-child(6) { animation-delay: 0.3s; }
  .main-nav.active .nav-link:last-child {
    border-bottom: none;
  }
  .main-nav.active .nav-link.active {
    color: var(--gold);
  }
  .main-nav.active .mobile-cta {
    display: inline-flex;
    margin-top: 24px;
    padding: 14px 36px;
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    opacity: 0;
    animation: mobileNavItemSlide 0.35s ease forwards;
    animation-delay: 0.35s;
  }
  .main-nav.active .mobile-cta:hover {
    background: var(--red-hover);
  }
}
@keyframes mobileNavFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mobileNavItemSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-toggle.active {
  z-index: 999;
  position: relative;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
body.nav-open {
  overflow: hidden;
}

/* ============================================
   RESPONSIVE — additional
   ============================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .image-placeholder { height: 280px; }
  .image-placeholder.tall { height: 350px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* --- Book Cover Images --- */
.book-cover {
  height: 320px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.book-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.book-card:hover .book-cover img {
  transform: scale(1.05);
}
/* Book info padding */
.book-info {
  padding: 24px;
}

/* --- About Preview Image --- */
.about-preview-img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-preview-img.tall {
  border-radius: 12px;
  aspect-ratio: auto;
  max-width: 100%;
}
.split-image img {
  display: block;
  margin: 0 auto;
}

/* ============================================
   BLOG
   ============================================ */
/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: var(--navy);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-card-meta i {
  color: var(--gold);
  margin-right: 4px;
}
.blog-card .btn-sm {
  align-self: flex-start;
}

/* Article styles */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-article h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 20px;
}
.blog-article h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 16px;
}
.blog-article p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.blog-article ul,
.blog-article ol {
  margin-bottom: 24px;
  padding-left: 28px;
}
.blog-article li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.blog-article blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.blog-article blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0;
}
.blog-article strong {
  color: var(--navy);
}
.article-footer {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 40px 24px;
  border-top: 2px solid var(--gray-200);
}
.article-cta h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.article-cta p {
  color: var(--gray-500);
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HERO ENHANCEMENTS
   ============================================ */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, transparent 40%, rgba(212, 168, 67, 0.03) 100%);
  z-index: 1;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================
   5-BOOK GRID
   ============================================ */
.books-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.books-grid-5 .book-cover {
  height: 260px;
  padding: 16px;
}
.books-grid-5 .book-info {
  padding: 20px;
}
.books-grid-5 .book-info h3 {
  font-size: 1.05rem;
}
.books-grid-5 .book-info p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .books-grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 600px) {
  .books-grid-5 {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   COMMUNITY SECTION (enhanced)
   ============================================ */
.section-community {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-community::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.04);
}
.section-community::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.04);
}
.community-content {
  position: relative;
  z-index: 2;
}
.community-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--white);
}
.community-content .section-label {
  color: var(--gold);
}
.community-content .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.community-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ============================================
   BLOG GRID — HOMEPAGE (clickable cards)
   ============================================ */
.blog-grid-home {
  grid-template-columns: repeat(3, 1fr);
}
.blog-grid-home .blog-card {
  text-decoration: none;
  cursor: pointer;
}
.blog-grid-home .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.blog-card:hover .blog-read-more {
  color: var(--red-hover);
  gap: 10px;
}

@media (max-width: 900px) {
  .blog-grid-home {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BOOK DETAIL LANDING PAGES
   ============================================ */
.book-detail-layout {
  align-items: flex-start;
}
.book-detail-layout .split-image {
  position: sticky;
  top: 100px;
}
.book-meta-detail {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 2;
}
.book-meta-detail i {
  margin-right: 6px;
}
.book-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.book-card-actions .btn-sm {
  flex: 1;
  min-width: 120px;
  text-align: center;
}
@media (max-width: 600px) {
  .book-detail-layout .split-image {
    position: static;
  }
  .book-card-actions {
    flex-direction: column;
  }
  .book-card-actions .btn-sm {
    width: 100%;
  }
}

/* ============================================
   TESTIMONIALS / SOCIAL PROOF
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 28px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item i {
  font-size: 1.3rem;
  color: var(--gold);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ============================================
   LEAD MAGNET / EMAIL CAPTURE
   ============================================ */
.section-leadmagnet {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e3a 100%);
  text-align: center;
  padding: 80px 20px;
}
.leadmagnet-content {
  max-width: 680px;
  margin: 0 auto;
}
.leadmagnet-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.leadmagnet-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}
.leadmagnet-form-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.leadmagnet-input {
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  min-width: 200px;
  flex: 1;
  transition: var(--transition);
}
.leadmagnet-input::placeholder {
  color: rgba(255,255,255,0.5);
}
.leadmagnet-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.leadmagnet-btn {
  white-space: nowrap;
  padding: 14px 28px;
}
.leadmagnet-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}
@media (max-width: 600px) {
  .leadmagnet-form-row {
    flex-direction: column;
  }
  .leadmagnet-input,
  .leadmagnet-btn {
    width: 100%;
    min-width: unset;
  }
}

/* ============================================
   MEDIA / SPEAKING PAGE
   ============================================ */
.media-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.media-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.media-stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.media-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}
.media-availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.media-avail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.media-avail-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.media-avail-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.media-avail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.media-avail-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.talk-topics-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.talk-topic {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.talk-topic:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.talk-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.talk-topic h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.talk-topic p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .media-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-availability-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .media-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .talk-topic {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-group {
  margin-bottom: 48px;
}
.faq-group-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-group-title i {
  color: var(--gold);
}
.faq-item {
  border-bottom: 1px solid #e8e8e8;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 0 20px 0;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}
.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}
.faq-answer a:hover {
  color: var(--red);
}

/* ============================================
   RESPONSIVE — Media & FAQ pages
   ============================================ */
@media (max-width: 900px) {
  .media-availability-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .media-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .talk-topic {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  .talk-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .media-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .media-stat-number {
    font-size: 1.5rem;
  }
  .faq-question span {
    font-size: 0.9rem;
  }
  .faq-group-title {
    font-size: 1.1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
