*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #00A651;
  --green-dark: #007a3d;
  --black: #000000;
  --off-black: #0f0f0f;
  --charcoal: #1a1a1a;
  --gray: #C7C8CA;
  --mid-gray: #fff;
  --light-gray: #f0f0f0;
  --cream: #EDE8DC;
  --cream-dark: #e0d8c8;
  --white: #ffffff;
  --rust: #C1622A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ─────────────────────────────────────────
   PAGE SYSTEM
───────────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
#navbar.light {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo { width: 52px; height: 50px; object-fit: contain; transition: filter 0.3s; }
#navbar.light .nav-logo { filter: invert(1); }
.nav-wordmark { display: flex; flex-direction: column; justify-content: center; height: 50px; }
.nav-ww {
  font-family: var(--font-display);
  font-size: 23px; letter-spacing: 3px;
  color: var(--white); line-height: 1;
  transition: color 0.3s;
}
#navbar.light .nav-ww { color: var(--black); }
.nav-sub {
  font-size: 11px; letter-spacing: 2.5px; color: #666;
  text-transform: uppercase; font-weight: 400; margin-top: 4px;
  transition: color 0.3s;
}
#navbar.light .nav-sub { color: var(--black); }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li a {
  display: flex; align-items: center;
  padding: 0 14px; height: var(--nav-h);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #999; text-decoration: none; font-weight: 500;
  transition: color 0.2s; position: relative;
  border-bottom: 3px solid transparent;
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a.active { color: var(--white); border-bottom-color: var(--green); }
#navbar.light .nav-links li a { color: #666; }
#navbar.light .nav-links li a:hover { color: var(--black); }
#navbar.light .nav-links li a.active { color: var(--black); border-bottom-color: var(--green); }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 22px !important; height: auto !important;
  font-size: 11px !important; letter-spacing: 2px !important;
  font-weight: 700 !important; border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: 0.3s; }
#navbar.light .hamburger span { background: var(--black); }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97); z-index: 999;
  flex-direction: column; padding: 48px 32px;
  gap: 0;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  display: block; padding: 18px 0;
  font-family: var(--font-display);
  font-size: 36px; letter-spacing: 3px; color: var(--white);
  text-decoration: none; border-bottom: 1px solid #1a1a1a;
  transition: color 0.2s;
}
.mobile-drawer a:hover, .mobile-drawer a.active { color: var(--green); }
.mobile-drawer-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.mobile-drawer-ctas .btn { justify-content: center; font-size: 13px; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  font-family: var(--font-body); transition: all 0.2s;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,166,81,0.3); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #222; transform: translateY(-1px); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline-dark { border: 1px solid #ccc; color: var(--black); background: transparent; }
.btn-outline-dark:hover { border-color: var(--black); }
.btn-outline-rust { border: 1px solid var(--rust); color: var(--rust); background: transparent; }
.btn-outline-rust:hover { background: var(--rust); color: var(--white); }

/* ─────────────────────────────────────────
   SHARED SECTION ATOMS
───────────────────────────────────────── */
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green); font-weight: 700; margin-bottom: 16px;
}
.overline::before { content: ''; display: block; width: 24px; height: 2px; background: var(--green); }
.overline.light::before { background: rgba(255,255,255,0.5); }
.overline.light { color: rgba(255,255,255,0.7); }

