/* ============================================
   ALTERED EGO LAB — STYLESHEET
   ============================================ */

:root {
  --purple-deep:    #2D1B69;
  --purple-brand:   #7B4FBE;
  --purple-light:   #A07DD0;
  --charcoal:       #1C2B3A;
  --charcoal-mid:   #2E4057;
  --seafoam:        #E8F4F8;
  --lavender-pale:  #F0ECFF;
  --lavender-card:  #F7F5FF;
  --sand:           #C4614A;
  --white:          #FFFFFF;
  --text-dark:      #1C2B3A;
  --text-mid:       #4A5568;
  --text-light:     #718096;
  --text-on-dark:   rgba(255,255,255,0.88);
  --text-on-dark-muted: rgba(255,255,255,0.58);
  --nav-h: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 16px rgba(44,27,105,0.08);
  --shadow-card-hover: 0 8px 32px rgba(44,27,105,0.16);
  --transition: 0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
em { font-style: italic; color: var(--purple-light); }
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(29, 27, 60, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,79,190,0.2);
  transition: background var(--transition);
}
.nav.scrolled {
  background: rgba(20, 18, 48, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(123,79,190,0.18);
}
.nav-link.nav-cta {
  background: var(--purple-brand);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
}
.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
  background: var(--purple-light);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--purple-brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,79,190,0.35);
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 6px 28px rgba(123,79,190,0.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--purple-brand);
  border: 1.5px solid var(--purple-brand);
}
.btn-outline:hover {
  background: var(--purple-brand);
  color: var(--white);
}
.btn-large {
  padding: 18px 40px;
  font-size: 0.92rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
  background: #0d0820;
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(13, 8, 35, 0.88) 0%,
      rgba(29, 16, 64, 0.80) 40%,
      rgba(44, 27, 105, 0.50) 70%,
      rgba(13, 8, 35, 0.40) 100%
    );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  padding: 80px 24px 100px;
  margin-left: max(24px, calc(50vw - 580px));
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero-headline em {
  color: var(--purple-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-on-dark);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  background:
    radial-gradient(ellipse at 30% 60%, rgba(123,79,190,0.3) 0%, transparent 55%),
    linear-gradient(145deg, #0d1b2a 0%, #1a1040 50%, #2d1b69 100%);
  overflow: hidden;
}
.page-hero-short { padding-bottom: 96px; }
.page-hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 32px;
}
.page-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.page-hero-headline em { color: var(--purple-light); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-light { background: var(--seafoam); }
.section-lavender { background: var(--lavender-pale); }
.section-dark {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--purple-deep) 100%);
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-brand);
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--purple-light); }
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.25;
}
.section-headline.light { color: var(--white); }
.section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 48px;
}
.section-desc.light { color: var(--text-on-dark); }
.section-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 56px;
}
.section-intro.light { color: var(--text-on-dark); }
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 680px; }

/* ============================================
   HOME — WHO THIS IS FOR
   ============================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.split-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.symptom-card {
  background: var(--white);
  border: 1px solid rgba(123,79,190,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.symptom-card:hover {
  border-color: rgba(123,79,190,0.35);
  box-shadow: var(--shadow-card-hover);
}

/* ============================================
   HOME — PROCESS
   ============================================ */
.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin: 0;
}
.process-connector {
  width: 48px;
  height: 1px;
  background: rgba(123,79,190,0.4);
  margin-top: 36px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(123,79,190,0.5);
  border-right: 1px solid rgba(123,79,190,0.5);
  transform: rotate(45deg);
}

/* ============================================
   HOME — DIFFERENTIATION
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.diff-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.diff-card h3 { font-size: 1.15rem; color: var(--purple-deep); margin-bottom: 12px; }
.diff-card p { margin: 0; font-size: 0.95rem; }

/* ============================================
   CTA STRIP
   ============================================ */
