/* ===== LEP Static Site — Matching Current Design ===== */

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

:root {
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --cream-warm: #FFF8E7;
  --cream-cool: #E8EBF0;
  --gold: #D4A843;
  --gold-light: #E8C872;
  --gold-dark: #B8923A;
  --navy: #1A2744;
  --navy-dark: #222222;
  --text: #3A3A3A;
  --text-dark: #222222;
  --text-light: #777777;
  --text-muted: #555555;
  --teal: #2A6B5E;
  --teal-dark: #1B4A40;
  --border: #E0E0E0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--text-dark); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; }
p { margin-bottom: 1rem; }

.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: -apple-system, system-ui, sans-serif;
  margin-bottom: 12px;
}

.section-label-center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }

.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: #F0F0F0; }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-dark); }

/* ===== Top Header ===== */
.top-header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: Georgia, serif; font-size: 1.1rem; color: var(--gold); font-weight: 700; letter-spacing: 0.05em; line-height: 1.2; }
.logo-text span { display: block; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold-dark); font-weight: 400; }

.header-cta .btn { font-size: 0.85rem; padding: 10px 22px; }

/* ===== Navigation ===== */
.main-nav {
  background: var(--navy-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 16px 20px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  transition: background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 12px 0;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
  color: var(--white);
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (internal pages) */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.55);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  color: var(--white);
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 8px;
}
.page-hero-content .divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto;
}
.page-hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== Two Paths (Choose Your Path) ===== */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card.warm { border-top: 4px solid var(--gold); }
.path-card.cool { border-top: 4px solid var(--navy); }
.path-card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.path-card h3 { margin-bottom: 16px; font-size: 1.3rem; }
.path-card p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }

/* ===== What is SAF (side-by-side) ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { color: var(--text-muted); font-size: 1rem; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; }
.split-image img { width: 100%; border-radius: var(--radius-lg); }

/* ===== Process Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.step { padding: 24px; }
.step-number {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* ===== Testimonials ===== */
.testimonial-bar {
  background: var(--navy);
  padding: 40px 0;
  overflow: hidden;
}
.testimonial-content {
  text-align: center;
  padding: 20px;
  color: var(--white);
}
.testimonial-content blockquote {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.95;
}
.testimonial-content cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dots span.active { background: var(--gold); }

/* ===== Products / Books Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-card-img img { max-height: 280px; object-fit: contain; border-radius: 4px; }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 1rem; font-family: inherit; margin-bottom: 8px; line-height: 1.4; }
.product-card-body .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-card-body .price .current { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }
.product-card-body .price .original { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.product-card-body .btn { width: 100%; justify-content: center; padding: 10px 20px; font-size: 0.85rem; }

/* ===== Podcast Section ===== */
.podcast-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.podcast-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
}

/* ===== Training Tiers ===== */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.training-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.training-card:hover { transform: translateY(-4px); }
.training-card.featured { border: 2px solid var(--gold); position: relative; }
.training-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.training-card h3 { margin-bottom: 8px; }
.training-card .price-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.training-card .price-note {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.training-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.training-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.training-card ul li::before { content: "✓"; color: var(--teal); font-weight: 700; }

/* ===== Session Steps ===== */
.session-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.session-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.session-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.session-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.session-step p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* ===== Founder Section ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.founder-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  margin: 0 auto;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Ecosystem ===== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.eco-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.eco-card:hover { transform: translateY(-4px); }
.eco-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.eco-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.eco-card a { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.eco-card a:hover { color: var(--gold-dark); }

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; color: var(--text-muted); }
.contact-info a { color: var(--gold); font-weight: 500; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-top: 12px; }
.footer-col h4 {
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .nav-toggle { display: block; }
  .main-nav .container { justify-content: flex-end; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .paths-grid { grid-template-columns: 1fr; max-width: 500px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .session-steps { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 60px 0; }
  .section { padding: 60px 0; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .top-header .container { flex-wrap: wrap; gap: 12px; }
  .ecosystem-grid { grid-template-columns: 1fr; }
}

/* ===== Newsletter / Subscribe ===== */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
}
.subscribe-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form .btn { white-space: nowrap; }

/* ===== Exit Intent Popup ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
.exit-popup-overlay.show { display: flex; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
  position: relative;
}
.exit-popup-header {
  background: linear-gradient(135deg, var(--navy) 0%, #2A3B5E 100%);
  padding: 32px;
  text-align: center;
  color: var(--white);
}
.exit-popup-header h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.exit-popup-header p {
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 0;
}
.exit-popup-body {
  padding: 32px;
  text-align: center;
}
.exit-popup-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.exit-popup-original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 16px;
}
.exit-popup-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.exit-popup-body .btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.exit-popup-dismiss {
  display: block;
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.exit-popup-dismiss:hover { color: var(--text); }
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.exit-popup-close:hover { color: var(--white); }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Testimonial Cards (page) ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-card blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.testimonial-card .context {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== Events ===== */
.events-list { max-width: 800px; margin: 0 auto; }
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
}
.event-date-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.event-date-box .month {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.event-date-box .day {
  font-size: 2rem;
  font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1;
  margin-top: 4px;
}
.event-info h3 { margin-bottom: 8px; }
.event-info p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 8px; }
.event-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 8px;
}
.event-tag.online { background: #E3F2FD; color: #1565C0; }
.event-tag.in-person { background: #E8F5E9; color: #2E7D32; }

/* ===== Shipping Info ===== */
.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.shipping-table th,
.shipping-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.shipping-table th {
  font-weight: 700;
  color: var(--text-dark);
  background: var(--cream);
}

/* ===== Long About sections ===== */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline-item {
  padding: 20px 0;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  position: relative;
  margin-left: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.timeline-item p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ===== Session pricing cards ===== */
.session-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.session-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.session-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.session-card.featured { border: 2px solid var(--gold); }
.session-card h3 { margin-bottom: 8px; }
.session-card .duration {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.session-card .session-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.session-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .session-pricing { grid-template-columns: 1fr; max-width: 360px; }
  .event-card { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== Misc ===== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* Stats row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { font-size: 1.5rem; font-weight: 700; color: var(--gold); font-family: Georgia, serif; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== Featured Testimonials (full-width quote cards) ===== */
.featured-testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.featured-testimonial blockquote {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.featured-testimonial cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ===== Testimonial Submission Form ===== */
.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* ===== Event signup form inputs (navy bg) ===== */
.section-navy input::placeholder {
  color: rgba(255,255,255,0.5);
}
.section-navy input:focus {
  border-color: var(--gold);
  outline: none;
}
