/* ─── The Practice Commons — Shared Stylesheet ─────────────────────────────
   Brand: EB Garamond (serif) · Inter (sans) · Linen/Deep Ink/Sage palette
   Fonts: loaded via <link> in each HTML file (not @import)
   ──────────────────────────────────────────────────────────────────────── */

:root {
  --linen:        #EDE8DC;
  --deep-ink:     #1F2521;
  --sage:         #7A8B7A;
  --cream:        #F5F1E8;
  --sage-light:   #9AAA9A;
  --white:        #FFFFFF;
  --rule-light:   rgba(122,139,122,0.25);
  --rule-dark:    rgba(154,170,154,0.2);

  /* Accent system — warm amber/terracotta for GEP CTAs and highlights */
  --warm-accent:       #B8621A;
  --warm-accent-hover: #963F10;
  --warm-accent-light: #F5E4D3;

  /* Richer dark for GEP sections */
  --forest:     #142319;

  /* Urgency/crimson — struck prices, SAVE badge, deadline alerts */
  --urgent:     #C13B1B;
  --urgent-dark: #8B2A14;
  --urgent-bg:  rgba(193,59,27,0.07);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--linen);
  color: var(--deep-ink);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--sage); }

img { max-width: 100%; display: block; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
nav {
  background: var(--linen);
  border-bottom: 1px solid var(--rule-light);
  padding: 0 2rem;
  position: sticky; top: 0; z-index: 200;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

.nav-wordmark {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--deep-ink);
  flex-shrink: 0;
}
.nav-wordmark em { font-style: italic; }
.nav-wordmark:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links a { color: var(--deep-ink); opacity: 0.65; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; text-decoration: none; }
.nav-links a.active { opacity: 1; border-bottom: 1px solid var(--sage); padding-bottom: 1px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  background: var(--warm-accent);
  color: var(--white) !important;
  border: 1px solid var(--warm-accent);
  opacity: 1 !important;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--warm-accent-hover); border-color: var(--warm-accent-hover); text-decoration: none; color: var(--white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep-ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--linen);
  border-bottom: 1px solid var(--rule-light);
  padding: 1.5rem 2rem 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--rule-light);
}
.nav-mobile a.nav-cta {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.75rem 1.25rem;
  justify-content: center;
}

/* ─── WhatsApp FAB ───────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  z-index: 190;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.07); box-shadow: 0 5px 18px rgba(0,0,0,0.25); text-decoration: none; }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1rem;
}
.hero h1 em { font-style: italic; color: var(--sage-light); }

.hero-rule {
  width: 50px; height: 1px;
  background: var(--sage-light);
  margin: 1.75rem auto;
}

.hero-intro {
  font-size: 1rem;
  color: var(--cream);
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(245,241,232,0.75);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.hero-text-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(245,241,232,0.55);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.hero-text-link:hover { color: var(--cream); }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 2.25rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 1px solid var(--sage-light);
  color: var(--cream);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--sage-light); color: var(--deep-ink); text-decoration: none; }

.btn-dark {
  border-color: var(--deep-ink);
  color: var(--deep-ink);
  background: transparent;
}
.btn-dark:hover { background: var(--deep-ink); color: var(--cream); border-color: var(--deep-ink); }

.btn-primary {
  background: var(--deep-ink);
  color: var(--cream);
  border-color: var(--deep-ink);
}
.btn-primary:hover { background: var(--sage); border-color: var(--sage); }

.btn-sage {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.btn-sage:hover { background: var(--deep-ink); border-color: var(--deep-ink); }

/* Accent buttons — warm amber, used for GEP CTAs */
.btn-accent {
  background: var(--warm-accent);
  color: var(--white);
  border-color: var(--warm-accent);
}
.btn-accent:hover { background: var(--warm-accent-hover); border-color: var(--warm-accent-hover); color: var(--white); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,241,232,0.45);
}
.btn-outline:hover { background: rgba(245,241,232,0.1); color: var(--cream); border-color: var(--cream); text-decoration: none; }

.btn-accent-outline {
  background: transparent;
  color: var(--warm-accent-light);
  border-color: var(--warm-accent);
}
.btn-accent-outline:hover { background: var(--warm-accent); color: var(--white); text-decoration: none; }

/* ─── SECTION ────────────────────────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--deep-ink); color: var(--cream); }

.section-inner { max-width: 1140px; margin: 0 auto; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--sage-light); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-rule {
  width: 44px; height: 1px;
  background: var(--sage);
  margin: 0 0 2.5rem;
}

.section-dark .section-rule { background: var(--sage-light); }

/* ─── FLAGSHIP BANNER ────────────────────────────────────────────────────── */
.flagship {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 4rem 2rem;
}

