/*
Theme Name: ALIGN Yoga
Theme URI: https://alignyoga.in
Author: ALIGN Yoga School
Author URI: https://alignyoga.in
Description: Custom WordPress theme for ALIGN Yoga School. CPT-driven, Fraunces + Manrope, teal/orange/cream design system.
Version: 1.0
License: Proprietary
Text Domain: align-yoga
*/

/* ═══════════════════════════════════════════════════════════
   ALIGN — DESIGN SYSTEM
   Teal green (#215a5c) + Bright orange (#ff671f) + Warm cream
   Fraunces (display) + Manrope (body)
   ═══════════════════════════════════════════════════════════ */

/* ── 00. ROOT VARIABLES ── */
:root {
  --green-deep: #215a5c;
  --green-dark: #163e40;
  --green-mid:  #2d7679;
  --orange:       #ff671f;
  --orange-hover: #e5541a;
  --orange-soft:  #ff8647;
  --cream:        #f5f1ea;
  --cream-warm:   #ede6d8;
  --stone:        #e3ddd0;
  --ink:          #1a1a1a;
  --ink-soft:     #5a5653;
  --line:         rgba(26, 26, 26, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', -apple-system, sans-serif;
  --section-pad:  clamp(4rem, 10vw, 8rem);
  --container:    1240px;
}

/* ── 01. RESET + BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }

/* ── 02. TYPOGRAPHY UTILITIES ── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--light { color: var(--cream); }
.eyebrow--sanskrit {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--cream);
}

/* ── 03. ACCESSIBILITY ── */
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: var(--orange); color: var(--cream);
  padding: 0.5rem 1rem; border-radius: 4px; z-index: 1000;
}

/* ── 04. ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--green-deep);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.announcement a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  margin-left: 0.35rem;
}

/* ── 05. NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo__mark {
  width: 32px;
  height: 32px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a.is-current { color: var(--orange); }
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--orange);
}
.nav__cta {
  background: var(--orange);
  color: var(--cream);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--orange-hover); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--green-deep);
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 1rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
  gap: 0.75rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:hover { color: var(--orange); }
.nav__mobile .nav__cta { border: none; text-align: center; margin-top: 0.5rem; }

/* ── 06. BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: var(--cream);
  padding: 1.05rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 103, 31, 0.32);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline--green {
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-outline--green:hover { background: var(--green-deep); color: var(--cream); }
.btn-outline--light { color: var(--cream); border-color: var(--cream); }
.btn-outline--light:hover { background: var(--cream); color: var(--green-deep); }

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s;
  border: none;
  font-family: var(--font-body);
}
.btn-whatsapp:hover {
  background: #1ebe58;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* ── 07. CAROUSEL (reusable) ── */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
}
.carousel__dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.carousel__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.carousel__dot.is-active { background: var(--orange); transform: scale(1.25); }
.carousel__dot:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.carousel__dots--light .carousel__dot { background: rgba(245, 241, 234, 0.3); }
.carousel__dots--light .carousel__dot.is-active { background: var(--orange); }

/* ── 08. SECTION HEADING (reusable) ── */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.section-head .eyebrow { margin-bottom: 1rem; display: block; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144;
}
.section-head h2 em { font-style: italic; color: var(--orange); }
.section-head__sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-top: 1.25rem;
}