h1.display, h2.display, h3.display {
  font-family: var(--font-display);
  letter-spacing: 2px; line-height: 0.95;
}
.serif-heading {
  font-family: var(--font-serif);
  line-height: 1.15; letter-spacing: -0.3px;
}
.body-lg { font-size: 18px; line-height: 1.85; color: #fff; font-weight: 300; }
.body-md { font-size: 16px; line-height: 1.8; color: #fff; font-weight: 300; }

.section-pad { padding: 110px 56px; }
.section-pad-sm { padding: 80px 56px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-wide { max-width: 1280px; margin: 0 auto; }

/* reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */

/* Hero */
.home-hero {
  min-height: 100vh;
  background: var(--black);
  display: grid; grid-template-columns: 1fr 480px;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,166,81,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.home-hero-text-bg {
  position: absolute; bottom: -60px; right: 0;
  font-family: var(--font-display);
  font-size: 22vw; color: rgba(255,255,255,0.02);
  letter-spacing: -4px; pointer-events: none; white-space: nowrap;
  line-height: 1;
}
.home-hero-left {
  padding: 80px 56px; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 2;
}
.home-hero-left .overline { margin-bottom: 28px; }
.home-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 130px);
  color: var(--white); line-height: 0.9;
  letter-spacing: 3px; margin-bottom: 32px;
}
.home-hero-title span { color: var(--green); }
.home-hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #fff; line-height: 1.8; max-width: 480px;
  margin-bottom: 20px; font-weight: 300;
}
.home-hero-copy {
  font-size: 15px; color: #fff; line-height: 1.8;
  max-width: 460px; margin-bottom: 44px; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #050505;
  border-left: 1px solid #111;
}
.home-hero-right::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, transparent, var(--green), transparent);
}
.hero-book-img {
  width: 260px; object-fit: contain;
  filter: drop-shadow(40px 30px 60px rgba(0,0,0,0.9));
  animation: bookFloat 7s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes bookFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}

/* Ticker */
.ticker { background: var(--green); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tickerMove 28s linear infinite; }
.ticker-item { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--white); font-weight: 700; padding: 0 36px; }
.ticker-sep { color: rgba(255,255,255,0.4); }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Pillars */
.pillars-section { background: var(--white); }
.pillars-header { text-align: center; margin-bottom: 64px; }
.pillars-header h2 { font-size: clamp(36px, 4vw, 52px); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e8e8e8; }
.pillar-card {
  background: var(--white); padding: 52px 40px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: background 0.3s;
}
.pillar-card:hover { background: #fafafa; }
.pillar-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--green);
  transition: width 0.4s;
}
.pillar-card:hover::after { width: 100%; }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.pillar-icon svg { width: 24px; height: 24px; fill: var(--white); }
.pillar-num { font-size: 10px; letter-spacing: 3px; color: #bbb; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; }
.pillar-name { font-family: var(--font-display); font-size: 32px; letter-spacing: 2px; margin-bottom: 6px; }
.pillar-accent { width: 28px; height: 2px; background: var(--green); margin-bottom: 16px; }
.pillar-desc { font-size: 16px; color: #666; line-height: 1.7; font-weight: 300; }
.pillar-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); font-weight: 700; text-decoration: none; }
.pillar-link:hover { gap: 10px; }