.flagship-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  border: 1px solid rgba(154,170,154,0.4);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.flagship-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--sage-light);
  border-radius: 50%;
}

.flagship h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.flagship-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}

.flagship-desc {
  color: rgba(245,241,232,0.78);
  margin-bottom: 1.75rem;
  font-size: 1.075rem;
  line-height: 1.7;
  max-width: 520px;
}

.flagship-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.flagship-scarcity {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(245,241,232,0.5);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Price block */
.price-block {
  border: 1px solid rgba(154,170,154,0.35);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.price-urgency-strip {
  background: rgba(220,100,50,0.18);
  border-bottom: 1px solid rgba(220,100,50,0.3);
  color: #e8a080;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  text-align: center;
}

.price-main-row {
  display: flex;
  gap: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(154,170,154,0.2);
}

.price-vs-col {
  margin-left: auto;
  text-align: right;
  padding-left: 1.5rem;
}

.price-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.3rem;
}

.price-amount {
  font-size: 2.75rem;
  line-height: 1.05;
  margin-bottom: 0.2rem;
  color: var(--cream);
}

.price-note { font-size: 0.8rem; color: rgba(154,170,154,0.8); line-height: 1.5; }

.price-intl {
  text-decoration: line-through;
  text-decoration-color: rgba(245,241,232,0.5);
  color: rgba(245,241,232,0.7);
  font-size: 2rem;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.price-saving-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(154,170,154,0.2);
  flex-wrap: wrap;
}

.price-saving-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--cream);
  flex: 1;
}

.price-saving {
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--deep-ink);
  padding: 0.22rem 0.65rem;
  display: inline-block;
  white-space: nowrap;
}

.price-register-btn {
  display: block;
  text-align: center;
  background: var(--cream);
  color: var(--deep-ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  margin: 1.25rem 1.5rem 0;
  transition: background 0.2s, color 0.2s;
}
.price-register-btn:hover { background: var(--linen); }

.price-stats {
  margin-top: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-stat {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-light);
  text-align: center;
}
.price-stat strong {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

/* ─── FOUR WAYS ──────────────────────────────────────────────────────────── */
.four-ways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.way-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--sage);
}

.way-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.25rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.way-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.way-card h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.way-card p { font-size: 0.93rem; color: rgba(31,37,33,0.72); line-height: 1.65; }

/* ─── FOUNDER STRIP ─────────────────────────────────────────────────────── */
.founder-strip {
  background: var(--linen);
  padding: 5rem 2rem;
}

.founder-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
}

.founder-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.founder-name { font-size: 1.9rem; font-weight: 400; line-height: 1.1; margin-bottom: 0.25rem; }

.founder-creds {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--sage);
  line-height: 1.9;
  margin-top: 1rem;
}

.founder-bio { font-size: 1.05rem; line-height: 1.75; }
.founder-bio p + p { margin-top: 1rem; }

/* ─── CTA STRIP ──────────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 4.5rem 2rem;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1rem;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.25;
}

.cta-strip p {
  color: rgba(245,241,232,0.72);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.075rem;
  line-height: 1.7;
}

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 4.5rem 2rem 3.5rem;
}

.page-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.page-hero-inner--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-hero .section-label { color: var(--sage-light); margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; }

.page-hero p.lead {
  color: rgba(245,241,232,0.72);
  font-size: 1.1rem;
  line-height: 1.72;
}


/* ─── PROGRAMMES HERO RIGHT COL ─────────────────────────────────────────── */
.prog-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(245,241,232,0.15);
}
.prog-type-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245,241,232,0.15);
}
.prog-type-list .prog-type-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.35rem;
}
.prog-type-list .prog-type-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.35rem;
  font-family: 'EB Garamond', serif;
}
.prog-type-list .prog-type-desc {
  font-size: 0.88rem;
  color: rgba(245,241,232,0.6);
  line-height: 1.6;
  margin: 0;
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-commons {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-commons-pull {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--sage);
  border-left: 3px solid var(--sage);
  padding-left: 1.5rem;
}

.about-nitasha {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.nitasha-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.cred-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.5rem; }

.cred-pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--sage);
  color: var(--sage);
  padding: 0.25rem 0.7rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-item { border-top: 1px solid var(--rule-light); padding-top: 1.25rem; }