/* ── 09. PAGE HERO (all sub-pages) ── */
.page-hero {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 25%, rgba(255, 103, 31, 0.18), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(45, 118, 121, 0.5), transparent 55%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-hero__inner--single { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.page-hero__breadcrumb {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  margin-bottom: 1.2rem;
}
.page-hero__breadcrumb a { color: rgba(245, 241, 234, 0.55); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--orange); }
.page-hero__breadcrumb span { color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
  max-width: 16ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.page-hero__lede {
  color: rgba(245, 241, 234, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 660px;
}
/* Right-side discipline index in disciplines hero */
.page-hero__index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 1px solid rgba(245, 241, 234, 0.18);
  padding-left: 2rem;
}
@media (max-width: 900px) {
  .page-hero__index { border-left: none; padding-left: 0; border-top: 1px solid rgba(245, 241, 234, 0.18); padding-top: 2rem; }
}
.page-hero__index a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.6rem 0;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  transition: color 0.2s, transform 0.2s;
}
.page-hero__index a:last-child { border-bottom: none; }
.page-hero__index a:hover { color: var(--orange); transform: translateX(4px); }
.page-hero__index .num { font-family: var(--font-display); font-style: italic; color: var(--orange); font-size: 0.85rem; letter-spacing: 0.05em; }
.page-hero__index .name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.page-hero__index .arrow { color: rgba(245, 241, 234, 0.4); font-size: 1.1rem; }

/* ── 10. FOOTER ── */
footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 3.5rem;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__brand .logo__mark { background: var(--orange); color: var(--green-deep); }
.footer__tagline {
  color: rgba(245, 241, 234, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.65rem; }
.footer__col a {
  color: rgba(245, 241, 234, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding: 1.75rem clamp(1.5rem, 4vw, 3rem) 0;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a { color: rgba(245, 241, 234, 0.6); text-decoration: none; transition: color 0.2s; }
.footer__social a:hover { color: var(--orange); }
/* Minimal footer variant (disciplines page) */
.footer-min {
  background: var(--green-deep);
  color: var(--cream);
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  text-align: center;
}
.footer-min__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.footer-min__copy {
  color: rgba(245, 241, 234, 0.45);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════ */

/* ── HERO CAROUSEL ── */
.hero {
  position: relative;
  background: var(--green-deep);
  padding: 0 0 3.5rem;
}
.hero__slide {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__slide-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.hero__slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22,62,64,0.88) 0%, rgba(22,62,64,0.55) 55%, rgba(22,62,64,0.15) 100%);
  z-index: 2;
}
.hero__slide-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 4vw, 3rem) 4rem;
  width: 100%;
}
.hero__eyebrow { color: var(--orange); margin-bottom: 1.5rem; }
.hero__headline {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.2vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__headline em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub {
  color: rgba(245, 241, 234, 0.85);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.55;
}
.hero__sankalpa {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__ctas {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero .carousel__dots { margin-top: 1.75rem; }

/* ── MAT & INTERNET STRIP ── */
.mat-strip {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.mat-strip__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  color: var(--green-deep);
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto 1.75rem;
  font-weight: 400;
}
.mat-strip__lead em { color: var(--orange); font-style: italic; }
.mat-strip__pills { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.mat-pill {
  background: var(--stone);
  color: var(--green-deep);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mat-pill svg { width: 16px; height: 16px; color: var(--orange); }

/* ── PAIN CAROUSEL ── */
.pain {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem clamp(1.5rem, 4vw, 3rem);
}
.pain__track { max-width: 900px; margin: 0 auto; }
.pain__slide { text-align: center; padding: 0.5rem 0; }
.pain__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pain__text em, .pain__text strong { color: var(--orange); font-weight: 500; font-style: italic; }

/* ── MEMBERSHIPS ── */
.memberships { padding: var(--section-pad) 0; background: var(--cream); }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 980px) { .membership-grid { grid-template-columns: 1fr; max-width: 500px; } }
.mcard {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--line);
  position: relative;
}
.mcard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(33, 90, 92, 0.1); }
.mcard--highlight { border: 2px solid var(--orange); transform: scale(1.02); }
.mcard--highlight:hover { transform: scale(1.02) translateY(-4px); }
.mcard__badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange); color: white;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 3;
}
.mcard__media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.mcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mcard__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.mcard__title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  color: var(--green-deep); margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.mcard__desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; line-height: 1.55; }
.mcard__price {
  font-family: var(--font-display);
  font-size: 1.55rem; color: var(--green-deep);
  margin-bottom: 1.5rem; font-weight: 500; line-height: 1.2;
}
.mcard__price-unit {
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--ink-soft);
  font-weight: 400; margin-left: 0.35rem;
}
.mcard__cta {
  background: var(--orange); color: var(--cream);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  text-align: center; transition: background 0.2s;
  margin-bottom: 0.9rem; display: inline-flex;
  align-items: center; justify-content: center; gap: 0.4rem;
}
.mcard__cta:hover { background: var(--orange-hover); }
.mcard__gift {
  color: var(--green-deep); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  text-align: center; border-bottom: 1px solid var(--line);
  padding-bottom: 2px; align-self: center;
  transition: color 0.2s, border-color 0.2s;
}
.mcard__gift:hover { color: var(--orange); border-color: var(--orange); }

/* ── PROMISE LINE ── */
.promise {
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #215a5c 0%, #163e40 100%);
  overflow: hidden;
}
.promise__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,103,31,0.25), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(255,103,31,0.15), transparent 50%);
}
.promise__text {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
  color: var(--cream); text-align: center;
  max-width: 900px; line-height: 1.2;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.promise__text::before, .promise__text::after {
  content: ""; display: block;
  width: 60px; height: 1px;
  background: var(--orange); margin: 0 auto; opacity: 0.6;
}
.promise__text::before { margin-bottom: 1.75rem; }
.promise__text::after  { margin-top: 1.75rem; }
.promise__text small {
  display: block;
  font-family: var(--font-body); font-size: 0.85rem;
  font-style: normal; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  margin-top: 1.25rem; font-weight: 500;
}

/* ── POWER OF 5 ── */
.power5 { padding: var(--section-pad) 0; background: var(--cream-warm); }
.power5__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .power5__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.power5__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.1;
  margin: 1rem 0 0;
  font-variation-settings: "opsz" 144;
}
.power5__head h2 em { color: var(--orange); font-style: italic; }
.power5__list { list-style: none; }
.power5__item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.25rem; align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.power5__item:last-child { border-bottom: 1px solid rgba(26, 26, 26, 0.12); }
.power5__num {
  font-family: var(--font-display);
  font-size: 3.25rem; font-weight: 300;
  color: var(--orange); line-height: 0.9;
  font-variation-settings: "opsz" 144;
}
.power5__item-title {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--green-deep);
  margin-bottom: 0.25rem; font-weight: 500; letter-spacing: -0.01em;
}
.power5__item-desc { color: var(--ink-soft); font-size: 0.95rem; }
.power5__footer {
  grid-column: 1 / -1; text-align: center; margin-top: 2rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--green-deep);
}

/* ── METHOD PILLARS ── */
.method { padding: var(--section-pad) 0; background: var(--cream); }
.method__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 1100px) { .method__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .method__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .method__grid { grid-template-columns: 1fr; } }
.pillar {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream-warm); }
@media (max-width: 1100px) { .pillar { border-bottom: 1px solid var(--line); } }
.pillar__num {
  font-family: var(--font-display);
  font-size: 0.85rem; color: var(--orange);
  letter-spacing: 0.1em; margin-bottom: 1.5rem; display: block;
}
.pillar__icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--green-deep);
}
.pillar__icon svg { width: 18px; height: 18px; }
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--green-deep);
  margin-bottom: 0.4rem; letter-spacing: -0.01em; font-weight: 500;
}
.pillar__desc { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }
.method__link { text-align: center; margin-top: 2.5rem; }
.method__link a {
  color: var(--orange); text-decoration: none;
  font-weight: 600; border-bottom: 1px solid var(--orange); padding-bottom: 2px;
}

