:root {
  --navy: #1a1a2e;
  --navy-light: #252542;
  --blue: #2c3e50;
  --blue-light: #34495e;
  --blue-lighter: #3d566e;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --cream: #f0f3f6;
  --cream-warm: #f8f6f0;
  --dark: #333333;
  --white: #ffffff;
  --gray: #777777;
  --gray-blue: #7f8c8d;
  --light-gray: #f5f5f5;
  --border-light: #e0e6ec;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; }

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

/* ========== HEADER ========== */
.rth-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.rth-header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 10px 0;
}
.rth-header .rth-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rth-logo svg { display: block; }
.rth-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.rth-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.rth-nav a:hover { color: var(--gold); }
.rth-nav svg { margin-left: 4px; vertical-align: middle; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--navy);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown li { padding: 0; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
}
.dropdown a:hover { background: rgba(201,168,76,0.1); }
.nav-cta a {
  background: var(--gold);
  color: var(--blue) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.nav-cta a:hover { background: var(--gold-light); }

.rth-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.rth-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--blue-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero h1 {
  font-size: 58px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 .gold { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item h3 {
  font-size: 32px;
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
}
.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 4px;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-height: 500px;
  object-fit: cover;
}
.hero-image-frame {
  position: relative;
  display: inline-block;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 16px;
  opacity: 0.3;
}

/* ========== SECTIONS ========== */
.section {
  padding: 70px 0;
}
.section-dark {
  background: var(--blue);
  color: var(--white);
}
.section-cream {
  background: var(--cream);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--dark);
  font-size: 17px;
  line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ========== EXPERTISE CARDS ========== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.expertise-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.expertise-icon svg { width: 28px; height: 28px; }
.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--blue);
}
.expertise-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-link {
  color: var(--white);
  background: var(--gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s;
}
.card-link:hover { background: var(--gold-light); color: var(--blue); transform: translateY(-2px); }

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--blue);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.about-badge h3 {
  font-size: 28px;
  font-family: 'DM Serif Display', serif;
}
.about-badge p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 2px;
}
.about-content .section-tag { text-align: left; }
.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.about-content > p {
  color: #444444;
  font-size: 16px;
  margin-bottom: 24px;
}
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.cert-tag {
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--border-light);
}

/* ========== PROGRAMS ========== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.program-card {
  background: var(--blue-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(255,255,255,0.05);
}
.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.program-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.program-card:hover .program-img img { transform: scale(1.05); }
.program-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44,62,80,0.8));
}
.program-body { padding: 28px; }
.program-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.program-body h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}
.program-body p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s;
}
.program-link:hover { gap: 12px; }

/* ========== BLUEPRINT SECTION ========== */
.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blueprint-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.blueprint-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.blueprint-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.blueprint-item p {
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}

/* ========== JOURNEY / TIMELINE ========== */
.journey-content {
  max-width: 800px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.timeline-marker::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 20px);
  background: rgba(201,168,76,0.2);
}
.timeline-item:last-child .timeline-marker::after { display: none; }
.timeline-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--blue);
}
.timeline-body p {
  color: #555555;
  font-size: 16px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--blue); }
.testimonial-role { font-size: 12px; color: var(--gray); }

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--blue);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-section .btn-primary { font-size: 16px; padding: 16px 40px; }

/* ========== BOOK SPEAKER ========== */
.speaker-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8963d 100%);
  border-radius: 16px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}
.speaker-banner h3 {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 12px;
}
.speaker-banner p {
  color: rgba(44,62,80,0.8);
  font-size: 16px;
  max-width: 500px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: all 0.3s;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ========== FOOTER ========== */
.rth-footer {
  background: var(--navy);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .hero-grid { gap: 40px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .blueprint-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .rth-menu-toggle { display: block; }
  .rth-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    padding: 80px 32px 32px;
    transition: right 0.3s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .rth-nav.active { right: 0; }
  .rth-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    min-width: auto;
    display: none;
  }
  .has-dropdown.active .dropdown { display: flex; }
  .nav-cta { margin-top: 16px; }
  .nav-cta a { display: block; text-align: center; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 34px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 20px; }
  .section-header h2 { font-size: 30px; }

  .expertise-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blueprint-grid { grid-template-columns: repeat(2, 1fr); }

  .speaker-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .blueprint-grid { grid-template-columns: 1fr; }
}

/* ========== MOBILE OVERRIDES FOR INLINE GRIDS ========== */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="padding:140px"],
  [style*="padding: 140px"] {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
  }
  [style*="padding:100px 0"],
  [style*="padding: 100px 0"] {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  [style*="font-size:42px"],
  [style*="font-size: 42px"] {
    font-size: 28px !important;
  }
  [style*="font-size:36px"],
  [style*="font-size: 36px"] {
    font-size: 26px !important;
  }
  [style*="font-size:40px"],
  [style*="font-size: 40px"] {
    font-size: 28px !important;
  }
  [style*="font-size:32px"],
  [style*="font-size: 32px"] {
    font-size: 24px !important;
  }
  .cta-section h2 {
    font-size: 26px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .rth-lp-form input,
  .rth-lp-form button {
    font-size: 14px !important;
  }
  .calendly-inline-widget {
    height: 900px !important;
  }
}
