/* ============================================================
   ALUNA — Global Stylesheet
   ============================================================ */

/* ── Google Fonts loaded via HTML ── */

/* ── CSS Variables ── */
:root {
  /* New palette: warm wood · brick · organic green */
  --ocean-blue: #4A7A55;        /* moss green — primary CTA & interactive */
  --deep-teal: #2C4A35;         /* forest green — section labels, underlines */
  --soft-aqua: #A8C4AE;         /* sage — hover, secondary accents */
  --coastal-sand: #D8C6A3;      /* warm sand accent (unchanged) */
  --midnight: #1A2C1F;          /* dark forest — footer, dark sections */
  --charcoal: #1E1C18;          /* warm black — headings, body text */
  --white: #FFFFFF;
  --terracotta: #B85A3A;        /* brick red — highlights */
  --amber: #C4906A;             /* warm wood — accent warm tones */
  --accent-gold: #C4906A;       /* amber (replaces cold gold) */
  --accent-yellow: #C4906A;
  --accent-orange: #B85A3A;     /* terracotta */
  --accent-neon-teal: #4A7A55;  /* mapped to moss */
  --accent-red: #B85A3A;        /* terracotta */
  --accent-royal-blue: #2C4A35; /* mapped to forest */
  --off-white: #F4EFE8;         /* warm sand — alt section backgrounds */
  --light-border: #DDD5C8;      /* warm parchment border */
  --text-muted: #6B6258;        /* warm grey text */

  --font-headline: 'Playfair Display', serif;
  --font-subhead: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(44,74,53,0.08);
  --shadow-md: 0 8px 32px rgba(44,74,53,0.12);
  --shadow-lg: 0 16px 64px rgba(44,74,53,0.16);

  --max-width: 1200px;
  --section-py: 96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-headline); font-weight: 700; line-height: 1.15; }
h5, h6 { font-family: var(--font-subhead); font-weight: 600; }
.section-label {
  font-family: var(--font-subhead);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-teal);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-subhead);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean-blue);
  color: var(--white);
  border-color: var(--ocean-blue);
}
.btn-primary:hover {
  background: #3A6444;
  border-color: #3A6444;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--ocean-blue);
  border-color: var(--ocean-blue);
}
.btn-secondary:hover {
  background: var(--ocean-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--ocean-blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--soft-aqua);
  border-color: var(--soft-aqua);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,74,53,0.10);
}
.navbar.dark-mode {
  background: transparent;
}
.navbar.scrolled.dark-mode {
  background: rgba(30,28,24,0.97);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: none; /* hidden — we use CSS text logo */
}

/* ── Aluna CSS Text Logo ── */
.aluna-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}
.aluna-logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
}
.aluna-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.25s;
}
.aluna-logo-wordmark {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.aluna-logo-sub {
  font-family: var(--font-subhead);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 36px;
  opacity: 0.65;
  transition: opacity 0.25s;
}

/* Scrolled (light bg) — dark version */
.navbar.scrolled .aluna-logo-icon {
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-teal));
}
.navbar.scrolled .aluna-logo-icon svg { fill: var(--white); }
.navbar.scrolled .aluna-logo-wordmark { color: var(--charcoal); }
.navbar.scrolled .aluna-logo-sub { color: var(--text-muted); }

/* Transparent nav (dark bg) — light version */
.navbar:not(.scrolled) .aluna-logo-icon {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}
.navbar:not(.scrolled) .aluna-logo-icon svg { fill: var(--white); }
.navbar:not(.scrolled) .aluna-logo-wordmark { color: var(--white); }
.navbar:not(.scrolled) .aluna-logo-sub { color: rgba(255,255,255,0.6); }

/* Inner page forced-scrolled state */
.navbar.scrolled .aluna-logo-icon,
.aluna-logo-icon-scrolled {
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-teal)) !important;
}

/* Footer logo */
.footer-aluna-logo .aluna-logo-icon {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-aluna-logo .aluna-logo-icon svg { fill: var(--soft-aqua); }
.footer-aluna-logo .aluna-logo-wordmark { color: var(--white); font-size: 20px; }
.footer-aluna-logo .aluna-logo-sub { color: rgba(255,255,255,0.45); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-subhead);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-teal);
  transition: width 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--ocean-blue); }

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }
.navbar:not(.scrolled) .nav-links a::after { background: var(--soft-aqua); }