/* ── FIVE DISCIPLINES CARDS (homepage) ── */
.disciplines { padding: var(--section-pad) 0; background: var(--cream-warm); }
.disciplines__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 1100px) { .disciplines__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .disciplines__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .disciplines__grid { grid-template-columns: 1fr; } }
.dcard {
  background: white; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dcard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(33,90,92,0.08); }
.dcard__media { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.dcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dcard__media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
  z-index: 1; pointer-events: none;
}
.dcard__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--cream); color: var(--green-deep);
  padding: 0.4rem 0.95rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; z-index: 2;
}
.dcard__title {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.6vw, 1.75rem);
  color: var(--cream); line-height: 1.08; z-index: 2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.dcard__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dcard__desc { color: var(--ink); font-size: 0.92rem; line-height: 1.5; margin-bottom: 1.25rem; flex: 1; }
.dcard__meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
.dcard__pill {
  background: var(--stone); color: var(--green-deep);
  padding: 0.35rem 0.8rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
}
.dcard__cta { color: var(--orange); text-decoration: none; font-weight: 600; font-size: 0.92rem; align-self: flex-start; }

/* ── THE FIVE ── */
.the-five {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.the-five__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,103,31,0.2), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255,103,31,0.15), transparent 50%);
  pointer-events: none;
}
.the-five__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem; align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 960px) { .the-five__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.the-five__visual {
  aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden; position: relative;
}
.the-five__visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.the-five__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,62,64,0.15) 0%, rgba(22,62,64,0.7) 100%);
}
.the-five__visual-label {
  position: absolute; bottom: 1.75rem; left: 1.75rem; right: 1.75rem;
  font-family: var(--font-display); font-size: 1.85rem;
  font-style: italic; color: var(--cream); z-index: 2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.the-five h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.1; margin: 1.1rem 0 1.1rem;
  font-variation-settings: "opsz" 144;
}
.the-five h2 em { font-style: italic; color: var(--orange); }
.the-five .the-five__content > p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 1.05rem; line-height: 1.6;
  margin-bottom: 1.75rem; max-width: 520px;
}
.five-facts { list-style: none; margin-bottom: 2rem; }
.five-facts li {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  font-size: 1rem;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem; align-items: baseline; line-height: 1.5;
}
.five-facts li:last-child { border-bottom: 1px solid rgba(245, 241, 234, 0.12); }
.five-facts__num {
  font-family: var(--font-display);
  color: var(--orange); font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.1em;
}
.the-five__price {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.75rem; padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
.the-five__price .amount {
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 500; color: var(--cream);
}
.the-five__price .per { color: rgba(245, 241, 234, 0.6); font-size: 0.9rem; }
.the-five__trust {
  color: rgba(245, 241, 234, 0.55);
  font-size: 0.85rem; margin-top: 1rem; line-height: 1.5;
}

/* ── BEFORE YOUR FIRST CLASS ── */
.before { padding: var(--section-pad) 0; background: var(--cream); }
.before__card {
  max-width: 980px; margin: 0 auto;
  background: white; border: 1px solid var(--line);
  border-radius: 24px; padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; position: relative;
}
.before__card::before {
  content: ""; position: absolute;
  top: 2.5rem; bottom: 2.5rem; left: 50%;
  width: 1px; background: var(--orange); opacity: 0.35;
}
@media (max-width: 780px) {
  .before__card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .before__card::before { display: none; }
}
.before__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 1.25rem;
}
.before__list { list-style: none; }
.before__list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative; color: var(--ink);
  font-size: 0.95rem; line-height: 1.45;
}
.before__list li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 600; }

/* ── LIVE TIMETABLE ── */
.timetable { padding: var(--section-pad) 0; background: var(--cream-warm); }
.timetable__head { text-align: center; margin-bottom: 2.5rem; }
.timetable__sub { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.5rem; }
.timetable__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  overflow-x: auto;
}
.tt-grid {
  display: grid;
  grid-template-columns: 110px repeat(6, 1fr);
  min-width: 720px; background: white;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
}
.tt-cell {
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 0.8rem; min-height: 70px;
}
.tt-cell:last-child, .tt-cell:nth-child(7n) { border-right: none; }
.tt-head {
  background: var(--green-deep); color: var(--cream);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.72rem;
  text-align: center; padding: 0.9rem 0.5rem;
}
.tt-time {
  font-family: var(--font-display); color: var(--green-deep);
  background: var(--cream); font-size: 0.82rem;
  font-style: italic; text-align: center;
  display: flex; align-items: center; justify-content: center; font-weight: 500;
}
.tt-class__name { font-weight: 600; color: var(--green-deep); font-size: 0.85rem; margin-bottom: 0.15rem; }
.tt-class__tag { color: var(--ink-soft); font-size: 0.72rem; }
.tt-empty {
  background: repeating-linear-gradient(
    135deg, transparent, transparent 8px,
    rgba(33,90,92,0.06) 8px, rgba(33,90,92,0.06) 9px
  );
}
.timetable__foot {
  max-width: 720px; margin: 1.5rem auto 0;
  text-align: center; color: var(--ink-soft);
  font-size: 0.88rem; font-style: italic;
}
.placeholder-note {
  display: inline-block;
  background: rgba(255,103,31,0.12); color: var(--orange-hover);
  padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em; margin-top: 0.75rem; font-style: normal;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: var(--section-pad) 0; background: var(--cream); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.quote {
  background: white; padding: 2.25rem;
  border-radius: 20px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem; color: var(--orange);
  line-height: 0.5; margin-bottom: 1rem;
  font-style: italic; opacity: 0.3;
}
.quote__text {
  font-family: var(--font-display);
  font-size: 1.1rem; line-height: 1.5;
  color: var(--green-deep); flex: 1;
  margin-bottom: 1.75rem; font-weight: 400;
}
.quote__meta {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.quote__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green-mid));
  flex-shrink: 0;
}
.quote__name { font-weight: 600; color: var(--green-deep); font-size: 0.95rem; }
.quote__detail { color: var(--ink-soft); font-size: 0.8rem; margin-top: 2px; }