.why-item h4 { font-size: 1.05rem; font-weight: 400; margin-bottom: 0.4rem; line-height: 1.3; }
.why-item p { font-size: 0.93rem; color: rgba(31,37,33,0.78); line-height: 1.65; }

/* ─── PROGRAMMES ─────────────────────────────────────────────────────────── */
.programmes-group { margin-bottom: 4rem; }

.group-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.programme-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.programme-cards--two-col {
  grid-template-columns: repeat(2, 1fr);
}

.programme-card {
  background: var(--white);
  padding: 2rem;
  border-top: 2px solid var(--sage);
  display: grid;
  grid-template-rows: 4rem auto 1fr auto auto;
  row-gap: 0.85rem;
}

.prog-format {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: flex-start;
}

.programme-card h3 {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.programme-card p {
  font-size: 0.93rem;
  color: rgba(31,37,33,0.75);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.prog-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--deep-ink);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prog-date { color: var(--sage); font-weight: 500; }
.prog-actions { margin-top: auto; }

/* Supervision cards */
.supervision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.supervision-card {
  background: var(--linen);
  border: 1px solid var(--rule-light);
  padding: 2rem;
  text-align: center;
}

.supervision-card h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: 0.75rem; }
.supervision-card p { font-size: 0.93rem; color: rgba(31,37,33,0.75); margin-bottom: 1rem; }
.supervision-card .prog-meta { text-align: center; }

/* ─── GEP PAGE ───────────────────────────────────────────────────────────── */
/* ─── GEP URGENCY STRIP ──────────────────────────────────────────────────── */
.gep-urgency-strip {
  background: #1c1106;
  color: #F5E4D3;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.5rem;
  text-align: center;
  position: sticky;
  top: 64px;
  z-index: 150;
  border-bottom: 1px solid rgba(184,98,26,0.35);
  line-height: 1.4;
}
.gep-urgency-strip strong { color: var(--warm-accent); }
.gep-urgency-strip a { color: var(--warm-accent); text-decoration: underline; text-decoration-color: rgba(184,98,26,0.5); }
.gep-urgency-strip .urgency-sep { margin: 0 0.75rem; opacity: 0.4; }

/* ─── GEP HERO ───────────────────────────────────────────────────────────── */
.gep-hero {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gep-badge-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(154,170,154,0.4);
  color: var(--sage-light);
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.75rem;
}

.gep-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 0.75rem;
  line-height: 1.15;
}

.gep-trainer-line {
  font-size: 1.05rem;
  color: rgba(245,241,232,0.65);
  margin-bottom: 2.25rem;
  font-style: italic;
}

.gep-meta-strip {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(154,170,154,0.18);
  border-bottom: 1px solid rgba(154,170,154,0.18);
}

.gep-meta-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  text-align: center;
}

.gep-meta-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--cream);
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.2rem;
}

.gep-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* Stats row */
.stats-bar {
  background: rgba(122,139,122,0.1);
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(154,170,154,0.15);
}

.stat { text-align: center; }
.stat-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
}

/* GEP body sections */
.gep-body { max-width: 1140px; margin: 0 auto; }

.gep-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gep-trainer-bio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.trainer-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

/* Learning outcomes */
.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.learning-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-top: 2px solid var(--sage);
}

.learning-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
  font-style: italic;
}

.learning-item p { font-size: 0.95rem; line-height: 1.65; }

/* Endorsements */
.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.endorsement {
  background: var(--white);
  padding: 1.75rem;
  border-left: 3px solid var(--sage);
  display: flex;
  flex-direction: column;
}

.endorsement blockquote {
  font-size: 0.96rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1rem;
  color: rgba(31,37,33,0.83);
  flex: 1;
}

.endorsement cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
  display: block;
  line-height: 1.5;
}

.endorsement-quote {
  font-size: 0.96rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--deep-ink);
  opacity: 0.83;
  flex: 1;
}

.endorsement-attr {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
  line-height: 1.5;
}

.endorsement-attr span {
  display: block;
  opacity: 0.75;
}

.endorsement-featured {
  background: var(--deep-ink);
  border-left-color: var(--warm-accent);
}

.endorsement-featured .endorsement-quote {
  color: var(--cream);
  opacity: 1;
}

.endorsement-featured .endorsement-attr {
  color: var(--warm-accent);
}

.endorsement-featured .endorsement-attr span {
  color: var(--cream);
  opacity: 0.65;
}

/* Fee table */
.fee-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.fee-table th {
  background: var(--deep-ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  text-align: left;
}
.fee-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(122,139,122,0.2);
  font-size: 0.95rem;
  vertical-align: top;
}
.fee-table tr:nth-child(even) td { background: var(--white); }