.nav-cta { margin-left: 8px; }
.navbar:not(.scrolled) .nav-cta .btn-primary {
  background: var(--white);
  color: var(--ocean-blue);
  border-color: var(--white);
}
.navbar:not(.scrolled) .nav-cta .btn-primary:hover {
  background: var(--soft-aqua);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}
.navbar:not(.scrolled) .nav-hamburger span { background: var(--white); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--soft-aqua); }
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(26,28,24,0.92) 0%, rgba(44,74,53,0.65) 55%, rgba(74,122,85,0.20) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--soft-aqua);
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-yellow);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--soft-aqua);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-support {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-support::before {
  content: '✓';
  color: var(--soft-aqua);
  font-weight: 700;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ── Section Layouts ── */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--midnight);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }
.section-teal {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-teal) 100%);
  color: var(--white);
}
.section-teal .section-title { color: var(--white); }
.section-teal .section-sub { color: rgba(255,255,255,0.8); }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--light-border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 32px; }
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ── Program Cards ── */
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.program-card.featured {
  border: 2px solid var(--ocean-blue);
  position: relative;
}
.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ocean-blue);
  color: var(--white);
  font-family: var(--font-subhead);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}
.program-card-header {
  padding: 36px 32px 24px;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-teal) 100%);
  color: var(--white);
  position: relative;
}
.program-card.accent-1 .program-card-header { background: linear-gradient(135deg, #2C4A35 0%, #4A7A55 100%); }
.program-card.accent-2 .program-card-header { background: linear-gradient(135deg, #8C3A25 0%, #B85A3A 100%); }
.program-card.accent-3 .program-card-header { background: linear-gradient(135deg, #8A6030 0%, #C4906A 100%); }

.program-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.program-card-header h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-headline);
}
.program-card-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.program-card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program-outcomes { display: flex; flex-direction: column; gap: 10px; }
.program-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
}
.program-outcome::before {
  content: '→';
  color: var(--deep-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.program-for {
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
}
.program-for strong {
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-subhead);
}

/* ── Pillars / Three-Column ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  text-align: center;
  transition: all 0.3s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-aqua), var(--ocean-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}
.pillar-card h3 {
  font-family: var(--font-subhead);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Two-Column Split ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content { display: flex; flex-direction: column; gap: 20px; }
.split-content p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { color: var(--accent-yellow); font-size: 16px; }
.testimonial-quote {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-aqua), var(--ocean-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-subhead);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Benefits ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
  transition: all 0.25s;
}
.benefit-item:hover {
  border-color: var(--soft-aqua);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(168,196,174,0.25), rgba(44,74,53,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.benefit-title {
  font-family: var(--font-subhead);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.benefit-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Who This Is For ── */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-xl);
  font-family: var(--font-subhead);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s;
}
.audience-tag:hover {
  border-color: var(--ocean-blue);
  color: var(--ocean-blue);
  background: rgba(44,74,53,0.04);
}
.audience-tag::before {
  content: '✦';
  font-size: 10px;
  color: var(--deep-teal);
}

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-teal) 50%, #2C4A35 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-strip h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.cta-strip-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Founder Section ── */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--ocean-blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.founder-content h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.founder-content .founder-title {
  font-family: var(--font-subhead);
  font-size: 15px;
  color: var(--deep-teal);
  font-weight: 600;
  margin-bottom: 20px;
}
.founder-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cert-badge {
  background: var(--off-white);
  border: 1.5px solid var(--light-border);
  color: var(--charcoal);
  font-family: var(--font-subhead);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
}

/* ── Events ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.event-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ocean-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}
.event-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.event-meta-icon { font-size: 14px; }
.event-card-body h3 {
  font-family: var(--font-subhead);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}
.event-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.event-card-footer {
  padding: 16px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-price {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--ocean-blue);
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item {
  display: flex;
  gap: 16px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(168,196,174,0.2), rgba(44,74,53,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-title {
  font-family: var(--font-subhead);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.form-input,
.form-select,
.form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 3px rgba(44,74,53,0.10);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-note::before { content: '✉'; font-size: 14px; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(74,122,85,0.08);
  border: 1px solid rgba(74,122,85,0.3);
  border-radius: var(--radius-md);
  color: var(--deep-teal);
  font-family: var(--font-subhead);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, #12201A 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 25% 70%, rgba(44,74,53,0.35) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 25%, rgba(74,122,85,0.20) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-subhead);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--soft-aqua); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Values / Mission ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
  text-align: center;
  transition: all 0.25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-num {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 800;
  color: var(--soft-aqua);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 {
  font-family: var(--font-subhead);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Footer ── */
