/* ============================================
   DR. MARK CHIRONNA — REDESIGN
   Premium editorial aesthetic with warm authority
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* MCM Brand — steel blue + gold */
  --navy: #4a5e72;
  --navy-light: #6b8ba4;
  --gold: #d4a843;
  --gold-light: #e8cc7a;
  --gold-dark: #b8922e;
  --cream: #f5f7f9;
  --cream-dark: #e8ecf0;
  --white: #ffffff;
  --slate: #5a6a78;
  --slate-light: #8a9aaa;
  --text: #2d3e4e;
  --text-muted: #6b7d8d;
  --border: #d8dfe6;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================
   SCROLLING MARQUEE BANNER
   ============================================ */
.marquee-banner {
  background: var(--navy);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.marquee-dot {
  color: var(--gold);
  font-size: 0.5rem;
  vertical-align: middle;
  margin: 0 24px;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* --- Section gold dividers --- */
.watch,
.books,
.coaching,
.events,
.about {
  position: relative;
}

.watch::before,
.books::before,
.coaching::before,
.events::before,
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

/* --- Typography Helpers --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-sm { padding: 10px 24px; font-size: 0.8125rem; }
.full-width { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(74, 94, 114, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text-full {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

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

/* Dropdown container */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover { color: var(--gold); }
.nav-dropdown-trigger svg { transition: transform 0.3s var(--ease); opacity: 0.7; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-trigger { color: var(--gold); }

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown.open .nav-dropdown-trigger::after { width: 100%; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  min-width: 320px;
  background: rgba(34, 44, 55, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(212, 168, 67, 0.08);
}

.nav-dropdown-menu a::after { display: none !important; }

.dd-title {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.dd-sub {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-dropdown-menu a:hover .dd-title { color: var(--gold); }

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(58, 78, 96, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #3a4e60 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 40px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-title-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* Hero Portrait */
.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero-portrait-frame {
  width: 380px;
  height: 460px;
  background: linear-gradient(145deg, var(--navy-light), rgba(212, 168, 67, 0.15));
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.portrait-initials {
  width: 120px;
  height: 120px;
  background: rgba(212, 168, 67, 0.15);
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.portrait-caption {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-1 { bottom: 40px; left: -30px; }
.stat-2 { top: 40px; right: -30px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-image-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: block;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--cream-dark), var(--cream));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.about-img-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--slate-light);
  font-style: italic;
}

.about-credential-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.about-credential-badge strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
}

.about-credential-badge small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-text {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-credentials {
  display: flex;
  gap: 24px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.credential {
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
}

.credential-degree {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.credential-school {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.pillar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.pillar-card.featured h3 { color: var(--white); }
.pillar-card.featured p { color: rgba(255,255,255,0.7); }
.pillar-card.featured .pillar-icon { color: var(--gold); }
.pillar-card.featured .pillar-link { color: var(--gold); }
.pillar-card.featured::before { background: var(--gold); }

.pillar-icon {
  color: var(--navy);
  margin-bottom: 28px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pillar-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color 0.2s;
}
.pillar-link:hover { color: var(--gold); }

/* ============================================
   BOOKS
   ============================================ */
.books {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.books-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.book-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.book-cover {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: var(--cream-dark);
}

.book-cover-img {
  max-height: 100%;
  width: auto;
  border-radius: 4px;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.4s var(--ease);
}

.book-card:hover .book-cover-img {
  transform: rotate(-2deg) scale(1.03);
}

.book-cover-inner {
  width: 160px;
  height: 220px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.4s var(--ease);
}

.book-card:hover .book-cover-inner { transform: rotate(-2deg) scale(1.03); }

.book-cover-inner.accent {
  background: linear-gradient(145deg, var(--gold-dark), var(--gold));
}

.book-cover-inner.dark {
  background: linear-gradient(145deg, #0d0d24, var(--navy));
}

.book-title-placeholder {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  padding: 20px;
}

.book-info {
  padding: 28px;
}

.book-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.book-info p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}

.book-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ============================================
   COACHING
   ============================================ */
.coaching {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.coaching-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.coaching-text {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 36px;
}

.coaching-programs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.program {
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.program:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.1);
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.program h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.program-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
}

.program p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Coaching visual */
.coaching-visual { position: relative; }

.coaching-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cstack-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.cstack-card:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

.cstack-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.cstack-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.cstack-card p {
  font-size: 0.9rem;
  color: var(--slate);
}

.c1 { transform: translateX(0); }
.c2 { transform: translateX(20px); }
.c3 { transform: translateX(40px); }

/* ============================================
   WATCH
   ============================================ */
.watch {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* Watch header with subscribe button */
.watch-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.watch-subtitle-left {
  font-size: 1rem;
  color: var(--slate);
  max-width: 500px;
  margin-top: 4px;
}

.btn-yt-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #ff0000;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  border: none;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.btn-yt-subscribe:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,0,0.2);
}

/* YouTube grid */
.yt-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.yt-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
}

.yt-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.yt-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}

.yt-placeholder-overlay p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.yt-featured-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.yt-badge {
  display: inline-block;
  background: #ff0000;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  flex-shrink: 0;
}

.yt-featured-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sidebar recent videos */
.yt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yt-sidebar-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 4px;
}

.yt-thumb-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.yt-thumb-card:hover {
  border-color: #ff0000;
  transform: translateX(4px);
}

.yt-thumb-img {
  width: 120px;
  min-height: 68px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
}

.yt-thumb-img::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 10px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0.7;
}

.yt-thumb-info h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.yt-thumb-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* On The Living Edge offer card */
.edge-offer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  margin-top: 32px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 18px;
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.edge-offer:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.6);
  box-shadow: 0 20px 48px rgba(45, 62, 78, 0.25);
}

.edge-offer::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.edge-offer-accent {
  width: 4px;
  height: 72px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  border-radius: 4px;
  flex-shrink: 0;
}

.edge-offer-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.edge-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.edge-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.edge-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
}

.edge-offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

.edge-offer:hover .edge-offer-cta {
  background: var(--gold-light);
}

.edge-offer:hover .edge-offer-cta svg {
  transform: translateX(4px);
}

.edge-offer-cta svg {
  transition: transform 0.3s var(--ease);
}

/* Integration note */
.yt-integration-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px dashed var(--border);
}

.yt-note-icon {
  font-size: 1.2rem;
}

.yt-integration-note p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.yt-integration-note strong {
  color: var(--text);
}

/* ============================================
   EVENTS
   ============================================ */
.events {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.event-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.event-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.event-date {
  text-align: center;
  min-width: 64px;
}

.event-month {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.event-details { flex: 1; }

.event-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.event-details h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.event-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  background: var(--cream);
}

.contact-hero {
  padding: 180px 0 60px;
  background: var(--cream);
  text-align: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin: 16px 0 24px;
}

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

.contact-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Tabs */
.contact-form-section {
  padding: 40px 0 140px;
}

.contact-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--slate);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-btn.active .tab-icon {
  color: var(--gold);
}

.tab-icon {
  color: var(--slate-light);
  font-size: 0.7rem;
  transition: color 0.3s var(--ease);
}

.tab-btn.active .tab-icon,
.tab-btn:hover .tab-icon { color: var(--gold); }

/* Form container */
.contact-form {
  display: none;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px clamp(24px, 4vw, 60px);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(45, 62, 78, 0.06);
}

.contact-form.active { display: block; }

.form-row {
  margin-bottom: 20px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.req {
  color: var(--gold-dark);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: all 0.25s var(--ease);
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
  line-height: 1.6;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='%2374a'><path d='M1 1.5L6 6.5L11 1.5' stroke='%234a5e72' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--slate-light);
}

/* Section divider inside form */
.form-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 24px;
}

.form-section-divider::before,
.form-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-section-divider span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .form-row.two-col { grid-template-columns: 1fr; gap: 16px; }
  .contact-tabs { flex-direction: column; align-items: stretch; }
  .tab-btn { justify-content: center; }
}

/* ============================================
   SPEAKING / BOOKING
   ============================================ */
.booking {
  padding: 0;
}

.booking-inner {
  background: linear-gradient(135deg, #3a4e60 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.booking-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.booking-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.booking-topics {
  margin-bottom: 44px;
}

.booking-topics-label,
.booking-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  max-width: 560px;
}

.topic-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.topic-list li::before {
  content: '\2756'; /* diamond */
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1.7;
}

/* Sidebar card */
.booking-sidebar {
  position: relative;
}

.booking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  backdrop-filter: blur(6px);
}