/* Registration form */
.reg-form-wrap {
  background: var(--white);
  padding: 3rem;
  max-width: 700px;
}

.reg-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.reg-form-wrap p.form-sub {
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 2rem;
}

.form-row { margin-bottom: 1.25rem; }

.form-row label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--deep-ink);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(122,139,122,0.4);
  background: var(--linen);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--deep-ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--sage); }
.form-row textarea { min-height: 110px; resize: vertical; }

.form-note { font-size: 0.8rem; color: var(--sage); margin-top: 0.25rem; font-family: 'Inter', sans-serif; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.radio-group { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.4rem; }
.radio-group label {
  display: flex; align-items: center; gap: 0.6rem;
  text-transform: none; letter-spacing: 0; font-size: 0.97rem;
  cursor: pointer; font-family: 'EB Garamond', Georgia, serif;
}

.form-notice {
  background: rgba(122,139,122,0.08);
  border-left: 3px solid var(--sage);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--deep-ink);
  opacity: 0.85;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}

/* T&Cs */
.tcs { font-size: 0.88rem; line-height: 1.75; }
.tcs h4 { font-size: 1rem; font-weight: 500; margin: 1.75rem 0 0.5rem; }
.tcs p { margin-bottom: 0.75rem; color: rgba(31,37,33,0.78); }
.tcs a { color: var(--warm-accent); }
.tcs table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; }
.tcs table th { background: var(--deep-ink); color: var(--cream); padding: 0.6rem 0.85rem; font-family: 'Inter', sans-serif; font-size: 0.72rem; text-align: left; letter-spacing: 0.06em; text-transform: uppercase; }
.tcs table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid rgba(122,139,122,0.2); font-size: 0.875rem; color: rgba(31,37,33,0.85); }
.tcs table tr:nth-child(even) td { background: var(--white); }
.tcs details { border-top: 1px solid var(--rule-light); }
.tcs summary { cursor: pointer; padding: 1rem 0; font-weight: 500; list-style: none; display: flex; justify-content: space-between; }
.tcs summary::after { content: '+'; font-size: 1.2rem; color: var(--sage); }
.tcs details[open] summary::after { content: '−'; }
.tcs details div { padding: 0 0 1rem; }

/* Muted text helpers (replace inline rgba colours that break in dark mode) */
.text-muted-sm { font-size: 0.92rem; color: rgba(31,37,33,0.65); }
.text-muted-xs { font-size: 0.82rem; color: rgba(31,37,33,0.6); }
.text-muted-label { font-size: 0.85rem; color: rgba(31,37,33,0.55); margin-top: 0.2rem; }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
  background: var(--white);
}

.contact-detail { margin-bottom: 2rem; }
.contact-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.contact-detail p, .contact-detail a { font-size: 1rem; line-height: 1.65; color: var(--deep-ink); }
.contact-detail a:hover { color: var(--sage); text-decoration: none; }