/* ── COMMUNITY STRIP ── */
.community { padding: 4rem 0; background: var(--cream-warm); }
.community__inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 780px) { .community__inner { grid-template-columns: 1fr; text-align: center; } }
.community h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--green-deep); font-weight: 500;
  letter-spacing: -0.01em; margin: 0.75rem 0 0.75rem;
}
.community p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; max-width: 560px; }
@media (max-width: 780px) { .community p { margin: 0 auto; } }
.community__channels { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 780px) { .community__channels { justify-content: center; } }
.channel {
  background: white; color: var(--green-deep);
  padding: 0.9rem 1.25rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.25s;
}
.channel:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

/* ── TWO WAYS TO PRACTISE ── */
.two-ways { padding: var(--section-pad) 0; background: var(--cream); }
.two-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.75rem; max-width: 1000px;
  margin: 3rem auto 1.25rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 780px) { .two-grid { grid-template-columns: 1fr; max-width: 520px; } }
.tway {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform 0.3s;
}
.tway:hover { transform: translateY(-4px); }
.tway__media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.tway__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tway__body { padding: 1.75rem; }
.tway__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-deep); margin-bottom: 0.5rem; font-weight: 500; }
.tway__desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.5; }
.tway__link { color: var(--orange); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.two-ways__note {
  max-width: 720px; margin: 1.75rem auto 0;
  text-align: center; font-style: italic;
  color: var(--ink-soft); font-size: 0.9rem; padding: 0 1.5rem;
}

/* ── FOUNDER CAROUSEL ── */
.founder { padding: var(--section-pad) 0; background: var(--cream-warm); }
.founder__slide { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.founder__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .founder__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.founder__portrait {
  aspect-ratio: 4/5; border-radius: 24px;
  background: var(--stone); position: relative; overflow: hidden;
}
.founder__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--green-deep); margin: 1.1rem 0 1.3rem;
  font-variation-settings: "opsz" 144;
}
.founder h2 em { font-style: italic; color: var(--orange); }
.founder__quote, .founder__bio { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.1rem; max-width: 540px; }
.founder__quote { font-family: var(--font-display); font-style: italic; color: var(--green-deep); font-size: 1.15rem; }
.founder__creds { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.75rem 0; }
.cred { background: var(--stone); color: var(--green-deep); padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 500; }
.founder__link { color: var(--orange); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--orange); padding-bottom: 2px; }

/* ── TEAM ── */
.team { padding: var(--section-pad) 0; background: var(--cream); }
.team__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1000px;
  margin: 3rem auto 2rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 860px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team__grid { grid-template-columns: 1fr; max-width: 300px; } }
.tm { text-align: center; }
.tm__photo {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%;
  overflow: hidden; position: relative; background: var(--stone);
  margin-bottom: 1rem; max-width: 180px; margin-left: auto; margin-right: auto;
}
.tm__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.tm__name { font-family: var(--font-display); color: var(--green-deep); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.15rem; }
.tm__role { color: var(--ink-soft); font-size: 0.85rem; }
.team__link { text-align: center; margin-top: 0.5rem; }
.team__link a { color: var(--orange); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--orange); padding-bottom: 2px; }

/* ── BOOKS ── */
.books { padding: var(--section-pad) 0; background: var(--stone); }
.books__head { text-align: center; margin-bottom: 3.5rem; }
.books__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep); font-weight: 400;
  letter-spacing: -0.02em; margin-top: 1rem;
  font-variation-settings: "opsz" 144;
}
.books__head h2 em { color: var(--orange); font-style: italic; }
.books__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 800px;
  margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 640px) { .books__grid { grid-template-columns: 1fr; max-width: 340px; } }
.book { text-align: center; }
.book__cover {
  aspect-ratio: 3/4; border-radius: 8px; margin-bottom: 1.25rem;
  box-shadow: 0 20px 40px rgba(33,90,92,0.18), 0 6px 15px rgba(33,90,92,0.1);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.75rem 1.35rem; transition: transform 0.3s;
  position: relative; overflow: hidden;
}
.book__cover:hover { transform: translateY(-6px); }
.book__cover--1 { background: linear-gradient(160deg, #215a5c 0%, #163e40 100%); }
.book__cover--2 { background: linear-gradient(160deg, #ff671f 0%, #e5541a 100%); }
.book__cover-author {
  font-family: var(--font-body); color: rgba(245,241,234,0.7);
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-align: left;
}
.book__cover-title {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--cream); font-style: italic; text-align: left;
  line-height: 1.1; font-variation-settings: "opsz" 144, "SOFT" 100;
}
.book__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-deep); font-weight: 500; }
.book__year { color: var(--ink-soft); font-size: 0.85rem; }

/* ── CONTACT ── */
.contact-section { padding: var(--section-pad) 0; background: var(--green-deep); color: var(--cream); }
.contact-section__inner {
  max-width: 880px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.1; margin: 1rem 0 1.25rem;
}
.contact-section h2 em { font-style: italic; color: var(--orange); }

/* ═══════════════════════════════════════
   DISCIPLINES PAGE
   ═══════════════════════════════════════ */

/* Pillars Coverage Strip */
.coverage { background: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.coverage__inner { max-width: 980px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); text-align: center; }
.coverage__lead { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--green-deep); line-height: 1.35; margin-bottom: 1.5rem; font-weight: 400; }
.coverage__lead em { font-style: italic; color: var(--orange); }
.coverage__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.pillar-pill { background: var(--stone); color: var(--green-deep); padding: 0.5rem 1.1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.01em; }