/* About preview */
.about-preview { background: var(--cream); }
.about-preview-inner { display: grid; grid-template-columns: 440px 1fr; gap: 80px; align-items: center; }
.steve-img-wrap { position: relative; }
.steve-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: center top; display: block;
}
.steve-img-frame {
  position: relative; overflow: hidden;
  box-shadow: 24px 24px 0 var(--cream-dark);
}
.steve-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--green); padding: 14px 24px;
  font-size: 10px; letter-spacing: 3px; color: var(--white);
  font-weight: 700; text-transform: uppercase;
}
.about-preview-content .overline { color: var(--rust); }
.about-preview-content .overline::before { background: var(--rust); }
.about-preview-content h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; }
.about-preview-content .body-lg { color: #5a4a3e; margin-bottom: 32px; }

/* Book feature */
.book-feature { background: var(--black); }
.book-feature-inner { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; }
.book-cover-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.book-cover-img {
  width: 300px; object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
  transition: transform 0.4s ease;
}
.book-cover-img:hover { transform: scale(1.03) rotate(1deg); }
.book-feature-content .overline.light { color: #aaa; }
.book-feature-content h2 { font-family: var(--font-display); font-size: clamp(52px, 6vw, 86px); color: var(--white); letter-spacing: 3px; line-height: 0.95; margin-bottom: 12px; }
.book-feature-content h2 span { color: var(--rust); }
.book-sub { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 28px; }
.book-feature-content .body-md { color: #666; margin-bottom: 36px; }
.book-feature-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Speaking preview */
.speaking-preview { background: var(--white); }
.speaking-preview-header { text-align: center; margin-bottom: 64px; }
.speaking-preview-header h2 { font-size: clamp(32px, 4vw, 48px); }
.speaking-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #e8e8e8; }
.speaking-card {
  background: var(--white); padding: 36px 28px;
  transition: background 0.2s; cursor: default;
  position: relative;
}
.speaking-card:hover { background: #f8f8f8; }
.sp-icon {
  width: 44px; height: 44px; border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--green); font-size: 20px;
}
.sp-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; margin-bottom: 12px; }
.sp-desc { font-size: 15px; color: #666; line-height: 1.7; font-weight: 300; }
.speaking-cta { text-align: center; margin-top: 52px; }

/* Quote panel */
.quote-panel {
  background: var(--green); padding: 100px 56px;
  position: relative; overflow: hidden;
}
.quote-panel::before {
  content: '"'; position: absolute; top: -80px; left: 20px;
  font-family: var(--font-display); font-size: 500px;
  color: rgba(0,0,0,0.07); line-height: 1; pointer-events: none;
}
.quote-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  color: var(--white); line-height: 1.5;
  font-style: italic; margin-bottom: 28px;
}
.quote-attr { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; }

/* Final CTA */
.final-cta-section {
  background: var(--off-black); padding: 110px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-section::before {
  content: 'WALK YOUR WALK';
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 100px);
  color: rgba(255,255,255,0.02);
  letter-spacing: 4px; white-space: nowrap; pointer-events: none;
}
.final-cta-section .overline { justify-content: center; }
.final-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white); letter-spacing: 3px; margin-bottom: 20px;
}
.final-cta-section .body-lg { color: #fff; max-width: 560px; margin: 0 auto 44px; text-align: center; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  background: var(--green); color: var(--white);
  padding: 64px 56px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-logo img { width: 32px; filter: brightness(0) invert(1); }
.footer-brand-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 3px; color: var(--white); }
.footer-tagline { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.7); max-width: 300px; }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 15px; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 90vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; opacity: 0.35;
}
.page-hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
.page-hero-inner {
  position: relative; z-index: 2;
  display: block;
  padding-bottom: 80px;
}
.page-hero h1 { font-size: clamp(64px, 9vw, 130px); margin-bottom: 20px; color: var(--white); }
.page-hero .body-lg { color: rgba(255,255,255,0.65); max-width: 600px; }
.page-hero .overline { color: var(--green) !important; }
.page-hero .overline::before { background: var(--green) !important; }

