/* =========================================
   DR. DANISHA KEATING — GLOBAL DESIGN SYSTEM
   ========================================= */

:root {
  --navy: #0a1628;
  --navy-2: #0d1d33;
  --navy-3: #112440;
  --teal: #00b4b4;
  --teal-bright: #14d3d3;
  --teal-dark: #008a8a;
  --gold: #c9a84c;
  --gold-bright: #e0bf60;
  --white: #ffffff;
  --off-white: #f6f3ee;
  --muted: #9fb0c7;
  --line: rgba(255, 255, 255, 0.08);

  --font-script: 'Dancing Script', cursive;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-glow: 0 0 60px rgba(0, 180, 180, 0.18);
  --shadow-card: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--teal-bright); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: rgba(255,255,255,0.85); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
}
.logo:hover { color: var(--teal); }
.logo .logo-mark {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 8px;
  box-shadow: 0 0 12px var(--teal);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-main a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav-main a:hover, .nav-main a.active { color: var(--teal); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-icons a {
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  width: 18px; height: 18px;
}
.social-icons a:hover { color: var(--teal); }
.social-icons svg { width: 100%; height: 100%; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-teal {
  background: var(--teal);
  color: var(--navy);
}
.btn-teal:hover {
  background: var(--teal-bright);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0,180,180,0.5);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0,180,180,0.25), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(201,168,76,0.10), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,180,180,0.20), rgba(201,168,76,0.15));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0,180,180,0.35), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201,168,76,0.25), transparent 60%);
}
.hero-photo > * { position: relative; z-index: 2; }
.hero-photo .photo-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: var(--teal);
}
.hero-photo .photo-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.hero-photo .photo-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--teal); font-style: italic; }
.hero .subhead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--teal);
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.as-seen {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.as-seen-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.as-seen-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  font-family: var(--font-head);
  color: rgba(255,255,255,0.7);
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0.04em;
}
.as-seen-logos span:not(:last-child)::after {
  content: '·';
  margin-left: clamp(16px, 2vw, 32px);
  color: var(--teal);
}

/* =========================================
   AUTHORITY BAR
   ========================================= */
.authority-bar {
  background: var(--teal);
  color: var(--navy);
  padding: 22px 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.authority-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  align-items: center;
}
.authority-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.authority-inner span:not(:last-child)::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy);
  margin-left: 22px;
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
}
.section-dark { background: var(--navy); }
.section-alt { background: var(--navy-2); }
.section-deep { background: #050d1a; }

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 18px;
}
.section-head h2 .accent { color: var(--teal); font-style: italic; }
.section-head p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================
   PROBLEM CARDS
   ========================================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  padding: 36px 32px;
  background: var(--navy-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  transition: transform 0.3s ease, border-color 0.3s ease;
  font-weight: 500;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--gold);
}
.problem-card .num {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}
.closing-line {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold);
  line-height: 1.5;
}

/* =========================================
   WORK WITH CARDS
   ========================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.work-card:hover { transform: translateY(-6px); }
.work-card .price-tag {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.work-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.work-card p {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.work-card .card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  opacity: 0.85;
}
.work-card.teal {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--navy);
}
.work-card.teal h3, .work-card.teal p, .work-card.teal .card-label, .work-card.teal .price-tag {
  color: var(--navy);
}
.work-card.teal p { color: rgba(10,22,40,0.85); }
.work-card.gold-border {
  background: var(--navy-2);
  border: 2px solid var(--gold);
  color: var(--white);
}
.work-card.gold-border .card-label { color: var(--gold); }
.work-card.dark-teal {
  background: var(--navy-3);
  border: 1px solid var(--teal);
  color: var(--white);
}
.work-card.dark-teal .card-label { color: var(--teal); }

/* =========================================
   STORY SECTION
   ========================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-content h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 28px;
  line-height: 1.05;
}
.story-content h2 .accent { color: var(--gold); font-style: italic; }
.story-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.story-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 12px;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 4px;
}
.story-content .read-more:hover { gap: 14px; color: var(--gold); border-color: var(--gold); }
.story-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,168,76,0.20), rgba(0,180,180,0.15));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.story-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 30%, rgba(201,168,76,0.3), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0,180,180,0.2), transparent 60%);
}
.story-photo .photo-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  display: grid; place-items: center;
  color: var(--gold);
  z-index: 2;
}
.story-photo .photo-label {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  z-index: 2;
}

/* =========================================
   PRESS / LOGOS
   ========================================= */