/* Discipline Block */
.discipline { padding: var(--section-pad) 0; position: relative; }
.discipline:nth-of-type(odd) { background: var(--cream); }
.discipline:nth-of-type(even) { background: var(--cream-warm); }
.discipline__grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.discipline--reverse .discipline__grid { grid-template-columns: 1.05fr 1fr; }
.discipline--reverse .discipline__visual { order: 2; }
@media (max-width: 900px) {
  .discipline__grid, .discipline--reverse .discipline__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .discipline--reverse .discipline__visual { order: 0; }
}
.discipline__visual {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  position: relative; background: var(--green-deep);
}
.discipline__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.discipline__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,62,64,0.0) 50%, rgba(22,62,64,0.55) 100%);
}
.discipline__num {
  position: absolute; top: 1.5rem; left: 1.75rem;
  font-family: var(--font-display); font-size: 4rem;
  font-style: italic; color: var(--cream); line-height: 1; z-index: 2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.discipline__content { padding: 0.5rem 0; }
.discipline__tag {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; line-height: 1.4;
}
.discipline__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--green-deep); margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.discipline__content h2 em { font-style: italic; color: var(--orange); }
.discipline__lede {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.5; color: var(--green-deep);
  margin-bottom: 1.5rem; font-weight: 400;
}
.discipline__content p { color: var(--ink); font-size: 1rem; line-height: 1.65; margin-bottom: 1.1rem; }
.discipline__content p.muted { color: var(--ink-soft); }
.discipline__content em.book { font-style: italic; color: var(--green-deep); font-weight: 500; }
.callout {
  background: white; border-left: 3px solid var(--orange);
  padding: 1.1rem 1.4rem; margin: 1.5rem 0;
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem; line-height: 1.55; color: var(--ink);
}
.callout strong { color: var(--green-deep); font-weight: 600; }
.callout--dark { background: var(--green-deep); color: var(--cream); border-left-color: var(--orange); }
.callout--dark strong { color: var(--orange); }
.limbs { list-style: none; margin: 1.25rem 0 1.75rem; padding: 0; }
.limbs li {
  padding: 0.85rem 0; border-top: 1px solid var(--line);
  font-size: 0.95rem; line-height: 1.55; color: var(--ink);
}
.limbs li:last-child { border-bottom: 1px solid var(--line); }
.limbs li strong {
  font-family: var(--font-display); color: var(--green-deep);
  font-weight: 500; font-size: 1.05rem; display: block; margin-bottom: 0.15rem;
}
.limbs li em { font-style: italic; color: var(--green-deep); }
.discipline__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.meta-pill { background: var(--stone); color: var(--green-deep); padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.78rem; font-weight: 500; }

/* Where to start CTA */
.where-to-start {
  padding: var(--section-pad) 0;
  background: var(--green-deep); color: var(--cream);
  position: relative; overflow: hidden;
}
.where-to-start__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,103,31,0.22), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255,103,31,0.15), transparent 50%);
  pointer-events: none;
}
.where-to-start__inner { position: relative; max-width: 880px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); text-align: center; }
.where-to-start h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; margin: 1.2rem 0 1.5rem; font-variation-settings: "opsz" 144; }
.where-to-start h2 em { font-style: italic; color: var(--orange); }
.where-to-start p { color: rgba(245,241,234,0.82); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2.25rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.where-to-start__price { font-family: var(--font-display); font-size: 1.05rem; color: rgba(245,241,234,0.7); margin-top: 1rem; font-style: italic; }
.where-to-start__price strong { color: var(--cream); font-weight: 500; }

/* ═══════════════════════════════════════
   SUBSCRIPTIONS PAGE
   ═══════════════════════════════════════ */

.intro-block { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--cream); border-bottom: 1px solid var(--line); }
.intro-block__inner { max-width: 820px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); text-align: center; }
.intro-block p { color: var(--ink); font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.2rem; }
.intro-block p:first-child { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--green-deep); line-height: 1.4; margin-bottom: 1.5rem; font-weight: 400; }