/* ─── LEGAL PAGES ────────────────────────────────────────────────────────── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-body h2 { font-size: 1.3rem; font-weight: 400; margin: 2.5rem 0 0.75rem; border-top: 1px solid var(--rule-light); padding-top: 2rem; }
.legal-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body p { margin-bottom: 0.75rem; color: rgba(31,37,33,0.82); }
.legal-body ul { margin: 0.75rem 0 0.75rem 1.5rem; }
.legal-body li { margin-bottom: 0.4rem; color: rgba(31,37,33,0.82); }
.legal-body table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.88rem; }
.legal-body table th { background: var(--deep-ink); color: var(--cream); padding: 0.6rem 0.85rem; font-family: 'Inter', sans-serif; font-size: 0.72rem; text-align: left; }
.legal-body table td { padding: 0.6rem 0.85rem; border-bottom: 1px solid rgba(122,139,122,0.2); }
.legal-body table tr:nth-child(even) td { background: var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--deep-ink);
  color: rgba(245,241,232,0.55);
  padding: 3.5rem 2rem 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(154,170,154,0.12);
}

.footer-brand .nav-wordmark { color: var(--cream); font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { margin-top: 0.4rem; font-size: 0.78rem; color: var(--sage-light); line-height: 1.7; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(245,241,232,0.55); font-size: 0.85rem; }
.footer-col a:hover { color: var(--cream); text-decoration: none; }

.footer-bottom {
  max-width: 1140px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(245,241,232,0.32);
  font-family: 'Inter', sans-serif;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .four-ways { grid-template-columns: repeat(2, 1fr); }
  .founder-inner { grid-template-columns: 180px 1fr 1.2fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 4.5rem 1.5rem 4rem; }
  .flagship-inner { grid-template-columns: 1fr; }
  .four-ways { grid-template-columns: 1fr 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-img { width: 200px; }

  .about-commons { grid-template-columns: 1fr; gap: 2rem; }
  .about-gep-grid { grid-template-columns: 1fr !important; }
  .about-nitasha { grid-template-columns: 1fr; }
  .nitasha-img { width: 200px; margin-bottom: 1.5rem; }

  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .gep-meta-strip { gap: 1.5rem; }
  .stats-bar { gap: 2rem; }
  .gep-two-col { grid-template-columns: 1fr; }

  /* Programmes hero and personal practice grid collapse on mobile */
  .page-hero-inner--two-col {
    display: block;
  }
  .page-hero-inner--two-col > div:last-child {
    margin-top: 2rem;
  }
  .programme-cards--two-col {
    grid-template-columns: 1fr;
  }
  .gep-trainer-bio { grid-template-columns: 1fr; }
  .trainer-img { width: 200px; }

  .supervision-cards { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }

  .section { padding: 3.5rem 1.5rem; }

  /* Tables scroll horizontally on mobile instead of overflowing */
  .fee-table, .fee-table-light, .legal-body table, .tcs table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 540px) {
  .four-ways { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .flagship-inner { gap: 2rem; }
  .about-gep-grid { grid-template-columns: 1fr !important; padding: 2rem !important; }
}

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.text-sage { color: var(--sage); }
.text-sage-light { color: var(--sage-light); }
.text-cream { color: var(--cream); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ─── GEP NEW SECTIONS ───────────────────────────────────────────────────── */

/* Stat accent */
.stat-num.stat-accent { color: var(--warm-accent); }

/* GEP intro grid */
.gep-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.gep-intro-text p { margin-bottom: 1rem; }
.gep-intro-text p:last-child { margin-bottom: 0; }

.gep-callout-box {
  background: var(--deep-ink);
  color: var(--cream);
  padding: 2rem;
  border-left: 3px solid var(--warm-accent);
}
.gep-callout-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}
.gep-callout-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1rem;
}
.gep-callout-attr {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--sage-light);
  line-height: 1.5;
}
.gep-callout-meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(154,170,154,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--sage-light);
}

/* GEP book section */
.gep-book-section {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 2rem;
}
.gep-book-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}
.gep-book-img img {
  width: 100%;
  max-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border-radius: 2px;
}
.gep-book-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.gep-book-text p { color: rgba(245,241,232,0.82); margin-bottom: 0.75rem; }
.gep-book-facts {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(154,170,154,0.2);
}
.gep-book-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.gep-book-fact strong {
  font-size: 1.75rem;
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--warm-accent);
  line-height: 1;
}
.gep-book-fact span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-light);
}

/* GEP list */
.gep-list {
  margin: 1rem 0 0 1.25rem;
  line-height: 1.8;
}
.gep-list li { margin-bottom: 0.3rem; }

/* GEP what's included */
.gep-what-included {
  background: var(--linen);
  border: 1px solid var(--rule-light);
  padding: 1.75rem;
}
.gep-included-list { list-style: none; margin: 0; }
.gep-included-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 0.95rem;
}
.gep-included-list li:last-child { border-bottom: none; }
.gep-included-list .check {
  color: var(--warm-accent);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* GEP community / group photo section */
.gep-community-section {
  background: var(--deep-ink);
  padding: 5rem 2rem;
  color: var(--cream);
}
.gep-community-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.gep-community-text p { color: rgba(245,241,232,0.82); }
.gep-community-img img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: cover;
  max-height: 420px;
}

/* GEP India pricing reveal section */
/* ─── GEP PRICING SECTION — The peak moment ─────────────────────────────── */
.gep-pricing-section {
  background: var(--linen);
  color: var(--deep-ink);
  padding: 5.5rem 2rem 5rem;
  text-align: center;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.gep-pricing-inner {
  max-width: 860px;
  margin: 0 auto;
}
.gep-pricing-eyebrow-highlight {
  font-size: 0.82rem;
  color: var(--warm-accent);
  font-weight: 600;
}
.gep-pricing-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.gep-pricing-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--deep-ink);
}
.gep-pricing-sub {
  font-size: 1.05rem;
  color: rgba(31,37,33,0.65);
  max-width: 540px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
  font-style: italic;
}