.footer {
  background: var(--midnight);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--soft-aqua);
  background: rgba(168,196,174,0.15);
  color: var(--soft-aqua);
}
.footer-col h5 {
  font-family: var(--font-subhead);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--soft-aqua); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-medicine {
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 700;
  color: var(--soft-aqua);
  letter-spacing: 0.06em;
}

/* ── Divider ── */
.wave-divider {
  height: 64px;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ── Accent / utility ── */
.accent-teal { color: var(--deep-teal); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

/* ── Logo banner / Trust bar ── */
.trust-bar {
  padding: 32px 0;
  background: var(--off-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  text-align: center;
}
.trust-bar-label {
  font-family: var(--font-subhead);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .program-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse { direction: ltr; }
  .split-img { aspect-ratio: 16/9; }
  .founder-card { grid-template-columns: 1fr; gap: 32px; }
  .founder-img { aspect-ratio: 16/9; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .events-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
  .program-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   FROM EXPERIENCE SECTION
══════════════════════════════════════════════ */
.from-experience-section {
  background: var(--off-white);
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--light-border);
}
.from-experience-inner {
  max-width: 860px;
  margin: 0 auto;
}
.from-exp-lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--charcoal);
  line-height: 1.65;
  font-family: var(--font-subhead);
  font-weight: 500;
  margin: 20px 0 40px;
  border-left: 3px solid var(--soft-aqua);
  padding-left: 20px;
}
.experience-observations {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.exp-obs {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.exp-num {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--soft-aqua);
  background: rgba(74,122,85,0.08);
  border: 1px solid rgba(74,122,85,0.2);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.exp-obs div strong {
  display: block;
  font-family: var(--font-subhead);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.4;
}
.exp-obs div {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.from-exp-close {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-border);
  font-style: italic;
}
.from-exp-sig {
  font-family: var(--font-subhead);
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean-blue);
  letter-spacing: 0.04em;
  text-align: right;
  padding-right: 4px;
}

/* ══════════════════════════════════════════════
   PERFORMANCE THESIS SECTION
══════════════════════════════════════════════ */
.performance-thesis {
  background: var(--midnight);
  padding: var(--section-padding) 0;
  color: white;
}
.perf-split {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
}
.perf-def {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.perf-label {
  display: block;
  font-family: var(--font-subhead);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-aqua);
  margin-bottom: 12px;
}
.perf-def h3 {
  font-family: var(--font-headline);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}
.perf-def p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.perf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 900;
  color: var(--soft-aqua);
  opacity: 0.5;
  padding-top: 48px;
}
.perf-thesis {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.perf-thesis h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 20px;
}
.perf-thesis h2 em {
  color: var(--soft-aqua);
  font-style: normal;
}
.perf-thesis p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.perf-thesis-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .perf-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .perf-divider { display: none; }
  .perf-def { padding: 28px 24px; }
  .exp-obs { grid-template-columns: 40px 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-strip-actions { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   EVENT-TYPE MARQUEE STRIP
══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-label {
  display: block;
  text-align: center;
  font-family: var(--font-subhead);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-aqua);
  margin-bottom: 14px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.marquee-item {
  font-family: var(--font-headline);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 28px;
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--soft-aqua); }
.marquee-dot {
  color: var(--soft-aqua);
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   PROGRAM SPEC BADGES (icon + value rows)
══════════════════════════════════════════════ */
.program-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  margin: 12px 0 4px;
}
.program-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.5;
}
.program-spec-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--deep-teal);
}
.program-spec-label {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1px;
}
.program-spec-value {
  color: var(--charcoal);
  font-size: 13.5px;
}
.program-debrief-note {
  background: rgba(74,122,85,0.07);
  border: 1px solid rgba(74,122,85,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--deep-teal);
  line-height: 1.55;
  margin-top: 8px;
}
.program-debrief-note strong {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 3px;
  color: var(--ocean-blue);
}