.section-cta {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--charcoal) 100%);
  padding: 96px 24px;
  text-align: center;
}
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-on-dark);
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(44,27,105,0.2);
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.about-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-brand);
  margin-bottom: 28px;
}
.about-text p { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.4rem; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.philosophy-block {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.philosophy-block h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.philosophy-block p { font-size: 0.93rem; color: var(--text-on-dark-muted); margin: 0; }
.focus-wrap { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.focus-tag {
  background: var(--white);
  border: 1px solid rgba(123,79,190,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  box-shadow: var(--shadow-card);
}

/* ============================================
   SERVICES / WORK WITH ME
   ============================================ */
.entry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.entry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.entry-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.entry-card-featured { border-color: var(--purple-brand); box-shadow: 0 4px 32px rgba(123,79,190,0.18); }
.entry-badge {
  display: inline-block;
  background: var(--purple-brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  align-self: flex-start;
}
.entry-card h3 { font-size: 1.3rem; color: var(--purple-deep); line-height: 1.3; margin: 0; }
.entry-card p { font-size: 0.93rem; margin: 0; }
.entry-ideal { font-size: 0.82rem !important; color: var(--text-light) !important; font-style: italic; }
.entry-card .btn { align-self: flex-start; margin-top: auto; }
.clinic-section { max-width: 640px; }
.clinic-text p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.2rem; }

/* ============================================
   PROGRAMS PAGE
   ============================================ */
.duration-inline {
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--purple-brand);
  letter-spacing: 0.04em;
  background: var(--lavender-card);
  padding: 3px 12px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 12px;
}
.duration-inline.light { background: rgba(160,125,208,0.2); color: var(--purple-light); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
}
.tier-card-mid { border-color: var(--purple-brand); box-shadow: 0 4px 24px rgba(123,79,190,0.16); }
.tier-card h3 { font-size: 1.15rem; color: var(--purple-deep); margin-bottom: 12px; }
.tier-card p { font-size: 0.92rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-list-light .feature-item {
  border-color: rgba(255,255,255,0.12);
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.05);
}
.feature-item {
  background: var(--lavender-card);
  border: 1px solid rgba(123,79,190,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  font-weight: 500;
}
.overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.overlay-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.overlay-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.overlay-card h3 { font-size: 1.1rem; color: var(--purple-deep); margin-bottom: 10px; }
.overlay-card p { font-size: 0.9rem; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.program-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.program-card-addon { border-color: rgba(160,125,208,0.3); }
.program-duration { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px; }
.program-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.program-card p { font-size: 0.9rem; color: var(--text-on-dark-muted); margin-bottom: 20px; }
.program-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.program-features li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
}
.program-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  opacity: 0.6;
}
.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.ongoing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
}
.ongoing-card h3 { font-size: 1.1rem; color: var(--purple-deep); margin-bottom: 12px; }
.ongoing-card p { font-size: 0.93rem; }

/* ============================================
   BOOK PAGE
   ============================================ */
.book-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.book-card-featured {
  grid-column: span 2;
  border-color: var(--purple-brand);
  background: var(--lavender-card);
  box-shadow: 0 4px 32px rgba(123,79,190,0.2);
}
.book-card h2 { font-size: 1.6rem; color: var(--purple-deep); }
.book-card p { font-size: 0.95rem; }
.book-ideal { font-size: 0.84rem !important; color: var(--text-light) !important; font-style: italic; }
.book-card .btn { align-self: flex-start; margin-top: 8px; }
.faq-section { max-width: 900px; margin: 0 auto; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.faq-item h3 { font-size: 1.05rem; color: var(--purple-deep); margin-bottom: 10px; }
.faq-item p { font-size: 0.92rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 56px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-logo { width: 32px; height: 32px; object-fit: contain; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .entry-cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 300px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .overlay-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .ongoing-grid { grid-template-columns: 1fr; }
  .book-cards { grid-template-columns: 1fr; }
  .book-card-featured { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-track { flex-direction: column; align-items: center; gap: 24px; }
  .process-connector { width: 1px; height: 32px; margin: 0; }
  .process-connector::after { right: -3px; top: auto; bottom: -4px; transform: rotate(135deg); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 60px 24px 80px; margin-left: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .symptom-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(20,18,48,0.99);
    padding: 20px 24px 32px;
    gap: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link.nav-cta { border-radius: var(--radius-sm); width: fit-content; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================
   PRECISION BLOCK (Services page)
   ============================================ */
.precision-block { max-width: 680px; }
.precision-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-left: 2px solid rgba(160,125,208,0.4);
  padding-left: 32px;
}
.precision-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.6;
  padding: 6px 0;
}
.precision-item-final {
  color: var(--purple-light);
  font-style: italic;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(160,125,208,0.2);
}

/* ============================================
   TIMELINE (Services page)
   ============================================ */
.timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 48px;
}
.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 1.5px;
  background: linear-gradient(90deg, #7B4FBE, #A07DD0);
  opacity: 0.3;
}
.timeline-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-brand);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  padding: 0 6px;
}

@media (max-width: 640px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8px;
    margin-top: 32px;
    gap: 0;
  }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 10px 0;
    align-items: center;
  }
  .timeline-step:not(:last-child)::after {
    top: calc(50% + 20px);
    left: 19px;
    right: auto;
    width: 1.5px;
    height: 100%;
    background: linear-gradient(180deg, #7B4FBE, #A07DD0);
  }
  .timeline-circle { margin-bottom: 0; }
  .timeline-label { font-size: 0.92rem; }
}

/* ============================================
   TRUST STATEMENT (Book page)
   ============================================ */
.section-trust {
  background: var(--sand);
  padding: 72px 24px;
  text-align: center;
}
trust-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.trust-lines p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  margin: 0;
}
.trust-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   COMING SOON BADGE (Programs page)
   ============================================ */
.coming-soon-badge {
  display: inline-block;
  background: var(--sand);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tier-card-muted {
  opacity: 0.75;
}
.focus-tag-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.coming-soon-badge-inline {
  margin-bottom: 0;
}

/* ============================================
   ABOUT — HIGHLIGHTED BIO SENTENCES
   ============================================ */
.about-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

/* ============================================
   CREDENTIALS SECTION (About page)
   ============================================ */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.cred-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
}
.cred-card h3 {
  font-size: 1.15rem;
  color: var(--purple-deep);
  margin-bottom: 20px;
  line-height: 1.3;
}
.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.cred-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}.cred-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-brand);
  opacity: 0.6;
}