/* Comparison Table */
.compare { padding: var(--section-pad) 0; background: var(--cream-warm); }
.compare__wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: white; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line); min-width: 720px;
}
.compare-table th, .compare-table td { padding: 1.1rem 1.25rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th { background: var(--green-deep); color: var(--cream); font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; padding-top: 1.6rem; padding-bottom: 0.4rem; border-bottom: none; vertical-align: bottom; }
.compare-table thead th:first-child { background: var(--green-dark); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,241,234,0.6); }
.compare-table .price-row td { background: var(--green-deep); color: var(--cream); font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; padding-top: 0.4rem; padding-bottom: 1.4rem; border-bottom: none; }
.compare-table .price-row td:first-child { background: var(--green-dark); font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: rgba(245,241,234,0.7); padding-top: 0; }
.compare-table .price-row .price-period { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; color: rgba(245,241,234,0.65); margin-top: 0.3rem; letter-spacing: 0.04em; }
.compare-table th.is-popular { background: var(--orange); color: var(--cream); }
.compare-table .price-row td.is-popular { background: var(--orange-hover); }
.compare-table th.is-popular::after { content: "Best Value"; display: block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.45rem; color: var(--cream); opacity: 0.85; }
.compare-table td.label { font-weight: 600; color: var(--green-deep); background: var(--cream); width: 28%; }
.compare-table .check { color: var(--orange); font-weight: 600; }
.compare-table .dash { color: var(--ink-soft); opacity: 0.5; }
.compare-table .cta-row td { padding: 1.5rem 1.25rem; background: var(--cream); border-top: 2px solid var(--line); }
.compare-table .cta-row .btn-cell { text-align: center; }
.compare-table .cta-row a { display: inline-block; padding: 0.7rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; text-decoration: none; background: var(--green-deep); color: var(--cream); transition: background 0.2s, transform 0.2s; }
.compare-table .cta-row a:hover { background: var(--green-dark); transform: translateY(-2px); }
.compare-table .cta-row a.is-popular { background: var(--orange); }
.compare-table .cta-row a.is-popular:hover { background: var(--orange-hover); }

/* Plan Cards */
.plans { padding: var(--section-pad) 0; background: var(--cream); }
.plans__grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.plan-card { background: white; border-radius: 24px; border: 1px solid var(--line); padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 760px) { .plan-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; } }
.plan-card--popular { border: 2px solid var(--orange); position: relative; }
.plan-card--popular::before { content: "Best Value"; position: absolute; top: -0.7rem; left: 2.5rem; background: var(--orange); color: var(--cream); padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.plan-card__head .eyebrow { display: block; margin-bottom: 0.8rem; }
.plan-card__name { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 500; color: var(--green-deep); letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 0.5rem; }
.plan-card__price { font-family: var(--font-display); font-size: 2.2rem; color: var(--green-deep); font-weight: 500; margin-bottom: 0.3rem; }
.plan-card__period { color: var(--ink-soft); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; }
.plan-card__body p { color: var(--ink); font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; }
.plan-card__list-head { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin: 1.5rem 0 0.85rem; }
.plan-card__list { list-style: none; padding: 0; }
.plan-card__list li { position: relative; padding: 0.45rem 0 0.45rem 1.5rem; font-size: 0.95rem; line-height: 1.5; color: var(--ink); }
.plan-card__list li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 600; }
.plan-card__cta { margin-top: 1.5rem; }

.tip-callout { background: var(--green-deep); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0; text-align: center; }
.tip-callout__inner { max-width: 700px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.tip-callout__eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.tip-callout p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.4; font-weight: 400; }
.tip-callout p em { font-style: italic; color: var(--orange); }

.booking-note { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--cream-warm); text-align: center; }
.booking-note__inner { max-width: 600px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.booking-note h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green-deep); margin-bottom: 1rem; font-weight: 400; }
.booking-note p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════
   OUR STORY PAGE
   ═══════════════════════════════════════ */

.invocation { padding: clamp(3.5rem, 7vw, 5.5rem) 0; background: var(--cream); text-align: center; border-bottom: 1px solid var(--line); }
.invocation__inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.invocation__sanskrit { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--green-deep); line-height: 1.3; margin-bottom: 0.5rem; font-weight: 400; }
.invocation__transliteration { color: var(--ink-soft); font-size: 0.95rem; letter-spacing: 0.04em; font-style: italic; margin-bottom: 0.5rem; }
.invocation__english { font-family: var(--font-display); font-size: 1.1rem; color: var(--orange); font-style: italic; margin-bottom: 2.5rem; }
.invocation__divider { width: 60px; height: 1px; background: var(--orange); margin: 0 auto 2.5rem; opacity: 0.5; }
.invocation__body { text-align: left; }
.invocation__body p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; color: var(--ink); }
.invocation__body p:last-child { margin-bottom: 0; }