/* Two-column price drama — like the brochure */
.gep-price-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 0;
  flex-wrap: wrap;
}

.gep-price-intl {
  flex: 1;
  min-width: 220px;
  padding: 2.5rem 2rem;
  text-align: center;
  opacity: 1;
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule-light);
}

.gep-price-india {
  flex: 1.4;
  min-width: 260px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  background: transparent;
  border: none;
}

.gep-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  display: block;
}

/* Struck international price — large, red, impossible to miss */
.gep-price-struck {
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.gep-price-struck span {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: var(--urgent);
  color: var(--urgent);
  letter-spacing: -0.02em;
}

.gep-price-note-intl {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(31,37,33,0.4);
  margin-top: 0.5rem;
  font-style: italic;
}

/* India price — large, dominant, with floating SAVE badge */
.gep-price-amount {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(3.25rem, 9vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--deep-ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.gep-price-gst {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(31,37,33,0.5);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.75rem;
}

/* Round crimson SAVE badge — floating top-right of India column */
.gep-save-badge {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--urgent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  flex-direction: column;
}

.gep-price-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: rgba(31,37,33,0.55);
  margin-top: 0.5rem;
}

/* The brochure's iconic italic tagline */
.gep-pricing-tagline {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(31,37,33,0.68);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule-light);
}

.gep-fee-breakdown { margin-top: 0; }
.gep-fee-breakdown-rule {
  border: none;
  border-top: 1px solid var(--rule-light);
  margin: 2.5rem 0;
}

.fee-table-light { width: 100%; text-align: left; }
.fee-table-light th {
  background: rgba(31,37,33,0.05);
  color: var(--sage);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--rule-light);
}
.fee-table-light td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--rule-light);
  font-size: 0.95rem;
  color: var(--deep-ink);
}
.fee-table-light tbody tr:nth-child(even) td { background: rgba(31,37,33,0.03); }

.gep-deadline-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--urgent);
  margin-top: 1.25rem;
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--urgent-bg);
  border-left: 2px solid var(--urgent);
}

/* Seats notice near the form */
.gep-seats-notice {
  background: var(--urgent-bg);
  border: 1px solid rgba(193,59,27,0.2);
  border-left: 3px solid var(--urgent);
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: var(--deep-ink);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* Payment methods strip */
.payment-strip {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--rule-light);
  border-radius: 2px;
}
.payment-strip-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.razorpay-logo {
  height: 22px;
  width: auto;
  display: inline-block;
}
.payment-strip-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--deep-ink);
  font-weight: 500;
}
.payment-strip-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(31,37,33,0.6);
  margin-bottom: 1rem;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}
.payment-icons img {
  height: 24px;
  width: auto;
  object-fit: contain;
  border: 1px solid var(--rule-light);
  border-radius: 3px;
  padding: 2px 4px;
  background: white;
}
.payment-strip-footer {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(31,37,33,0.5);
  line-height: 1.5;
}

/* Founder strip — no photo variant */
.founder-inner-no-photo {
  grid-template-columns: 1fr 1.4fr !important;
}
@media (max-width: 768px) {
  .founder-inner-no-photo { grid-template-columns: 1fr !important; }
}

/* Responsive: new GEP sections */
@media (max-width: 768px) {
  .gep-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gep-book-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gep-book-img img { max-width: 180px; margin: 0 auto; }
  .gep-community-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gep-price-compare { flex-direction: column; gap: 0; }
  .gep-price-intl { border-right: none; border-bottom: 1px solid var(--rule-light); }
  .gep-price-intl, .gep-price-india { min-width: unset; width: 100%; padding: 2rem 1.5rem; }
  .gep-save-badge { top: 1rem; right: 1rem; width: 64px; height: 64px; font-size: 0.6rem; }
  .gep-price-amount { font-size: clamp(2.75rem, 12vw, 5.5rem); }
  .gep-book-facts { gap: 1.25rem; }
}

