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

:root {
  --blue:       #0032E1;
  --blue-dark:  #001fa8;
  --blue-deeper:#001580;
  --gold:       #FFDE59;
  --gold-dim:   #e8c93e;
  --white:      #ffffff;
  --off-white:  #f0f2ff;
  --muted:      rgba(255,255,255,0.65);
  --border:     rgba(255,222,89,0.2);

  --font-display: 'Cinzel', serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;

  --shadow-book: 0 24px 60px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  background: var(--blue-deeper);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,222,89,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.btn-gold:hover { background: var(--gold); color: #0a0a0a; }

/* ── Section Labels & Titles ────────────────────────────────── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0, 21, 128, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,222,89,0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo svg { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dim) !important; }
.nav-toggle { display: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}
.hero-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, #0032E1 0%, #001580 45%, #000d4d 100%);
  z-index: -2;
}
.hero-stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 45%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(2px 2px at 25% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 40%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 55%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 95% 50%, rgba(255,255,255,0.4) 0%, transparent 100%);
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero-tagline {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-book);
  border: 1px solid rgba(255,222,89,0.2);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,222,89,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Cred Bar ───────────────────────────────────────────────── */
.cred-bar {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.cred-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
  flex: 1;
  min-width: 160px;
}
.cred-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.cred-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
  margin-top: 0.25rem;
}
.cred-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── Books ──────────────────────────────────────────────────── */
.books {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.book-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 6rem;
}
.book-feature--reverse { grid-template-columns: 1.6fr 1fr; }
.book-feature--reverse .book-cover-wrap { order: 2; }
.book-feature--reverse .book-details { order: 1; }

.book-cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.book-cover {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-book);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.book-cover:hover { transform: translateY(-8px) rotate(-1deg); }
.book-cover-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: rgba(0, 50, 225, 0.4);
  filter: blur(20px);
  border-radius: 50%;
}
.book-series {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.book-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.book-subtitle {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.book-pullquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.5;
}
.book-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.book-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.book-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Bundle */
.bundle-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(0,50,225,0.15);
  padding: 2.5rem 3rem;
  margin-top: 2rem;
}
.bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bundle-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.bundle-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 50ch;
}

/* ── About ──────────────────────────────────────────────────── */
.about {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-photo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-book);
  border: 1px solid rgba(255,222,89,0.2);
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cred-badge {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(255,222,89,0.08);
  border: 1px solid rgba(255,222,89,0.2);
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.about-text-col p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
}
.about-text-col strong { color: var(--white); }

/* ── Speaking ───────────────────────────────────────────────── */
.speaking {
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}
.speaking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.speaking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.2s, transform 0.2s;
}
.speaking-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.speaking-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.speaking-icon svg { width: 100%; height: 100%; }
.speaking-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.speaking-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ── Podcast ────────────────────────────────────────────────── */
.podcast {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.podcast-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.podcast-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.podcast-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.podcast-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,222,89,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.podcast-link:hover { border-color: var(--gold); }
.podcast-visual { display: flex; justify-content: center; }
.podcast-card {
  background: rgba(0,50,225,0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 220px;
  text-align: center;
}
.podcast-art { margin-bottom: 1rem; }
.podcast-art svg { width: 120px; height: 120px; margin: 0 auto; border-radius: var(--radius); }
.podcast-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
}
.podcast-meta strong { color: var(--white); }
.podcast-meta span { color: rgba(255,255,255,0.5); }

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}
.contact-inner { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.contact-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.65;
}
.contact-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--white);
  transition: all 0.2s;
}
.contact-card svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-card:hover { background: rgba(255,222,89,0.08); border-color: rgba(255,222,89,0.4); color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-logo svg { height: 30px; width: auto; }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    text-align: center;
  }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-photo-wrap { order: -1; }
  .hero-photo { max-width: 280px; margin: 0 auto; }
  .hero-scroll-hint { display: none; }

  .cred-inner { gap: 0; }
  .cred-item { padding: 0.75rem 1rem; min-width: 130px; }
  .cred-divider { display: none; }

  .book-feature,
  .book-feature--reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .book-feature--reverse .book-cover-wrap,
  .book-feature--reverse .book-details { order: unset; }
  .book-cover { max-width: 200px; margin: 0 auto; }
  .book-pullquote { text-align: left; }
  .book-ctas { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .about-photo-wrap { text-align: center; }
  .about-credentials { align-items: center; }

  .podcast-inner { grid-template-columns: 1fr; }
  .podcast-visual { order: -1; }

  .bundle-inner { flex-direction: column; text-align: center; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(0,21,128,0.98);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.25rem; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