.profile { padding: var(--section-pad) 0; }
.profile--founder { background: var(--cream-warm); }
.profile--teacher { background: var(--cream); }
.profile__grid { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .profile__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.profile__visual { position: sticky; top: 100px; }
@media (max-width: 900px) { .profile__visual { position: relative; top: auto; } }
.profile__photo { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--green-deep); position: relative; }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.profile__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(22,62,64,0.4) 100%); }
.profile__creds-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; margin-top: 1.5rem; }
.profile__creds-head { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; }
.profile__creds-list { list-style: none; padding: 0; }
.profile__creds-list li { font-size: 0.88rem; color: var(--ink); padding: 0.4rem 0; border-top: 1px solid var(--line); line-height: 1.4; }
.profile__creds-list li:first-child { border-top: none; padding-top: 0; }
.profile__content .eyebrow { display: block; margin-bottom: 1rem; }
.profile__name { font-family: var(--font-display); font-size: clamp(2.2rem, 4.8vw, 3.5rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; color: var(--green-deep); margin-bottom: 0.5rem; font-variation-settings: "opsz" 144; }
.profile__role { font-family: var(--font-display); font-style: italic; color: var(--orange); font-size: 1.15rem; margin-bottom: 1.5rem; }
.profile__pull { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.35rem); color: var(--green-deep); line-height: 1.5; padding: 1.25rem 0 1.25rem 1.25rem; border-left: 3px solid var(--orange); margin-bottom: 2rem; font-weight: 400; }
.profile__content p { color: var(--ink); font-size: 1rem; line-height: 1.7; margin-bottom: 1.2rem; }
.profile__sub-head { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: var(--green-deep); margin: 2.5rem 0 1.2rem; letter-spacing: -0.01em; }
.profile__books { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.profile__books li { padding: 1rem 0; border-top: 1px solid var(--line); line-height: 1.6; }
.profile__books li:last-child { border-bottom: 1px solid var(--line); }
.profile__books strong { font-family: var(--font-display); font-style: italic; color: var(--green-deep); font-weight: 500; display: block; margin-bottom: 0.25rem; font-size: 1.1rem; }
.profile__partnerships { list-style: none; padding: 0; margin: 1rem 0; }
.profile__partnerships li { padding: 1rem 0; border-top: 1px solid var(--line); line-height: 1.55; }
.profile__partnerships li:last-child { border-bottom: 1px solid var(--line); }
.profile__partnerships strong { font-weight: 600; color: var(--green-deep); display: block; margin-bottom: 0.3rem; font-size: 0.95rem; letter-spacing: 0.02em; }
.profile__partnerships ul { list-style: none; padding-left: 0; margin-top: 0.4rem; }
.profile__partnerships ul li { padding: 0.3rem 0 0.3rem 1.25rem; border-top: none; position: relative; font-size: 0.92rem; color: var(--ink-soft); }
.profile__partnerships ul li:last-child { border-bottom: none; }
.profile__partnerships ul li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 600; }
.profile__conviction { background: var(--green-deep); color: var(--cream); padding: 2rem; border-radius: 16px; margin-top: 2.5rem; }
.profile__conviction-eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.profile__conviction p { color: var(--cream); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; line-height: 1.55; margin-bottom: 0.8rem; }
.profile__conviction p:last-child { margin-bottom: 0; }
.profile__specs { list-style: none; padding: 0; margin: 1rem 0 0; }
.profile__specs li { padding: 0.7rem 0 0.7rem 1.5rem; position: relative; border-top: 1px solid var(--line); font-size: 0.98rem; }
.profile__specs li:last-child { border-bottom: 1px solid var(--line); }
.profile__specs li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 600; }

.closing-cta { padding: var(--section-pad) 0; background: var(--green-deep); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.closing-cta__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(255,103,31,0.22), transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(255,103,31,0.15), transparent 50%); }
.closing-cta__inner { position: relative; max-width: 720px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.closing-cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.8vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.15; margin: 1rem 0 1.25rem; }
.closing-cta h2 em { font-style: italic; color: var(--orange); }
.closing-cta p { color: rgba(245,241,234,0.78); font-size: 1.05rem; margin-bottom: 1.75rem; }

/* ═══════════════════════════════════════
   COMMUNITY PAGE
   ═══════════════════════════════════════ */

.why { padding: var(--section-pad) 0; background: var(--cream); }
.why__inner { max-width: 820px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.why h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; color: var(--green-deep); margin: 1rem 0 2rem; }
.why h2 em { font-style: italic; color: var(--orange); }
.why p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; color: var(--ink); }
.why__sanskrit { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--green-deep); margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--orange); text-align: center; }

.activities { padding: var(--section-pad) 0; background: var(--cream-warm); }
.activities__grid { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
@media (max-width: 900px) { .activities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .activities__grid { grid-template-columns: 1fr; } }
.activity { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.3s, box-shadow 0.3s; }
.activity:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(33,90,92,0.08); }
.activity__num { font-family: var(--font-display); font-size: 1.85rem; color: var(--orange); font-style: italic; font-weight: 400; line-height: 1; margin-bottom: 0.5rem; }
.activity__text { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-deep); line-height: 1.4; font-weight: 500; }

.whatsapp-cta { padding: var(--section-pad) 0; background: var(--green-deep); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.whatsapp-cta__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 30%, rgba(37,211,102,0.18), transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(255,103,31,0.18), transparent 55%); }
.whatsapp-cta__inner { position: relative; max-width: 680px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.whatsapp-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; margin: 1rem 0 1.5rem; }
.whatsapp-cta h2 em { font-style: italic; color: var(--orange); }
.whatsapp-cta p { color: rgba(245,241,234,0.82); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.whatsapp-cta__note { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(245,241,234,0.55); font-style: italic; }

.outreach { padding: var(--section-pad) 0; background: var(--cream); }
.outreach__intro { max-width: 720px; margin: 0 auto 3.5rem; padding: 0 clamp(1.5rem, 4vw, 3rem); text-align: center; }
.outreach__intro p { color: var(--ink); font-size: 1.05rem; line-height: 1.65; margin-top: 1.25rem; }
.outreach__grid { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .outreach__grid { grid-template-columns: 1fr; max-width: 560px; } }
.outreach-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: transform 0.3s, box-shadow 0.3s; }
.outreach-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(33,90,92,0.08); }
.outreach-card__num { font-family: var(--font-display); font-size: 0.85rem; color: var(--orange); letter-spacing: 0.1em; font-weight: 500; }
.outreach-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--green-deep); letter-spacing: -0.01em; line-height: 1.2; }
.outreach-card__body { color: var(--ink); font-size: 0.96rem; line-height: 1.6; flex: 1; }
.outreach-card__partners { font-style: italic; color: var(--green-deep); font-weight: 500; font-size: 0.92rem; padding-top: 0.85rem; border-top: 1px solid var(--line); margin-top: 0.5rem; }