.press-band {
  background: var(--navy-2);
  padding: clamp(60px, 7vw, 100px) 0;
  text-align: center;
}
.press-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 36px;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: 36px;
}
.press-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.press-logo:hover {
  color: var(--white);
  border-color: var(--teal);
}
.press-credentials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.press-credentials span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  color: var(--muted);
}

/* =========================================
   BOOKS
   ========================================= */
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1000px;
  margin: 0 auto;
}
.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--navy-2);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.book-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}
.book-cover {
  aspect-ratio: 2 / 3;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: 0 16px 32px -8px rgba(0,0,0,0.6);
  border: 1px solid var(--teal);
  position: relative;
}
.book-cover.gold-cover {
  background: linear-gradient(160deg, var(--gold) 0%, #8a6f2b 100%);
  color: var(--navy);
  border-color: var(--gold);
}
.book-cover .by {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  margin-top: 12px;
  opacity: 0.85;
  letter-spacing: 0.06em;
}
.book-info h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.book-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy-2);
  padding: 36px 32px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  position: relative;
}
.testi-card .quote-mark {
  font-family: var(--font-head);
  font-size: 64px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.4;
}
.testi-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  margin: 0 0 24px;
  quotes: none;
}
.testi-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--teal);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.testi-note {
  text-align: center;
  margin-top: 48px;
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
}

/* =========================================
   SPEAKING TOPICS
   ========================================= */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.topic-tile {
  padding: 36px 24px;
  background: var(--navy-2);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  transition: all 0.3s ease;
  color: var(--white);
}
.topic-tile:hover {
  border-color: var(--teal);
  background: var(--navy-3);
  transform: translateY(-4px);
  color: var(--teal);
}
.topic-tile .topic-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--teal);
}
.topics-cta {
  text-align: center;
}

/* =========================================
   CLOSING CTA
   ========================================= */
.closing-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--navy);
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10,22,40,0.15), transparent 50%);
  pointer-events: none;
}
.closing-cta > * { position: relative; z-index: 2; }
.closing-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--navy);
  margin-bottom: 36px;
}
.closing-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.closing-cta .btn-teal {
  background: var(--navy);
  color: var(--white);
}
.closing-cta .btn-teal:hover { background: #1a3050; color: var(--white); }
.closing-cta .btn-gold { background: var(--gold); }
.closing-cta .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.closing-cta .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #050d1a;
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { font-size: 32px; margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .social-icons a { color: rgba(255,255,255,0.5); }

/* =========================================
   GENERIC PAGE HEADER (interior pages)
   ========================================= */
.page-header {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 100px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,180,180,0.18), transparent 70%);
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 2; }
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.05;
}
.page-header h1 .accent { color: var(--teal); font-style: italic; }
.page-header .lead {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 700px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.8);
}
.page-header .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =========================================
   RESPOND PAGE
   ========================================= */
.price-line {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  margin: 24px 0 8px;
}
.price-line .small { font-size: 14px; color: var(--muted); font-weight: 400; font-family: var(--font-body); }
.credibility-line {
  margin-top: 16px;
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.col-yes, .col-no {
  background: var(--navy-2);
  padding: 36px 32px;
  border-radius: var(--radius);
}
.col-yes { border-left: 3px solid var(--teal); }
.col-no { border-left: 3px solid #c45454; }
.col-yes h3, .col-no h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.col-yes h3 { color: var(--teal); }
.col-no h3 { color: #ff8a8a; }
.col-yes ul, .col-no ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.col-yes li, .col-no li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.col-yes li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  color: var(--teal);
  font-weight: 700;
}
.col-no li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 10px;
  color: #ff8a8a;
  font-weight: 700;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.framework-letter {
  background: var(--navy-2);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.framework-letter:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-4px);
}
.framework-letter:hover .letter-word { color: var(--navy); }
.framework-letter .letter {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}
.framework-letter:hover .letter { color: var(--navy); }
.framework-letter .letter-word {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: var(--navy-2);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.module-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.module-card .module-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.module-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}
.module-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.55;
}