/* Identity cards */
.identity-section { background: var(--white); }
.identity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e8e8e8; }
.identity-card { background: var(--white); padding: 44px 36px; }
.identity-card-num { font-family: var(--font-display); font-size: 60px; color: #f0f0f0; line-height: 1; margin-bottom: 8px; }
.identity-card-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 6px; }
.identity-accent { width: 28px; height: 2px; background: var(--green); margin-bottom: 16px; }
.identity-desc { font-size: 16px; color: #666; line-height: 1.7; font-weight: 300; }

/* Timeline */
.timeline-section { background: var(--off-black); }
.timeline-header { text-align: center; margin-bottom: 80px; }
.timeline-header h2 { color: var(--white); font-size: clamp(32px, 4vw, 52px); }
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), #1a1a1a);
}
.timeline-item { position: relative; margin-bottom: 56px; }
.timeline-item::before {
  content: ''; position: absolute; left: -46px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--off-black);
  box-shadow: 0 0 0 3px rgba(0,166,81,0.3);
}
.timeline-year { font-size: 10px; letter-spacing: 3px; color: var(--green); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.timeline-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; color: var(--white); margin-bottom: 10px; }
.timeline-desc { font-size: 16px; color: #666; line-height: 1.7; font-weight: 300; }

/* Accordion */
.accordion-section { background: var(--white); }
.accordion-header { text-align: center; margin-bottom: 64px; }
.accordion-header h2 { font-size: clamp(32px, 4vw, 48px); }
.accordion-list { max-width: 720px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid #e8e8e8; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; background: none; border: none;
  font-family: var(--font-body); text-align: left;
}
.accordion-trigger-name { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; color: var(--black); }
.accordion-icon {
  width: 28px; height: 28px; border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; flex-shrink: 0;
  font-size: 18px; color: #999; line-height: 1;
}
.accordion-item.open .accordion-icon { background: var(--green); border-color: var(--green); color: var(--white); }
.accordion-body { display: none; padding-bottom: 24px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 16px; color: #666; line-height: 1.75; font-weight: 300; max-width: 560px; }

/* About quote */
.about-quote { background: var(--cream); padding: 100px 56px; text-align: center; }
.about-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--black); line-height: 1.5; font-style: italic;
  max-width: 780px; margin: 0 auto 20px;
}
.about-quote cite { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #999; }

/* About CTA */
.about-cta { background: var(--black); padding: 100px 56px; text-align: center; }
.about-cta h2 { font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px); color: var(--white); letter-spacing: 3px; margin-bottom: 20px; }
.about-cta p { font-size: 18px; color: #fff; margin-bottom: 40px; }

/* ─────────────────────────────────────────
   BOOK PAGE
───────────────────────────────────────── */
.book-hero {
  background: var(--cream); padding-top: var(--nav-h);
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.book-hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c1622a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.book-hero-inner { display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; position: relative; z-index: 2; }
.book-hero-content .overline { color: var(--rust); }
.book-hero-content .overline::before { background: var(--rust); }
.book-hero-content h1 { font-family: var(--font-display); font-size: clamp(64px, 8vw, 120px); letter-spacing: 3px; line-height: 0.9; margin-bottom: 16px; color: var(--black); }
.book-hero-content h1 span { color: var(--rust); }
.book-hero-sub { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--rust); margin-bottom: 24px; }
.book-hero-content .body-lg { color: #5a4a3e; margin-bottom: 36px; }
.book-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.book-hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.book-hero-img { width: 340px; object-fit: contain; filter: drop-shadow(20px 20px 40px rgba(0,0,0,0.3)); transition: transform 0.4s; }
.book-hero-img:hover { transform: scale(1.03) rotate(-1deg); }

/* Book summary */
.book-summary { background: var(--white); }
.book-summary-header { text-align: center; margin-bottom: 64px; }
.book-summary-header h2 { font-size: clamp(28px, 4vw, 44px); max-width: 640px; margin: 12px auto 0; }
.book-summary-header .body-md { max-width: 600px; margin: 20px auto 0; font-style: italic; color: #666; font-size: 17px; }
.book-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #eee; margin-top: 56px; }
.book-theme-card { background: var(--white); padding: 40px 32px; }
.btc-num { font-family: var(--font-display); font-size: 56px; color: #f0f0f0; line-height: 1; margin-bottom: 4px; }
.btc-title { font-family: var(--font-display); font-size: 26px; letter-spacing: 2px; margin-bottom: 6px; }
.btc-accent { width: 28px; height: 2px; background: var(--green); margin-bottom: 16px; }
.btc-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.btc-items li { font-size: 15px; color: #666; display: flex; align-items: center; gap: 10px; }
.btc-items li::before { content: '▸'; color: var(--green); font-size: 12px; flex-shrink: 0; }

/* Theme grid */
.theme-grid-section { background: var(--black); }
.theme-grid-header { text-align: center; margin-bottom: 56px; }
.theme-grid-header h2 { color: var(--white); font-size: clamp(32px, 4vw, 52px); }
.theme-grid-header p { color: #fff; font-size: 16px; margin-top: 14px; }
.theme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #111; }
.theme-tile {
  background: var(--charcoal); padding: 36px 28px;
  position: relative; cursor: default;
  transition: background 0.3s; overflow: hidden;
}
.theme-tile:hover { background: #111; }
.theme-tile::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width 0.35s;
}
.theme-tile:hover::after { width: 100%; }
.tt-num { font-size: 9px; letter-spacing: 3px; color: var(--green); font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.tt-title { font-family: var(--font-display); font-size: 22px; color: var(--white); letter-spacing: 1px; margin-bottom: 10px; line-height: 1.1; }
.tt-desc { font-size: 14px; color: #fff; line-height: 1.6; font-weight: 300; }

/* Chapter list */
.chapter-list-section { background: var(--white); }
.chapter-list-header { text-align: center; margin-bottom: 64px; }
.chapter-list-header h2 { font-size: clamp(32px, 4vw, 48px); }
.chapter-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.chapter-group-title {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green); font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--green);
}
.chapter-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.chapter-list-item {
  padding: 16px 0; border-bottom: 1px solid #f0f0f0;
  display: grid; grid-template-columns: 36px 1fr;
  gap: 16px; align-items: start;
}
.ch-num { font-family: var(--font-display); font-size: 20px; color: #ddd; letter-spacing: 1px; line-height: 1.1; }
.ch-info {}
.ch-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ch-takeaway { font-size: 13px; color: #888; line-height: 1.6; font-weight: 300; }

/* Book CTA */
.book-cta-section { background: var(--cream); text-align: center; padding: 100px 56px; }
.book-cta-section h2 { font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px); letter-spacing: 3px; margin-bottom: 20px; }
.book-cta-section p { font-size: 18px; color: #5a4a3e; margin-bottom: 40px; }

/* ─────────────────────────────────────────
   SPEAKING PAGE
───────────────────────────────────────── */
.speaking-hero {
  background: var(--black); padding-top: var(--nav-h);
  min-height: 80vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.speaking-hero-video {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.speaking-hero-video video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  object-fit: cover;
  opacity: 0.22;
}
.speaking-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.02) 50%, rgba(0,0,0,0.5) 100%),
              radial-gradient(ellipse at 30% 50%, rgba(0,166,81,0.05) 0%, transparent 40%);
}
.speaking-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.speaking-hero h1 { font-family: var(--font-display); font-size: clamp(56px, 7vw, 110px); color: var(--white); letter-spacing: 3px; line-height: 0.92; margin-bottom: 28px; }
.speaking-hero h1 span { color: var(--green); }
.speaking-hero-sub { font-size: 18px; color: #777; line-height: 1.7; max-width: 560px; margin-bottom: 40px; font-weight: 300; }
.speaking-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Topics */
.topics-section { background: var(--white); }
.topics-header { text-align: center; margin-bottom: 64px; }
.topics-header h2 { font-size: clamp(32px, 4vw, 48px); }
.topics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: #e8e8e8; }
.topic-card { background: var(--white); padding: 48px 44px; position: relative; overflow: hidden; }
.topic-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--green); transition: height 0.4s; }
.topic-card:hover::before { height: 100%; }
.topic-num { font-family: var(--font-display); font-size: 64px; color: #f0f0f0; line-height: 1; margin-bottom: 4px; }
.topic-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 6px; }
.topic-accent { width: 28px; height: 2px; background: var(--green); margin-bottom: 16px; }
.topic-desc { font-size: 16px; color: #666; line-height: 1.7; font-weight: 300; }
.topic-for { margin-top: 16px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #aaa; }

/* Audience */
.audience-section { background: var(--off-black); }
.audience-header { text-align: center; margin-bottom: 56px; }
.audience-header h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); }
.audience-header p { color: #fff; font-size: 16px; margin-top: 12px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-item {
  border: 1px solid #1a1a1a; padding: 24px 28px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s;
}
.audience-item:hover { border-color: var(--green); }
.audience-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.audience-item span { font-size: 15px; color: #888; font-weight: 300; }

/* Formats */
.formats-section { background: var(--white); }
.formats-header { text-align: center; margin-bottom: 64px; }
.formats-header h2 { font-size: clamp(28px, 4vw, 44px); }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.format-card {
  border: 1px solid #e8e8e8; padding: 44px 36px;
  position: relative; transition: border-color 0.2s, box-shadow 0.2s;
}
.format-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(0,166,81,0.08); }
.format-tag {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; font-weight: 700; margin-bottom: 20px;
}
.format-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.format-duration { font-size: 12px; letter-spacing: 1px; color: #aaa; margin-bottom: 14px; }
.format-desc { font-size: 16px; color: #666; line-height: 1.7; font-weight: 300; }
.format-best { margin-top: 16px; font-size: 12px; color: var(--green); font-weight: 600; }

/* Session flow */
.flow-section { background: var(--cream); }
.flow-header { text-align: center; margin-bottom: 64px; }
.flow-header h2 { font-size: clamp(28px, 4vw, 44px); }
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: #d8d0c0; }
.flow-step { background: var(--cream); padding: 40px 28px; text-align: center; }
.flow-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-family: var(--font-display); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; letter-spacing: 1px;
}
.flow-step-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; margin-bottom: 10px; }
.flow-step-desc { font-size: 15px; color: #6a5a4e; line-height: 1.65; font-weight: 300; }

/* Contact form */
.contact-section { background: var(--black); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-left h2 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); color: var(--white); letter-spacing: 3px; margin-bottom: 20px; }
.contact-left p { font-size: 17px; color: #fff; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.contact-details-list { display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-detail-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.contact-detail a { font-size: 15px; color: #666; text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--green); }
.speaking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea {
  background: #0f0f0f; border: 1px solid #1a1a1a; color: var(--white);
  padding: 13px 16px; font-size: 16px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s; resize: none; border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #2a2a2a; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group select { cursor: pointer; color: #666; }
.form-group select option { background: #0f0f0f; color: var(--white); }
.form-success { display: none; background: rgba(0,166,81,0.1); border: 1px solid rgba(0,166,81,0.3); color: var(--green); padding: 14px 20px; font-size: 13px; letter-spacing: 1px; text-align: center; margin-top: 4px; }

/* Speaking final CTA */
.speaking-final { background: var(--off-black); padding: 100px 56px; text-align: center; }
.speaking-final h2 { font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px); color: var(--white); letter-spacing: 3px; margin-bottom: 36px; }

/* ─────────────────────────────────────────
   VIDEO MODAL
───────────────────────────────────────── */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner { position: relative; width: 90%; max-width: 900px; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
  letter-spacing: 1px; font-family: var(--font-body);
}
.video-modal iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section-pad { padding: 72px 24px; }
  .section-pad-sm { padding: 56px 24px; }

  /* Home */
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-right { display: none; }
  .home-hero-left { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-preview-inner { grid-template-columns: 1fr; }
  .book-feature-inner { grid-template-columns: 1fr; }
  .book-feature-inner .book-cover-wrap { order: -1; }
  .speaking-cards { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .identity-grid { grid-template-columns: 1fr; }

  /* Book */
  .book-hero-inner { grid-template-columns: 1fr; }
  .book-hero-img { width: 260px; }
  .book-themes { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .chapter-groups { grid-template-columns: 1fr; }

  /* Speaking */
  .topics-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 48px 24px 28px; }

  /* Quote */
  .quote-panel { padding: 72px 24px; }
  .about-quote { padding: 72px 24px; }
  .final-cta-section { padding: 72px 24px; }
}

@media (max-width: 560px) {
  .speaking-cards { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .hero-btns, .book-hero-btns, .speaking-btns, .book-feature-btns, .final-cta-btns { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ─────────────────────────────────────────
   UTILITY OVERRIDES
   (extracted from inline style= attributes)
───────────────────────────────────────── */

/* Overline centered — replaces style="justify-content:center;" on .overline elements */
.overline-centered { justify-content: center; }

/* Overline rust color — replaces style="justify-content:center;color:var(--rust);" */
.overline-rust { justify-content: center; color: var(--rust); }
.overline-rust::before { background: var(--rust); }

/* Ghost/transparent btn variant — replaces style="border-color:transparent;color:#fff;" on btn-outline-white */
.btn-ghost-white { border-color: transparent; color: var(--white); }

/* Container with stacking context — replaces style="position:relative;z-index:2;" */
.container-z2 { position: relative; z-index: 2; }

/* Container with stacking context and centered text */
.container-z2-centered { position: relative; z-index: 2; text-align: center; }

/* Section with off-black background — for standalone section usage */
.bg-off-black { background: var(--off-black); }

/* Identity grid with top margin */
.identity-grid-spaced { margin-top: 32px; }

/* Chapter group title with top margin — used for second and third groups */
.chapter-group-title-spaced { margin-top: 36px; }

/* Serif heading size variants — replaces repeated font-size clamp patterns */
.serif-heading-48 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; }
.serif-heading-44 { font-size: clamp(28px, 4vw, 44px); }

/* Display heading size variants — replaces repeated clamp patterns */
.display-heading-80 { font-size: clamp(42px, 6vw, 80px); color: var(--white); letter-spacing: 3px; margin-bottom: 20px; }
.display-heading-64 { color: var(--white); font-size: clamp(36px, 5vw, 64px); }
.display-heading-52 { color: var(--white); font-size: clamp(32px, 4vw, 52px); }
.display-heading-52-dark { font-size: clamp(28px, 4vw, 52px); }

/* Body text color/spacing variants */
.body-cream-mb20 { color: #5a4a3e; margin-bottom: 20px; }
.body-warm-mb36 { color: #7a6a5e; margin-bottom: 36px; }
.body-cream-mb36 { color: #5a4a3e; margin-bottom: 36px; }
.body-white-mb36 { color: var(--white); margin-bottom: 36px; }
.body-white-lg { color: var(--white); max-width: 560px; margin: 0 auto 44px; text-align: center; font-size: 18px; }
.body-white-cta { color: var(--white); font-size: 18px; margin-bottom: 40px; }

/* Speaking preview description — max-width centered */
.speaking-preview-desc { max-width: 560px; margin: 16px auto 0; text-align: center; }

/* Theme tile without right border — last tile in row */
.theme-tile-no-border-right { border-right: none; }

/* Video section container */
.video-section-header { text-align: center; margin-bottom: 48px; }
.video-section-caption { color: var(--white); font-size: 17px; margin-top: 14px; }
.video-caption-label { text-align: center; margin-top: 20px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #333; }

/* Video embed wrapper */
.video-embed-wrap { position: relative; aspect-ratio: 16/9; background: #0a0a0a; box-shadow: 0 40px 80px rgba(0,0,0,0.8); }

/* Iframe fill — fills parent absolutely */
.iframe-fill { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Book CTA button group */
.btn-group-centered { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Submit button centered */
.btn-submit-centered { justify-content: center; }

/* Your Story page */
.story-section { background: var(--white); }
.story-form-header { text-align: center; margin-bottom: 56px; }
.story-heading { color: var(--black) !important; margin: 12px auto 0; }
.story-intro { max-width: 600px; margin: 20px auto 0; font-size: 17px; color: #555; line-height: 1.8; }
.story-form-wrap { max-width: 680px; margin: 0 auto; }
.story-form { background: #f8f8f6; border: 1px solid #e8e8e4; padding: 48px; }
.story-field label { color: var(--black) !important; }
.story-field input, .story-field select, .story-field textarea { background: #fff !important; border-bottom-color: #ccc !important; color: var(--black) !important; }
.story-field input::placeholder, .story-field textarea::placeholder { color: #aaa !important; }
.story-field input:focus, .story-field select:focus, .story-field textarea:focus { border-color: var(--green) !important; }
.story-field select { color: #555 !important; }
.story-field select option { background: #fff; color: var(--black); }
.field-optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; color: #999; }
.file-input { width: 100%; padding: 12px 0; font-size: 14px; color: #555; background: transparent; border: none; border-bottom: 1px solid #ccc; cursor: pointer; }
.file-input-light::-webkit-file-upload-button { background: var(--green); color: #fff; border: none; padding: 8px 16px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; cursor: pointer; margin-right: 14px; }
.story-permission { margin-top: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: #aaa; font-weight: 400; text-transform: none; letter-spacing: 0; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-label-dark { color: #666; }
.story-disclaimer { margin-top: 24px; font-size: 13px; color: #999; text-align: center; line-height: 1.7; }
.overline-dark { color: var(--black); }
.overline-dark::before { background: var(--black); }
@media (max-width: 600px) { .story-form { padding: 28px 20px; } }

.nav-audio {
  height: auto !important;
  padding: 8px 12px !important;
  margin-left: 6px;
  border: 1px solid rgba(193,98,42,0.75);
  color: #e8c4a8 !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid rgba(193,98,42,0.75) !important;
}
.nav-audio:hover { color: var(--white) !important; border-color: var(--rust) !important; }
#navbar.light .nav-audio {
  color: var(--rust) !important;
  border-color: var(--rust) !important;
}
#navbar.light .nav-audio:hover { color: var(--black) !important; }