/* ─── DARK MODE ──────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --linen:    #1e1e1b;
    --deep-ink: #EDE8DC;
    --cream:    #F5F1E8;
    --white:    #2a2a26;
    --sage:     #9AAA9A;
    --sage-light: #7A8B7A;
    --rule-light: rgba(154,170,154,0.2);
    --rule-dark:  rgba(154,170,154,0.12);
  }

  body { background: #1a1a17; color: var(--deep-ink); }

  nav { background: #1a1a17; border-bottom-color: var(--rule-light); }
  .nav-mobile { background: #1a1a17; }
  .nav-hamburger span { background: var(--deep-ink); }

  .way-card { background: #242420; }
  .endorsement { background: #242420; }
  .endorsement-quote { color: var(--deep-ink); opacity: 0.85; }
  .endorsement-featured { background: #0f1810; border-left-color: var(--warm-accent); }
  .endorsement-featured .endorsement-quote { color: var(--cream); opacity: 1; }
  .endorsement-featured .endorsement-attr { color: var(--warm-accent); }
  .endorsement-featured .endorsement-attr span { color: var(--cream); opacity: 0.65; }
  .programme-card { background: #242420; }
  .learning-item { background: #242420; }
  .supervision-card { background: #1e1e1b; }
  .reg-form-wrap { background: #242420; }
  .contact-form .form-row input,
  .contact-form .form-row textarea { background: #242420; border-color: rgba(154,170,154,0.3); color: var(--deep-ink); }

  .section-alt { background: #242420; }
  .section-white { background: #242420; }

  .hero { background: #0f0f0d; }
  .flagship { background: #0f0f0d; }
  .flagship-scarcity { color: rgba(245,241,232,0.45); }
  .price-urgency-strip { background: rgba(220,100,50,0.2); border-bottom-color: rgba(220,100,50,0.35); color: #e8a080; }
  .price-amount { color: var(--cream); }
  .price-saving-text { color: var(--cream); }
  .price-register-btn { background: #F5F1E8; color: #1F2521; }
  .price-register-btn:hover { background: #EDE8DC; color: #1F2521; }
  .cta-strip { background: #0f0f0d; }
  .page-hero { background: #0f0f0d; }
  .gep-hero { background: #0f0f0d; }
  footer { background: #0f0f0d; }

  .form-row input, .form-row select, .form-row textarea {
    background: #1e1e1b;
    border-color: rgba(154,170,154,0.3);
    color: var(--deep-ink);
  }

  .fee-table tr:nth-child(even) td { background: #242420; }
  .tcs table tr:nth-child(even) td { background: #242420; }
  .legal-body table tr:nth-child(even) td { background: #242420; }

  /* ── Dark mode button fixes ─────────────────────────────────────────── */
  /* Base btn: outline button — cream border/text on dark bg, hover fills sage */
  .btn { border-color: rgba(245,241,232,0.5); color: var(--cream); }
  .btn:hover { background: rgba(245,241,232,0.12); color: var(--cream); border-color: rgba(245,241,232,0.6); }

  /* btn-dark: inverts in dark mode — show as cream outline */
  .btn-dark { border-color: rgba(245,241,232,0.5); color: var(--cream); background: transparent; }
  .btn-dark:hover { background: rgba(245,241,232,0.12); color: var(--cream); border-color: rgba(245,241,232,0.6); }

  /* btn-primary: in dark mode --deep-ink inverts to cream — making cream-on-cream invisible */
  .btn-primary {
    background: var(--warm-accent);
    color: #fff;
    border-color: var(--warm-accent);
  }
  .btn-primary:hover {
    background: var(--warm-accent-hover);
    border-color: var(--warm-accent-hover);
    color: #fff;
  }

  /* section-dark: --deep-ink inverts to cream in dark mode — must override explicitly */
  .section-dark { background: #0f0f0d; color: var(--cream); }
  .stat-num { color: var(--cream); }

  /* GEP new sections — dark mode */
  .gep-book-section { background: #142319; }
  .gep-community-section { background: #0f0f0d; }

  /* Pricing section stays light-ish in dark mode — use dark linen */
  .gep-pricing-section { background: #1e1c18; color: var(--cream); }
  .gep-pricing-eyebrow-highlight {
  font-size: 0.82rem;
  color: var(--warm-accent);
  font-weight: 600;
}
.gep-pricing-eyebrow { color: var(--sage-light); }
  .gep-pricing-headline { color: var(--cream); }
  .gep-pricing-sub { color: rgba(245,241,232,0.75); }
  .gep-pricing-tagline { color: rgba(245,241,232,0.65); border-top-color: rgba(154,170,154,0.2); }
  .gep-price-intl { background: transparent; border-right-color: rgba(154,170,154,0.2); }
  .gep-price-india { background: transparent; }
  .gep-price-note-intl { color: rgba(245,241,232,0.35); }
  .gep-price-label { color: var(--sage-light); }
  .gep-price-amount { color: var(--cream); }
  .gep-price-note { color: rgba(245,241,232,0.55); }
  .gep-fee-breakdown-rule { border-color: rgba(154,170,154,0.2); }

  .fee-table-light th { background: rgba(255,255,255,0.06); color: var(--sage-light); }
  .fee-table-light td { color: rgba(245,241,232,0.85); border-bottom-color: rgba(154,170,154,0.15); }
  .fee-table-light tbody tr:nth-child(even) td { background: rgba(255,255,255,0.04); }

  .gep-deadline-note { color: var(--urgent); background: rgba(193,59,27,0.1); }
  .gep-seats-notice { background: rgba(193,59,27,0.1); border-color: rgba(193,59,27,0.3); color: var(--cream); }
  .gep-urgency-strip { background: #1a1209; border-bottom-color: rgba(184,98,26,0.4); }

  .gep-callout-box { background: rgba(255,255,255,0.06); border-color: rgba(154,170,154,0.3); color: var(--cream); }
  .gep-what-included { background: #242420; border-color: rgba(154,170,154,0.25); }
  .payment-strip { background: #1e1e1b; border-color: rgba(154,170,154,0.2); }
  .payment-strip-label { color: var(--cream); }
  .payment-strip-note { color: rgba(245,241,232,0.55); }
  .payment-strip-footer { color: rgba(245,241,232,0.4); }
  .payment-icons img { background: rgba(255,255,255,0.08); border-color: rgba(154,170,154,0.15); }
  .form-notice { background: rgba(255,255,255,0.05); color: rgba(245,241,232,0.78); border-left-color: var(--sage); }
  .gep-intro-aside .gep-callout-box { color: var(--cream); }

  /* T&Cs accordion — accordion content is invisible without these */
  .tcs p { color: rgba(245,241,232,0.78); }
  .tcs a { color: var(--warm-accent); }
  .tcs table th { background: rgba(255,255,255,0.08); color: var(--sage-light); }
  .tcs table td { color: rgba(245,241,232,0.85); }

  /* Pricing GST/note label */
  .gep-price-gst { color: rgba(245,241,232,0.45); }

  /* Muted text helpers */
  .text-muted-sm { color: rgba(245,241,232,0.6); }
  .text-muted-xs { color: rgba(245,241,232,0.5); }
  .text-muted-label { color: rgba(245,241,232,0.5); }

  /* ── Hardcoded rgba text — invisible in dark mode without these ─────────── */
  .way-card p { color: rgba(245,241,232,0.65); }
  .why-item p { color: rgba(245,241,232,0.65); }
  .programme-card p { color: rgba(245,241,232,0.65); }
  .supervision-card p { color: rgba(245,241,232,0.65); }
  .endorsement blockquote { color: rgba(245,241,232,0.78); }
  .legal-body p { color: rgba(245,241,232,0.75); }
  .legal-body li { color: rgba(245,241,232,0.75); }
}

/* ─── EMAIL CAPTURE STRIP ──────────────────────────────────────────────────── */
.email-capture {
  background: var(--bg);
  border-top: 1px solid var(--rule-light);
  padding: 3rem 1.5rem;
  text-align: center;
}
.email-capture-inner {
  max-width: 520px;
  margin: 0 auto;
}
.email-capture h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--deep-ink);
  margin: 0 0 0.5rem;
}
.email-capture p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.email-capture-form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.email-capture-form input[type="email"] {
  flex: 1 1 240px;
  max-width: 300px;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--deep-ink);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  background: var(--bg-card);
  color: var(--deep-ink);
  outline: none;
  transition: border-color 0.2s;
}
.email-capture-form input[type="email"]:focus {
  border-color: var(--sage);
}
.email-capture-form input[type="email"]::placeholder {
  color: var(--text-faint);
}
.email-capture-form button {
  padding: 0.65rem 1.4rem;
  background: var(--deep-ink);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.email-capture-form button:hover {
  opacity: 0.82;
}
.email-capture-note {
  margin-top: 0.9rem !important;
  font-size: 0.74rem !important;
  color: var(--text-faint) !important;
}

@media (max-width: 540px) {
  .email-capture-form {
    flex-direction: column;
    align-items: stretch;
  }
  .email-capture-form input[type="email"] {
    max-width: 100%;
  }
}

@media (prefers-color-scheme: dark) {
  .email-capture {
    background: var(--bg);
    border-top-color: var(--rule-light);
  }
  .email-capture h3 { color: var(--cream); }
  .email-capture-form input[type="email"] {
    background: var(--bg-card);
    color: var(--cream);
    border-color: var(--border);
  }
  .email-capture-form button {
    background: #F5F1E8;
    color: #1F2521;
  }
}