.bonus-band {
  background: linear-gradient(135deg, var(--gold) 0%, #a08438 100%);
  color: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0;
}
.bonus-band h2 { color: var(--navy); font-size: clamp(32px, 4vw, 48px); text-align: center; margin-bottom: 16px; }
.bonus-band p { text-align: center; max-width: 700px; margin: 0 auto 40px; color: rgba(10,22,40,0.85); font-size: 17px; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: rgba(10,22,40,0.92);
  color: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.bonus-card h4 {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 8px;
}
.bonus-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  text-align: left;
}

.trust-block {
  background: var(--navy-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.trust-block .big-price {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
}
.trust-block .plan-note {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.trust-block .btn { margin-bottom: 24px; }
.trust-block .features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.trust-block .features span::before {
  content: '✓';
  color: var(--teal);
  margin-right: 6px;
  font-weight: 700;
}
.trust-block .refund-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--teal); }
.faq-item .faq-answer {
  padding: 0 0 24px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

.faq-category-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 56px 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.faq-category-title:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

/* Student Login Band */
.student-login-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 48px 0;
  color: var(--navy);
}
.student-login-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.student-login-band h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--navy);
  margin: 0;
}
.student-login-band p { color: rgba(10,22,40,0.85); margin: 6px 0 0; }
.student-login-band .btn { background: var(--navy); color: var(--white); }
.student-login-band .btn:hover { background: #1a3050; color: var(--white); }

/* =========================================
   FORM
   ========================================= */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy-2);
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-submit-row { text-align: center; margin-top: 24px; }

/* =========================================
   LEGAL PAGES (prose)
   ========================================= */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.prose h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--teal);
}
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--white); }
.prose .effective-date {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  font-size: 14px;
  text-transform: uppercase;
}

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle svg { width: 24px; height: 24px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 980px) {
  .nav-main, .header-right .social-icons { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .header-right { gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 420px; margin: 0 auto; }
  .work-grid, .testi-grid, .modules-grid { grid-template-columns: 1fr; }
  .books-grid, .two-col { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 140px 1fr; }
  .framework-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .student-login-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .closing-cta .cta-buttons { flex-direction: column; align-items: stretch; }
  .closing-cta .btn { width: 100%; }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 1fr; text-align: center; }
  .book-cover { max-width: 180px; margin: 0 auto; }
  .modules-grid { grid-template-columns: 1fr; }
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  color: var(--white);
  padding: 14px var(--pad);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--teal); background: rgba(255,255,255,0.04); }
.mobile-nav .mobile-social {
  display: flex;
  gap: 24px;
  padding: 24px var(--pad) 0;
}
.mobile-nav .mobile-social a {
  padding: 0;
  border: 0;
  color: rgba(255,255,255,0.7);
  width: 22px; height: 22px;
}

/* =========================================
   TIMES SQUARE / MARQUEE MOMENT
   ========================================= */
.marquee-band {
  background: linear-gradient(135deg, #050d1a 0%, var(--navy-3) 100%);
  padding: clamp(70px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.marquee-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(201,168,76,0.18), transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0,180,180,0.15), transparent 70%);
  pointer-events: none;
}
.marquee-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.marquee-content .eyebrow { color: var(--gold); margin-bottom: 16px; }
.marquee-content h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 24px;
  line-height: 1.05;
}
.marquee-content h2 .accent { color: var(--gold); font-style: italic; }
.marquee-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 24px;
}
.marquee-stat {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 8px;
  margin-bottom: 8px;
}