.format-row {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.format-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.format-row:first-of-type { padding-top: 0; }

.format-dot {
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1.7;
  flex-shrink: 0;
}

.format-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.format-row small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.newsletter-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border: 1px solid var(--border);
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.newsletter-content p {
  font-size: 1rem;
  color: var(--slate);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-subscribe {
  flex-shrink: 0;
  padding: 16px 36px;
  font-size: 0.95rem;
}

.newsletter-form input {
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
  width: 300px;
  transition: border-color 0.3s;
  outline: none;
}

.newsletter-form input:focus { border-color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

/* --- Extra button variant --- */
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* --- Book subtitle --- */
.book-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-style: italic;
}

/* ============================================
   SUBSTACK / DEEP WELLS
   ============================================ */
.substack {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.substack::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208, 187, 143, 0.06), transparent 70%);
  border-radius: 50%;
}

.substack-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.substack-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}

.substack-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.substack-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.substack-post {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.substack-post:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(208, 187, 143, 0.2);
}

.post-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.substack-post h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* Substack mockup */
.substack-mockup {
  background: var(--navy-light);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
  animation: substackFloat 6s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.substack-mockup:hover {
  animation-play-state: paused;
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(212, 168, 67, 0.15);
}

@keyframes substackFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(-0.5deg); }
}

.mockup-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-logo {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
}

.mockup-header strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.mockup-header small {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.mockup-body {
  padding: 28px 24px 32px;
}

.mockup-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.mockup-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.mockup-excerpt {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mockup-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   UNIFIED YOUTUBE SECTION
   ============================================ */
.youtube-broadcast {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.broadcast-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px 44px;
  background: #ff0000;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.broadcast-inner::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.broadcast-icon {
  flex-shrink: 0;
}

.broadcast-content { flex: 1; position: relative; z-index: 1; }

.broadcast-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.broadcast-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.broadcast-content p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.btn-yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: #ff0000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  border: none;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

.btn-yt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Scroll reveal — disabled for preview */

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-portrait { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .coaching-grid { grid-template-columns: 1fr; }
  .substack-grid { grid-template-columns: 1fr; }
  .substack-visual { display: none; }
  .yt-grid { grid-template-columns: 1fr; }
  .watch-header { flex-direction: column; align-items: flex-start; }
  .edge-offer { grid-template-columns: 1fr; gap: 20px; padding: 28px; text-align: left; }
  .edge-offer-accent { width: 48px; height: 3px; }
  .edge-offer-cta { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-dropdown-trigger { display: none; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
  }
  .nav-dropdown-menu a { padding: 10px 18px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-toggle { display: flex; }
  .books-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .books-grid { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .topic-list { grid-template-columns: 1fr; }
  .newsletter-card { flex-direction: column; padding: 40px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .c2, .c3 { transform: translateX(0); }
}