.coming { padding: var(--section-pad) 0; background: var(--cream-warm); }
.coming__list { max-width: 820px; margin: 3rem auto 0; padding: 0 clamp(1.5rem, 4vw, 3rem); list-style: none; }
.coming__list li { padding: 1.5rem 0 1.5rem 2.25rem; position: relative; font-size: 1.02rem; line-height: 1.6; border-top: 1px solid var(--line); }
.coming__list li:last-child { border-bottom: 1px solid var(--line); }
.coming__list li::before { content: "→"; position: absolute; left: 0; top: 1.5rem; color: var(--orange); font-weight: 600; font-size: 1.3rem; }
.coming__list strong { display: block; font-family: var(--font-display); color: var(--green-deep); font-weight: 500; font-size: 1.15rem; margin-bottom: 0.3rem; }
.coming__closing { max-width: 720px; margin: 3rem auto 0; padding: 0 clamp(1.5rem, 4vw, 3rem); text-align: center; font-family: var(--font-display); font-style: italic; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.5; }

.support { padding: var(--section-pad) 0; background: var(--green-deep); color: var(--cream); text-align: center; }
.support__inner { max-width: 880px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.support h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; margin: 1rem 0 1.25rem; }
.support h2 em { font-style: italic; color: var(--orange); }
.support__lede { color: rgba(245,241,234,0.78); font-size: 1.1rem; line-height: 1.6; max-width: 600px; margin: 0 auto 3rem; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 680px; margin: 0 auto; }
@media (max-width: 580px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: rgba(245,241,234,0.06); border: 1px solid rgba(245,241,234,0.15); border-radius: 16px; padding: 1.75rem; text-decoration: none; text-align: left; transition: all 0.25s; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-card:hover { background: rgba(245,241,234,0.1); border-color: var(--orange); transform: translateY(-3px); }
.contact-card__label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.contact-card__value { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); font-weight: 400; word-break: break-word; }

/* ═══════════════════════════════════════
   ON-DEMAND PAGE
   ═══════════════════════════════════════ */

.how { padding: var(--section-pad) 0; background: var(--cream-warm); }
.how__grid { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
@media (max-width: 1000px) { .how__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .how__grid { grid-template-columns: 1fr; } }
.how-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.how-card__num { font-family: var(--font-display); font-size: 0.85rem; color: var(--orange); letter-spacing: 0.1em; font-weight: 500; margin-bottom: 0.5rem; }
.how-card__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-deep); font-weight: 500; letter-spacing: -0.01em; }
.how-card__body { color: var(--ink); font-size: 0.94rem; line-height: 1.55; }

.library { padding: var(--section-pad) 0; background: var(--cream); }
.library__cats { max-width: var(--container); margin: 3rem auto 0; padding: 0 clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
@media (max-width: 760px) { .library__cats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .library__cats { grid-template-columns: 1fr; } }
.cat-pill { background: white; border: 1px solid var(--line); padding: 0.95rem 1.25rem; border-radius: 12px; display: flex; align-items: baseline; gap: 0.6rem; }
.cat-pill__name { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-deep); font-weight: 500; font-style: italic; }
.cat-pill__detail { font-size: 0.82rem; color: var(--ink-soft); }

.thumbs { padding: var(--section-pad) 0; background: var(--cream-warm); }
.thumbs__intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.thumbs__placeholder-badge { display: inline-block; background: rgba(255,103,31,0.12); color: var(--orange-hover); padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.thumbs__grid { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .thumbs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .thumbs__grid { grid-template-columns: 1fr; } }
.thumb { background: white; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.thumb__image { aspect-ratio: 16/10; background: var(--green-deep); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.thumb__image::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,103,31,0.45), transparent 55%), radial-gradient(circle at 70% 70%, rgba(45,118,121,0.4), transparent 50%), linear-gradient(135deg, var(--green-mid), var(--green-deep)); }
.thumb__play { position: absolute; width: 56px; height: 56px; border-radius: 50%; background: rgba(245,241,234,0.95); display: flex; align-items: center; justify-content: center; z-index: 2; transition: transform 0.25s, background 0.25s; cursor: pointer; border: none; }
.thumb:hover .thumb__play { transform: scale(1.1); background: var(--orange); }
.thumb__play::after { content: ""; display: block; width: 0; height: 0; border-left: 14px solid var(--green-deep); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; transition: border-left-color 0.25s; }
.thumb:hover .thumb__play::after { border-left-color: var(--cream); }
.thumb__duration { position: absolute; top: 0.6rem; right: 0.6rem; background: rgba(0,0,0,0.6); color: var(--cream); padding: 0.25rem 0.55rem; border-radius: 6px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; z-index: 2; }
.thumb__body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.thumb__cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.thumb__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-deep); font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.thumb__teacher { color: var(--ink-soft); font-size: 0.82rem; margin-top: auto; }
.thumb__price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; padding-top: 0.85rem; border-top: 1px solid var(--line); }
.thumb__price { font-family: var(--font-display); color: var(--green-deep); font-weight: 500; font-size: 1.05rem; }
.thumb__buy { color: var(--orange); font-size: 0.85rem; font-weight: 600; text-decoration: none; }

.note-callout { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--green-deep); color: var(--cream); text-align: center; }
.note-callout__inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.note-callout h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; margin: 1rem 0 1.25rem; letter-spacing: -0.02em; }
.note-callout h2 em { font-style: italic; color: var(--orange); }
.note-callout p { color: rgba(245,241,234,0.82); font-size: 1.05rem; line-height: 1.6; margin-bottom: 0.85rem; }