.billboard-frame {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%),
    linear-gradient(135deg, #1a0f2e 0%, #0a1628 100%);
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8), 0 0 80px rgba(201,168,76,0.15);
}
.billboard-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,180,80,0.25), transparent 35%),
    radial-gradient(circle at 75% 25%, rgba(255,80,180,0.20), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,180,255,0.15), transparent 50%);
}
.billboard-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.billboard-frame > * { position: relative; z-index: 2; }
.billboard-frame .billboard-label {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201,168,76,0.6);
  margin-bottom: 8px;
  font-weight: 700;
}
.billboard-frame .billboard-sub {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
  font-size: 17px;
  max-width: 340px;
  line-height: 1.4;
  margin-bottom: 16px;
}
.billboard-frame .billboard-placeholder {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 8px 16px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 4px;
}

/* =========================================
   NBC / MEDIA APPEARANCE
   ========================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.media-card {
  background: var(--navy-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}
.media-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy-3), #050d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.media-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,180,180,0.15), transparent 70%);
}
.media-thumb .play-icon {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,180,180,0.9);
  display: grid; place-items: center;
  color: var(--navy);
  box-shadow: 0 0 40px rgba(0,180,180,0.5);
}
.media-thumb .placeholder-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.media-card .media-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.media-card .outlet {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.media-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.media-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.55;
}
.media-card .watch-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* =========================================
   DOCUMENTARY TEASER (33 Roofs)
   ========================================= */
.doc-band {
  background: #02060d;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.doc-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,168,76,0.10), transparent 70%);
  pointer-events: none;
}
.doc-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.doc-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}
.doc-title {
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #b89248 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.doc-tag {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.4;
}
.doc-body {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.doc-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
}
.doc-status::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* =========================================
   THREE BOOKS GRID
   ========================================= */
.books-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}
.book-card-vertical {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--navy-2);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.book-card-vertical:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
}
.book-card-vertical .book-cover {
  aspect-ratio: 2 / 3;
  max-width: 220px;
  margin: 0 auto 24px;
}
.book-card-vertical .book-cover.faith {
  background: linear-gradient(160deg, #3a2418 0%, #0a1628 100%);
  border-color: var(--gold);
}
.book-card-vertical h3 {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.book-card-vertical .book-subtitle {
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  font-family: var(--font-head);
}
.book-card-vertical p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.6;
}

/* =========================================
   SPEAKER REEL / VIDEO PLACEHOLDER
   ========================================= */
.video-placeholder {
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(0,180,180,0.15), rgba(201,168,76,0.10)),
    var(--navy-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-placeholder .play-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--teal);
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 18px;
  box-shadow: 0 0 60px rgba(0,180,180,0.4);
  transition: transform 0.3s ease;
}
.video-placeholder:hover .play-btn { transform: scale(1.08); }
.video-placeholder .video-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}
.video-placeholder .video-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* =========================================
   FULL STORY (about page) — timeline
   ========================================= */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 8px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--navy);
  box-shadow: 0 0 12px var(--teal);
}
.timeline-item .year {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--white);
}
.timeline-item p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0;
}

.story-pullquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold);
  line-height: 1.3;
  max-width: 820px;
  margin: 48px auto;
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* Contact info block */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 64px;
}
.contact-info-card {
  background: var(--navy-2);
  padding: 32px 28px;
  border-radius: var(--radius);
  border-top: 3px solid var(--teal);
  text-align: center;
}
.contact-info-card .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,180,180,0.1);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  color: var(--teal);
}
.contact-info-card h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}
.contact-info-card a, .contact-info-card p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Press logo grid (about/speaking) */
.press-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.press-grid-large .press-logo {
  text-align: center;
  padding: 24px 16px;
  background: var(--navy-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.press-grid-large .press-logo:hover {
  border-color: var(--gold);
  color: var(--white);
}