/* ============================================
   SERVICES — FLOW DESCRIPTION TEXT
   ============================================ */
.flow-description {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* ============================================
   CORE PATHWAY — 4-COLUMN TIER GRID
   ============================================ */
.tier-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .tier-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tier-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  border: 1px solid rgba(123,79,190,0.12);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.partner-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.partner-card h3 {
  font-size: 1.05rem;
  color: var(--purple-deep);
  margin-bottom: 6px;
}
.partner-category {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}
.partner-card-muted {
  opacity: 0.65;
  border-style: dashed;
}
.partner-grid-dark {
  grid-template-columns: repeat(3, 1fr);
}
.partner-card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background var(--transition);
}
.partner-card-dark:hover {
  background: rgba(255,255,255,0.1);
}
.partner-card-dark h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}
.partner-card-dark p {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  margin: 0;
  font-style: italic;
}
.modality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.modality-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-on-dark);
  font-weight: 500;
}
.referral-section { max-width: 720px; }

@media (max-width: 900px) {
  .partner-grid,
  .partner-grid-dark,
  .modality-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .partner-grid,
  .partner-grid-dark,
  .modality-grid { grid-template-columns: 1fr; }
}

/* ============================================
   DEGREE LINE (About credentials)
   ============================================ */
.degree-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--purple-deep);
  border-left: 3px solid var(--purple-brand);
  padding: 10px 0 10px 20px;
  margin-bottom: 32px;
}

/* 3-column ongoing grid */
.ongoing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .ongoing-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT SECTION (Book page)
   ============================================ */
.contact-section { max-width: 640px; }
.contact-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: opacity var(--transition);
}
.contact-item:hover { opacity: 0.75; }
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-brand);
}
.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--purple-deep);
  line-height: 1.2;
}

/* ============================================
   PRECISION VIDEO SECTION (Services page)
   ============================================ */
.precision-video-section {
  position: relative;
  overflow: hidden;
}
.precision-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.precision-video-section .container {
  position: relative;
  z-index: 1;
}
