:root {
  --ink: #17211b;
  --forest: #193d32;
  --forest-2: #245747;
  --forest-3: #102b23;
  --cream: #fbf8f1;
  --sand: #f2e8d5;
  --saffron: #c77c22;
  --saffron-text: #8a4b08;
  --orange: #d97706;
  --lotus: #a84a61;
  --white: #fff;
  --border: #d8d0c2;
  --border-dark: rgba(255,255,255,.18);
  --muted: #5d665f;
  --success: #2f6b4f;
  --warning: #8a5b16;
  --error: #9f2d2d;
  --shadow-sm: 0 10px 28px rgba(20, 34, 28, .08);
  --shadow-md: 0 24px 65px rgba(20, 34, 28, .13);
  --shadow-soft: 0 12px 34px rgba(20, 34, 28, .08);
  --sage-soft: #e5eee9;
  --focus: #9b5000;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shell: 1280px;
  --reading: 760px;
  --header-h: 76px;
  --serif: "Iowan Old Style", "Noto Serif", "Noto Serif Devanagari", Georgia, serif;
  --sans: Inter, "Noto Sans", "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--cream); color-scheme: light; font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .16em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
.icon { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon--fill { fill: currentColor; stroke: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: -.025em; line-height: 1.08; overflow-wrap: anywhere; text-wrap: balance; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.6rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); }
p:last-child { margin-bottom: 0; }
code { background: rgba(25,61,50,.08); border-radius: 6px; padding: .12em .35em; font-size: .9em; }
::selection { background: rgba(199,124,34,.28); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; box-shadow: 0 0 0 2px rgba(255,255,255,.96); }
[hidden] { display: none !important; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: clamp(64px, 7vw, 108px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest .section-head__copy p { color: rgba(255,255,255,.72); }
.section--forest .eyebrow { color: #efb66a; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.muted { color: var(--muted); }
.lead { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.48rem); line-height: 1.55; }
.eyebrow { display: inline-block; margin-bottom: 16px; color: var(--saffron-text); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #f1ba72; }
.fine-print { color: var(--muted); font-size: .82rem; }
.form-error-summary { margin: 14px 0; padding: 12px 14px; border: 1px solid rgba(159,45,45,.35); border-radius: 10px; background: rgba(159,45,45,.07); color: var(--error); font-weight: 750; }
.form-error-summary p { margin-bottom: 8px; }
.form-error-summary ul { margin: 0; padding-left: 1.25rem; }
.form-error-summary a { color: var(--error); }
.field-error { display: block; margin-top: 6px; color: var(--error); font-size: .78rem; font-weight: 750; }
.field[aria-invalid="true"], input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 2px rgba(159,45,45,.12); }
.centered-note { margin: 34px 0 0; text-align: center; }

.skip-link { position: fixed; z-index: 10000; top: 10px; left: 10px; transform: translateY(-180%); padding: 12px 18px; border-radius: 10px; background: var(--white); color: var(--forest); font-weight: 800; }
.skip-link:focus { transform: none; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .94rem; font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--forest); color: var(--white); box-shadow: 0 8px 22px rgba(25,61,50,.16); }
.button--primary:hover { background: var(--forest-2); }
.button--secondary { border-color: var(--forest); background: transparent; color: var(--forest); }
.button--secondary:hover { background: var(--forest); color: var(--white); }
.button--saffron { background: var(--saffron); color: #15140f; box-shadow: 0 10px 30px rgba(199,124,34,.25); }
.button--saffron:hover { background: #d8953e; }
.button--light { background: var(--cream); color: var(--forest); }
.button--light:hover { background: var(--white); }
.button--ghost-light { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); }
.button--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button--compact { min-height: 44px; padding: 9px 17px; font-size: .86rem; }
.button--full { width: 100%; }
.button-row, .hero__actions, .page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-stack { display: flex; flex-direction: column; align-items: stretch; gap: 12px; min-width: min(100%, 300px); }
.hero .button--primary { background: var(--cream); color: var(--forest); box-shadow: 0 9px 24px rgba(0,0,0,.17); }
.hero .button--primary:hover { background: var(--white); }
.hero .button--secondary, .page-hero .button--secondary { border-color: rgba(255,255,255,.7); color: var(--white); }
.hero .button--secondary:hover, .page-hero .button--secondary:hover { border-color: var(--white); background: rgba(255,255,255,.11); color: var(--white); }
.hero .eyebrow { color: #f1ba72; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding-block: 5px; border: 0; background: none; color: var(--forest); font-weight: 800; text-decoration: none; cursor: pointer; }
.text-link .icon { transition: transform .18s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.section--forest .text-link { color: var(--cream); }

.icon-button { display: inline-grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button:hover { background: rgba(25,61,50,.08); }
.icon-button--light { color: var(--white); }
.icon-button--light:hover { background: rgba(255,255,255,.14); }

.announcement { position: relative; z-index: 82; background: var(--saffron); color: #15140f; }
.announcement__inner { min-height: 42px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
.announcement__label { border-right: 1px solid rgba(0,0,0,.24); padding-right: 16px; font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.announcement a { display: flex; gap: 12px; align-items: baseline; overflow: hidden; text-decoration: none; font-size: .88rem; }
.announcement a strong, .announcement a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.announcement a span { opacity: .8; }
.announcement__close { color: #15140f; }

.site-header { position: sticky; z-index: 80; top: 0; border-bottom: 1px solid rgba(216,208,194,.75); background: rgba(251,248,241,.92); backdrop-filter: blur(18px); }
.site-header__inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; min-width: 188px; gap: 9px; text-decoration: none; }
.brand__symbol { width: 43px; height: 33px; object-fit: contain; }
.brand__word { font-family: var(--serif); font-size: 1.52rem; font-weight: 700; letter-spacing: -.045em; }
.brand__descriptor { align-self: flex-end; margin-bottom: 13px; color: var(--saffron); font-size: .58rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 5px; }
.nav-group { position: relative; display: inline-flex; align-items: center; }
.nav-link { display: inline-flex; min-height: 44px; align-items: center; gap: 5px; padding: 0 8px; color: #25372f; font-size: .87rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.nav-link:hover, .nav-link.is-current { color: var(--saffron); }
.nav-link.is-current { box-shadow: inset 0 -2px 0 var(--saffron); }
.nav-link--external .icon { width: .9em; height: .9em; }
.nav-toggle { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; background: transparent; cursor: pointer; }
.nav-toggle .icon { width: 13px; height: 13px; transition: transform .18s ease; }
.nav-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.dropdown { position: absolute; z-index: 100; top: calc(100% + 12px); left: -18px; width: 330px; padding: 14px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-md); }
.dropdown::before { content: ""; position: absolute; top: -8px; left: 34px; width: 14px; height: 14px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); background: var(--white); transform: rotate(45deg); }
.dropdown__eyebrow { display: block; padding: 8px 10px 10px; color: var(--saffron); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.dropdown a { display: block; padding: 11px 12px; border-radius: 12px; text-decoration: none; }
.dropdown a:hover { background: var(--cream); }
.dropdown strong, .dropdown span { display: block; }
.dropdown strong { font-family: var(--serif); font-size: 1.03rem; }
.dropdown a span { margin-top: 2px; color: var(--muted); font-size: .78rem; }
.site-header__actions { display: flex; align-items: center; gap: 6px; }
.header-login { padding: 10px 7px; color: var(--forest); font-size: .86rem; font-weight: 800; text-decoration: none; }
.mobile-menu-button { display: none; }

.mobile-menu { position: fixed; z-index: 101; inset: 0 0 0 auto; width: min(92vw, 430px); overflow-y: auto; padding: 18px 20px 28px; background: var(--cream); box-shadow: -30px 0 80px rgba(10,25,19,.28); }
.mobile-menu__top { display: flex; min-height: 58px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.mobile-menu__top .brand { min-width: 0; }
.mobile-nav { padding: 20px 0; }
.mobile-nav details { border-bottom: 1px solid var(--border); }
.mobile-nav summary { display: flex; min-height: 56px; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 1.28rem; font-weight: 700; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span .icon { transition: transform .18s ease; }
.mobile-nav details[open] summary span .icon { transform: rotate(180deg); }
.mobile-nav details a { display: block; padding: 10px 8px 10px 20px; color: var(--muted); text-decoration: none; }
.mobile-nav details a:last-child { padding-bottom: 20px; }
.mobile-nav__single { display: flex; min-height: 56px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); font-family: var(--serif); font-size: 1.28rem; font-weight: 700; text-decoration: none; }
.mobile-menu__actions { display: grid; gap: 10px; padding-top: 16px; }
.site-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(8,20,16,.6); backdrop-filter: blur(3px); }

.search-dialog { position: fixed; z-index: 110; inset: 0; display: grid; overflow-y: auto; padding: 7vh 20px; place-items: start center; background: rgba(8,20,16,.72); backdrop-filter: blur(8px); }
.search-dialog__panel { width: min(760px, 100%); padding: clamp(24px, 5vw, 44px); border-radius: 26px; background: var(--cream); box-shadow: var(--shadow-md); }
.search-dialog__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.search-dialog__head h2 { margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.4rem); }
.search-field-wrap { display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid var(--border); border-radius: 15px; background: var(--white); }
.search-field-wrap:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(25,61,50,.1); }
.search-field-wrap input { width: 100%; min-height: 54px; border: 0; outline: 0; background: transparent; }
.search-results { display: grid; gap: 8px; max-height: 48vh; overflow-y: auto; padding-top: 18px; }
.search-result { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 14px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); text-decoration: none; }
.search-result:hover { border-color: var(--saffron); }
.search-result strong, .search-result span { display: block; }
.search-result span { margin-top: 3px; color: var(--muted); font-size: .82rem; }
.search-result__type { color: var(--saffron) !important; font-size: .68rem !important; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 77% 28%, #2c6452 0, var(--forest) 42%, var(--forest-3) 100%); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000 42%, #000); }
.hero__grid { position: relative; min-height: clamp(720px, 82vh, 920px); display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(40px, 7vw, 100px); padding-top: clamp(75px, 10vw, 128px); padding-bottom: clamp(75px, 10vw, 128px); }
.hero__copy { position: relative; z-index: 2; }
.hero h1 { max-width: 780px; margin-bottom: 26px; font-size: clamp(3.55rem, 7vw, 7rem); }
.hero h1 em { color: #edb56c; font-weight: inherit; }
.hero__lead { max-width: 690px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.52rem); }
.hero__actions { margin-bottom: 18px; }
.hero__text-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.83); font-weight: 800; text-decoration: none; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72); font-size: .82rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__art { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero__symbol { position: relative; z-index: 2; width: min(82%, 440px); filter: drop-shadow(0 28px 38px rgba(0,0,0,.18)); }
.hero__orbit { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.hero__orbit--one { width: 520px; height: 520px; }
.hero__orbit--two { width: 390px; height: 390px; border-style: dashed; animation: slow-rotate 34s linear infinite; }
.hero__sutra-card { position: absolute; z-index: 3; right: 0; bottom: 48px; width: min(360px, 82%); padding: 22px 25px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(251,248,241,.94); color: var(--forest); box-shadow: var(--shadow-md); }
.hero__sutra-card span, .hero__sutra-card strong, .hero__sutra-card em { display: block; }
.hero__sutra-card span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero__sutra-card strong { margin: 8px 0 2px; font-family: var(--serif); font-size: 1.8rem; }
.hero__sutra-card em { color: var(--saffron); font-family: var(--serif); font-size: 1.05rem; }
.hero__words { position: absolute; left: 8px; bottom: 95px; display: grid; gap: 7px; color: rgba(255,255,255,.56); font-size: .67rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
@keyframes slow-rotate { to { transform: rotate(360deg); } }

.trust-ribbon { border-bottom: 1px solid var(--border); background: var(--white); }
.trust-ribbon__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-ribbon span { position: relative; padding: 20px 22px; text-align: center; font-size: .78rem; font-weight: 800; }
.trust-ribbon span + span::before { content: ""; position: absolute; top: 24%; bottom: 24%; left: 0; width: 1px; background: var(--border); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(32px, 4.5vw, 52px); }
.section-head__copy { max-width: 820px; }
.section-head h2 { margin-bottom: 16px; font-size: clamp(2.15rem, 3.4vw, 3.8rem); }
.section-head__copy p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }
.section-head__action { flex: none; margin-bottom: 12px; }
.section-actions { margin-top: 30px; }

.pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pathway-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pathway-card:hover { transform: translateY(-5px); border-color: rgba(199,124,34,.65); box-shadow: var(--shadow-sm); }
.pathway-card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 190px; height: 190px; border-radius: 50%; background: var(--card-wash, rgba(199,124,34,.1)); }
.pathway-card__number { color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.pathway-card__icon { width: 76px; height: 76px; display: grid; margin: 42px 0 26px; place-items: center; border-radius: 50%; background: var(--card-wash, rgba(199,124,34,.12)); color: var(--forest); font-family: var(--serif); font-size: 2rem; }
.pathway-card h3 { min-height: 2.2em; margin-bottom: 16px; }
.pathway-card p { color: var(--muted); }
.pathway-card .text-link { position: relative; z-index: 2; margin-top: auto; }
.pathway-card--sutra { --card-wash: rgba(168,74,97,.12); }
.pathway-card--sanskrit { --card-wash: rgba(199,124,34,.13); }
.pathway-card--philosophy { --card-wash: rgba(25,61,50,.1); }
.pathway-card--community { --card-wash: rgba(47,107,79,.12); }
.pathway-card--compact { min-height: 240px; padding: 26px; }
.pathway-card--compact h3 { min-height: 0; margin: 0 0 14px; }
.pathway-card--compact p { max-width: 26ch; margin: auto 0 0; }

.founder-intro__grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.founder-intro__art { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--sand), #e9dcc2); }
.founder-intro__art::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(25,61,50,.15); border-radius: 50%; }
.founder-intro__art img { position: absolute; right: 24px; bottom: 22px; width: 110px; opacity: .5; }
.founder-monogram { position: relative; z-index: 2; width: 210px; height: 210px; display: grid; place-items: center; border: 1px solid rgba(25,61,50,.18); border-radius: 50%; background: rgba(255,255,255,.45); color: var(--forest); font-family: var(--serif); font-size: 5rem; box-shadow: inset 0 0 0 16px rgba(255,255,255,.22); }
.founder-monogram--small { width: 150px; height: 150px; font-size: 3.4rem; }
.founder-script { position: absolute; left: 25px; bottom: 27px; color: rgba(25,61,50,.56); font-family: var(--serif); font-size: .84rem; letter-spacing: .13em; }
.founder-intro__copy { max-width: 660px; }
.founder-intro__copy h2 { margin-bottom: 22px; }
.credential-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; }
.credential-row span { padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--cream); font-size: .75rem; font-weight: 800; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-grid--two { grid-template-columns: repeat(2, 1fr); }
.value-grid article { min-height: 245px; padding: 28px; border: 1px solid rgba(25,61,50,.12); border-radius: var(--radius); background: rgba(255,255,255,.52); }
.value-grid__icon { width: 54px; height: 54px; display: grid; margin-bottom: 36px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); }
.value-grid__icon .icon { width: 24px; height: 24px; }
.value-grid h3 { font-size: 1.34rem; }
.value-grid p { color: var(--muted); font-size: .9rem; }

.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.format-card { display: flex; min-height: 520px; flex-direction: column; padding: 30px; border: 1px solid var(--border-dark); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.format-card--live { background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); }
.format-card--self { background: linear-gradient(145deg, rgba(199,124,34,.18), rgba(255,255,255,.04)); }
.format-card--events { background: linear-gradient(145deg, rgba(168,74,97,.18), rgba(255,255,255,.04)); }
.format-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 46px; }
.format-card__top > .icon { width: 32px; height: 32px; color: rgba(255,255,255,.7); }
.format-card h3 { margin-bottom: 16px; font-size: 2rem; }
.format-card > p { color: rgba(255,255,255,.72); }
.format-card__details { display: grid; gap: 0; margin: 28px 0; border-top: 1px solid var(--border-dark); }
.format-card__details div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border-dark); }
.format-card__details dt { color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.format-card__details dd { margin: 0; font-size: .86rem; font-weight: 750; }
.format-card .button { margin-top: auto; }
.format-badge { display: inline-flex; min-height: 27px; align-items: center; padding: 5px 10px; border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.format-badge--live { background: #dceee7; color: #1d5d46; }
.format-badge--self-paced { background: #f8e8c9; color: #714712; }
.format-badge--event { background: #f0dce2; color: #7c3045; }
.format-badge--path { background: #e8e2f0; color: #563c6a; }

.patanjali-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.patanjali-card { display: grid; min-height: 650px; grid-template-rows: 245px 1fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.patanjali-card__art { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--forest); color: var(--cream); }
.patanjali-card--study .patanjali-card__art { background: var(--lotus); }
.patanjali-card__art > span:first-child { position: relative; z-index: 2; font-family: var(--serif); font-size: 5rem; }
.sound-wave { position: absolute; width: 430px; height: 150px; opacity: .45; background: repeating-radial-gradient(ellipse at center, transparent 0 15px, rgba(255,255,255,.22) 16px 18px, transparent 19px 28px); }
.folio-lines { position: absolute; width: 82%; height: 65%; opacity: .25; background: repeating-linear-gradient(to bottom, transparent 0 22px, rgba(255,255,255,.55) 23px 24px); transform: rotate(-4deg); }
.patanjali-card__body { display: flex; flex-direction: column; padding: clamp(28px, 5vw, 42px); }
.patanjali-card__body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.patanjali-card__body p { color: var(--muted); }
.patanjali-card__body .button { margin-top: auto; align-self: flex-start; }
.check-list { display: grid; gap: 10px; margin: 22px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--success); font-weight: 900; }
.check-list--large { gap: 14px; font-size: 1.02rem; }

.course-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.course-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.course-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.course-card:hover { transform: translateY(-4px); border-color: rgba(199,124,34,.7); box-shadow: var(--shadow-sm); }
.course-card__visual { position: relative; min-height: 166px; display: grid; place-items: center; overflow: hidden; background: var(--forest); }
.course-card__visual::before, .course-card__visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.course-card__visual::before { width: 240px; height: 240px; }
.course-card__visual::after { width: 150px; height: 150px; }
.course-card__visual--self-paced { background: linear-gradient(145deg, #905c20, var(--saffron)); }
.course-card__glyph { position: relative; z-index: 2; color: var(--cream); font-family: var(--serif); font-size: 3.5rem; }
.course-card__visual .format-badge { position: absolute; z-index: 3; top: 16px; left: 16px; }
.course-card__body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.course-card__topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.course-card h3 { min-height: 2.15em; margin-bottom: 13px; font-size: 1.55rem; }
.course-card h3 a { text-decoration: none; }
.course-card h3 a:hover { color: var(--saffron); }
.course-card__body > p { min-height: 5.1em; color: var(--muted); font-size: .9rem; }
.course-card__facts { display: grid; margin: 18px 0 24px; border-top: 1px solid var(--border); }
.course-card__facts div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.course-card__facts dt { color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.course-card__facts dd { margin: 0; font-size: .82rem; font-weight: 700; }
.course-card__footer { display: grid; gap: 15px; margin-top: auto; }
.course-card__footer > div { display: flex; min-height: 28px; align-items: center; justify-content: space-between; gap: 10px; }
.course-card__price { font-family: var(--serif); font-size: 1.06rem; font-weight: 800; }
.course-card .text-link { font-size: .84rem; }
.language-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.language-links a { display: inline-flex; min-height: 44px; align-items: center; padding: 7px 11px; border: 1px solid var(--border); border-radius: 999px; color: var(--forest); font-size: .78rem; font-weight: 800; text-decoration: none; }
.language-links a:hover { border-color: var(--saffron); background: var(--cream); }
.pre-recorded-hero { background: radial-gradient(circle at 78% 22%, #a06a2c 0, #69441f 42%, #2a2118 100%); }
.pre-recorded-hero .shell { position: relative; z-index: 1; }
.path-orientation { padding: 54px 0; border-bottom: 1px solid var(--border); }
.path-orientation__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(32px, 6vw, 90px); }
.path-orientation h2 { max-width: 520px; margin: 0; font-size: clamp(2rem, 3.4vw, 3.5rem); }
.path-orientation__line { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 14px; }
.path-orientation__line span { display: grid; gap: 2px; font-family: var(--serif); font-size: 1.06rem; font-weight: 700; white-space: nowrap; }
.path-orientation__line b { color: var(--saffron); font-family: var(--sans); font-size: .64rem; letter-spacing: .16em; }
.path-orientation__line i { height: 1px; background: var(--border); }
.language-filter { display: inline-flex; gap: 5px; margin-bottom: 34px; padding: 5px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.62); }
.language-filter button { min-height: 44px; padding: 8px 18px; border: 0; border-radius: 999px; background: transparent; color: var(--forest); font-size: .82rem; font-weight: 850; cursor: pointer; }
.language-filter button:hover { background: rgba(25,61,50,.07); }
.language-filter button.is-active { background: var(--forest); color: var(--white); box-shadow: 0 7px 18px rgba(25,61,50,.18); }
[data-pre-filter-status] { align-self: center; margin-inline: 8px; font-size: .76rem; }
.course-path { width: min(100%, 1180px); display: grid; gap: 24px; margin: 0 auto; padding: 0; list-style: none; counter-reset: none; }
.path-stage { display: grid; grid-template-columns: minmax(180px,.34fr) minmax(0,1fr); align-items: start; gap: clamp(24px, 4vw, 48px); padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(216,208,194,.9); border-radius: 22px; background: rgba(255,255,255,.82); box-shadow: 0 9px 28px rgba(20,34,28,.035); }
.path-stage__intro { display: grid; grid-template-columns: auto 1fr; align-content: start; gap: 14px; }
.path-stage__number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.path-stage__intro .eyebrow { margin-bottom: 10px; }
.path-stage__intro h2 { margin-bottom: 13px; font-size: clamp(1.9rem, 3vw, 3.1rem); }
.path-stage__intro h3 { margin: 3px 0 0; font-size: clamp(1.65rem, 2.2vw, 2.15rem); }
.path-stage__intro p:last-child { color: var(--muted); font-size: .9rem; }
.path-stage__courses { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.course-option { display: flex; min-width: 0; flex-direction: column; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 22px rgba(20,34,28,.05); }
.course-option__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 20px; }
.language-badge { display: inline-flex; min-height: 28px; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: .68rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.language-badge--english { background: #e3ece8; color: var(--forest); }
.language-badge--hindi { background: #f6e7cb; color: #714712; }
.level-badge { display: inline-flex; min-height: 28px; align-items: center; padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--forest); font-size: .66rem; font-weight: 850; }
.course-option h3 { margin-bottom: 12px; font-size: 1.34rem; }
.course-option > p { color: var(--muted); font-size: .84rem; }
.course-option__facts { display: grid; margin: 17px 0 22px; border-top: 1px solid var(--border); }
.course-option__facts div { display: grid; grid-template-columns: 78px 1fr; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.course-option__facts dt { color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.course-option__facts dd { margin: 0; font-size: .77rem; font-weight: 750; }
.course-option__alert { margin: -7px 0 18px; padding: 10px 12px; border-left: 3px solid var(--warning); background: #fff7e9; color: #654716 !important; font-size: .76rem !important; }
.course-option .button { margin-top: auto; }
.course-data-note { max-width: 900px; margin: 24px 0 0; color: var(--muted); font-size: .78rem; }
.foundation-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.foundation-course { display: grid; grid-template-rows: 180px 1fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.foundation-course__glyph { display: grid; place-items: center; background: var(--forest); color: var(--cream); font-family: var(--serif); font-size: 3.3rem; }
.foundation-course__content { display: flex; min-width: 0; flex-direction: column; padding: 25px; }
.foundation-course h3 { font-size: 1.45rem; }
.foundation-course p { color: var(--muted); font-size: .84rem; }
.foundation-course__meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 22px; }
.foundation-course__meta span { padding: 4px 8px; border: 1px solid var(--border); border-radius: 999px; font-size: .68rem; font-weight: 800; }
.foundation-course .text-link { margin-top: auto; }
.social-links--on-dark a { min-height: 44px; gap: 9px; }
.social-links--on-dark .icon { width: 18px; height: 18px; }
.social-links--on-light a { min-height: 44px; border-color: var(--border); background: var(--white); color: var(--forest); }
.social-links--on-light a:hover { border-color: var(--saffron); background: var(--cream); color: var(--forest); }
.community-hub { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--forest-3), var(--forest)); color: var(--cream); }
.community-hub::after { content: "नाद"; position: absolute; right: 3%; bottom: -32%; color: rgba(255,255,255,.05); font-family: var(--serif); font-size: clamp(12rem, 26vw, 24rem); line-height: 1; }
.community-hub__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 36px; padding: clamp(32px, 6vw, 70px); }
.community-hub h2 { max-width: 760px; margin-bottom: 14px; }
.community-hub p { max-width: 690px; color: rgba(255,255,255,.76); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; align-content: center; }
.social-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 9px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: var(--white); font-size: .83rem; font-weight: 800; text-decoration: none; }
.social-links a:hover { border-color: #efb66a; background: rgba(255,255,255,.1); }
.status-pill { display: inline-flex; min-height: 25px; align-items: center; padding: 4px 9px; border-radius: 999px; background: #e5eee9; color: #23543f; font-size: .63rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.status-pill--in-progress { background: #f4e8ce; color: #74501c; }
.status-pill--enquire { background: #e7e2ef; color: #5d4471; }
.pricing-note { margin-top: 26px; padding: 16px 18px; border-left: 4px solid var(--saffron); border-radius: 0 12px 12px 0; background: rgba(199,124,34,.09); color: #4e4435; font-size: .84rem; }

.updates-feature { display: grid; grid-template-columns: 1.45fr .75fr; gap: 22px; }
.poster-card { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.poster-card__visual { min-height: 490px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; background: radial-gradient(circle at top, #2e6e57, var(--forest) 55%, var(--forest-3)); color: var(--cream); text-align: center; }
.poster-card__visual img { width: 92px; margin-bottom: 38px; }
.poster-card__visual h3, .poster-card__visual h2 { margin: 18px 0; font-size: 2.3rem; }
.poster-card__visual strong { color: #efb66a; font-family: var(--serif); font-size: 1.2rem; }
.poster-card__visual > span:last-child { margin-top: 5px; opacity: .75; }
.poster-card__type { font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.poster-card__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 56px); }
.poster-card__copy h3 { font-size: 2.25rem; }
.poster-card__copy > p { color: var(--muted); }
.poster-card__copy .button { align-self: flex-start; margin-top: 14px; }
.info-list { display: grid; margin: 22px 0; border-top: 1px solid var(--border); }
.info-list div { display: grid; grid-template-columns: 84px 1fr; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.info-list dt { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.info-list dd { margin: 0; font-weight: 700; }
.update-list { display: grid; align-content: start; gap: 14px; }
.update-item { display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.update-item__date { color: var(--saffron); font-family: var(--serif); font-weight: 800; }
.update-item h3 { margin-bottom: 8px; font-size: 1.35rem; }
.update-item p { color: var(--muted); font-size: .86rem; }
.update-item .eyebrow { margin-bottom: 6px; font-size: .6rem; }
.update-item .text-link { font-size: .8rem; }

.video-section__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(42px, 8vw, 110px); }
.video-section__copy h2 { margin-bottom: 20px; }
.video-section__copy p { max-width: 560px; margin-bottom: 28px; color: rgba(255,255,255,.72); font-size: 1.04rem; }
.video-shell { position: relative; overflow: hidden; aspect-ratio: 16/9; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: var(--forest-3); box-shadow: var(--shadow-md); }
.video-shell--large { min-height: 430px; }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.video-poster { width: 100%; height: 100%; display: grid; position: relative; place-items: center; border: 0; overflow: hidden; background: radial-gradient(circle at 70% 20%, #346e5b, var(--forest) 48%, var(--forest-3)); color: var(--cream); cursor: pointer; }
.video-poster::before { content: ""; position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(120deg, transparent 0 32px, rgba(255,255,255,.25) 33px 34px); }
.video-poster__script { position: absolute; top: 50%; left: 50%; color: rgba(255,255,255,.1); font-family: var(--serif); font-size: clamp(4rem, 10vw, 8rem); transform: translate(-50%,-50%); white-space: nowrap; }
.video-poster__play { position: relative; z-index: 2; width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; background: var(--saffron); color: #17130c; box-shadow: 0 14px 40px rgba(0,0,0,.25); transition: transform .18s ease; }
.video-poster:hover .video-poster__play { transform: scale(1.07); }
.video-poster__play .icon { width: 34px; height: 34px; }
.video-poster__label { position: absolute; z-index: 2; bottom: 26px; left: 26px; font-weight: 800; }

.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.community-grid article { min-height: 315px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.community-grid--detail article { background: var(--white); }
.community-grid__label { color: var(--saffron); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.community-grid h3 { margin: 34px 0 15px; font-size: 1.8rem; }
.community-grid p { color: var(--muted); }
.community-grid .text-link { margin-top: auto; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-grid figure { min-height: 330px; display: flex; flex-direction: column; margin: 0; padding: 30px; border: 1px solid rgba(25,61,50,.12); border-radius: var(--radius); background: rgba(255,255,255,.55); }
.testimonial-grid blockquote { margin: 0; font-family: var(--serif); font-size: 1.26rem; line-height: 1.55; }
.testimonial-grid figcaption { display: grid; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }
.testimonial-grid figcaption span { color: var(--muted); font-size: .8rem; }

.faq-newsletter__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 8vw, 110px); }
.faq-list { display: grid; margin-top: 28px; border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 20px 44px 20px 0; font-family: var(--serif); font-size: 1.18rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 18px; right: 5px; color: var(--saffron); font-family: var(--sans); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 40px 20px 0; color: var(--muted); }
.newsletter-card { padding: clamp(30px, 5vw, 50px); border-radius: var(--radius-lg); background: var(--forest); color: var(--cream); }
.newsletter-card h2 { font-size: clamp(2rem, 3.3vw, 3.2rem); }
.newsletter-card > p { color: rgba(255,255,255,.72); }
.newsletter-card .field-label { color: rgba(255,255,255,.78); }
.newsletter-card .field { background: rgba(255,255,255,.98); }
.newsletter-card .consent { color: rgba(255,255,255,.72); }
.newsletter-card .fine-print { color: rgba(255,255,255,.64); }
.newsletter-card form { display: grid; gap: 14px; margin-top: 28px; }

.field-label, form label:not(.consent) { display: block; margin-bottom: 6px; font-size: .8rem; font-weight: 800; }
.field { display: block; width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #c7beb0; border-radius: 11px; background: var(--white); color: var(--ink); font-size: .94rem; line-height: 1.35; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.field:hover { border-color: #9e9486; }
.field:focus, .field:focus-visible { border-color: var(--forest); outline: 0; box-shadow: 0 0 0 3px rgba(25,61,50,.12); }
.field::placeholder { color: #7a817c; opacity: 1; }
select.field { padding-right: 38px; }
.field--compact { min-height: 40px; padding: 7px 35px 7px 10px; }
textarea.field { resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--forest); }

.site-footer { padding-top: 72px; background: var(--forest-3); color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(4, 1fr); gap: 38px; padding-bottom: 60px; }
.footer-brand img { width: 190px; max-height: 125px; object-fit: contain; object-position: left center; margin-bottom: 20px; }
.footer-brand p { max-width: 360px; }
.footer-small { font-size: .73rem; }
.site-footer h2 { margin-bottom: 17px; color: var(--white); font-family: var(--sans); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); text-decoration: none; font-size: .84rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }

.breadcrumb { margin-bottom: 32px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; color: inherit; opacity: .75; font-size: .72rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; opacity: .55; }
.breadcrumb a { text-decoration: none; }

.page-hero { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 140px) 0; background: radial-gradient(circle at 80% 20%, #2e6654, var(--forest) 48%, var(--forest-3)); color: var(--white); }
.page-hero::after { content: ""; position: absolute; right: -90px; bottom: -260px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.page-hero--self-paced { background: radial-gradient(circle at 80% 10%, #a16c2c, #6f461c 48%, #2f2517); }
.page-hero--sutras { background: radial-gradient(circle at 80% 20%, #70455a, #4f2e3e 48%, #251a20); }
.page-hero--updates, .page-hero--events { background: radial-gradient(circle at 80% 20%, #326c5a, #214c3f 48%, #132c25); }
.page-hero--about { background: radial-gradient(circle at 80% 20%, #725345, #49352d 48%, #251f1b); }
.page-hero--contact { background: radial-gradient(circle at 80% 20%, #3f6d65, #214941 48%, #132b26); }
.page-hero--donate { background: radial-gradient(circle at 80% 20%, #7b4f5d, #4b2e39 48%, #261a1f); }
.page-hero--videos { background: radial-gradient(circle at 80% 20%, #4b526e, #2f354b 48%, #1c1f2c); }
.page-hero h1 { position: relative; z-index: 2; max-width: 960px; margin-bottom: 22px; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.page-hero > .shell > p { position: relative; z-index: 2; max-width: 760px; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.38rem); }
.page-hero__actions { position: relative; z-index: 2; margin-top: 30px; }

.format-choice__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.format-choice__card { min-height: 410px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.format-choice__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.format-choice__icon { width: 72px; height: 72px; display: grid; margin: 54px 0 28px; place-items: center; border-radius: 50%; background: var(--cream); color: var(--forest); font-family: var(--serif); font-size: 2rem; }
.format-choice__icon .icon { width: 28px; height: 28px; }
.format-choice__card h2, .format-choice__card h3 { font-size: 2rem; }
.format-choice__card p { color: var(--muted); }
.format-choice__card .text-link { margin-top: auto; }
.format-choice__card--live { border-top: 5px solid var(--success); }
.format-choice__card--self { border-top: 5px solid var(--saffron); }
.format-choice__card--sutra { border-top: 5px solid var(--lotus); }
.format-choice__card--community { border-top: 5px solid var(--lotus); }
.format-choice__card--recent { border-top: 5px solid #68756f; }
.format-badge--archive { background: #e8ebe9; color: #3f4c46; }
.path-prompt { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; margin-top: 22px; padding: 22px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.7); }
.path-prompt > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); font-size: 1.25rem; }
.path-prompt strong { font-family: var(--serif); font-size: 1.18rem; }
.path-prompt p { margin: 3px 0 0; color: var(--muted); font-size: .86rem; }

.filter-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); align-items: end; gap: 16px; margin-bottom: 26px; padding: clamp(20px, 3vw, 30px); border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(242,232,213,.48)); box-shadow: 0 9px 28px rgba(20,34,28,.04); }
.filter-panel label { display: grid; min-width: 0; gap: 8px; margin: 0; color: #34423a; font-size: .73rem; letter-spacing: .035em; }
.filter-panel .field { min-width: 0; }
.filter-panel .button { min-height: 50px; align-self: end; }
.catalogue-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 18px 0; }
.catalogue-meta p { margin: 0; color: var(--muted); font-size: .88rem; }
.catalogue-meta label { display: flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 800; }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.archive-card { min-height: 230px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.archive-card h3 { margin: 24px 0 10px; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.archive-card p { color: var(--muted); }
.status-pill--complete { border-color: rgba(25,61,50,.18); background: var(--sage-soft); color: var(--forest); }
.empty-state { padding: 64px 25px; border: 1px dashed var(--border); border-radius: var(--radius); text-align: center; }
.empty-state > span { color: var(--saffron); font-family: var(--serif); font-size: 3rem; }
.empty-state p { color: var(--muted); }

.format-explainer { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 100px); }
.format-explainer h2 { margin-top: 20px; }
.format-explainer p { color: var(--muted); font-size: 1.04rem; }
.split-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.split-cta > div:first-child { max-width: 760px; }
.split-cta h2 { margin-bottom: 16px; }
.split-cta--light { color: var(--cream); }
.split-cta--light p { color: rgba(255,255,255,.72); }

.path-decision { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.path-decision__card { position: relative; min-height: clamp(310px, 26vw, 370px); display: flex; flex-direction: column; overflow: hidden; padding: clamp(28px, 3vw, 42px); border: 1px solid var(--border); border-radius: 24px; background: var(--white); box-shadow: 0 8px 26px rgba(20,34,28,.035); }
.path-decision__card::before { content: ""; position: absolute; top: -130px; right: -120px; width: 280px; height: 280px; border-radius: 50%; background: rgba(25,61,50,.07); }
.path-decision__card--study::before { background: rgba(168,74,97,.09); }
.path-decision__step { color: var(--saffron); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.path-decision__glyph { position: relative; width: 120px; height: 120px; display: grid; margin: 55px 0 36px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); font-size: 2.8rem; }
.path-decision__card--study .path-decision__glyph { background: var(--lotus); }
.path-decision__card h2, .path-decision__card h3 { position: relative; max-width: 32rem; margin: 8px 0 18px; font-size: clamp(1.75rem, 2.5vw, 2.35rem); }
.path-decision__card > p { position: relative; max-width: 42rem; margin-bottom: 0; color: var(--muted); }
.path-decision__card .button, .path-decision__card .text-link { position: relative; margin-top: auto; padding-top: 22px; align-self: flex-start; }
.path-foundations { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(40px, 8vw, 100px); }
.path-foundations__cards { display: grid; gap: 12px; }
.path-foundations__cards a { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 15px; padding: 17px; border: 1px solid var(--border); border-radius: 15px; background: var(--cream); text-decoration: none; }
.path-foundations__cards a:hover { border-color: var(--saffron); }
.path-foundations__cards a > span:first-child { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); }
.path-foundations__cards strong, .path-foundations__cards small { display: block; }
.path-foundations__cards small { color: var(--muted); }
.pada-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pada-grid article { min-height: 280px; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.pada-grid article > span { color: #efb66a; font-weight: 900; }
.pada-grid h3 { margin: 50px 0 15px; }
.pada-grid p { color: rgba(255,255,255,.68); font-size: .88rem; }
.pada-grid--light article { border-color: var(--border); background: var(--cream); }
.pada-grid--light p { color: var(--muted); }
.pada-grid--light .text-link { margin-top: 15px; }

.course-hero { padding: clamp(60px, 8vw, 110px) 0; background: radial-gradient(circle at 82% 22%, #2e6654, var(--forest) 50%, var(--forest-3)); color: var(--white); }
.course-hero--self-paced { background: radial-gradient(circle at 82% 22%, #9b672c, #6f461c 50%, #302318); }
.course-hero__grid { display: grid; grid-template-columns: 1fr 410px; align-items: center; gap: clamp(42px, 7vw, 100px); }
.course-hero__labels { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.course-hero__copy h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(3.1rem, 6vw, 6rem); }
.course-hero__copy > p { max-width: 760px; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 1.22rem; }
.course-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.course-summary-card { padding: 27px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(251,248,241,.98); color: var(--ink); box-shadow: var(--shadow-md); }
.course-summary-card__glyph { width: 74px; height: 74px; display: grid; margin-bottom: 18px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); font-size: 2rem; }
.course-summary-card dl { margin: 0; border-top: 1px solid var(--border); }
.course-summary-card dl div { display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.course-summary-card dt { color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.course-summary-card dd { margin: 0; font-size: .84rem; font-weight: 750; }
.summary-price { font-family: var(--serif); font-size: 1.03rem !important; }
.course-summary-card__note { margin: 14px 0; color: var(--muted); font-size: .74rem; line-height: 1.5; }
.local-time { display: block; margin-top: 2px; color: var(--saffron); font-size: .72rem; }
.course-subnav { position: sticky; z-index: 50; top: var(--header-h); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
.course-subnav .shell { min-height: 54px; display: flex; align-items: center; gap: 26px; overflow-x: auto; }
.course-subnav a { flex: none; color: var(--muted); font-size: .78rem; font-weight: 800; text-decoration: none; }
.course-subnav a:hover { color: var(--forest); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: start; gap: clamp(50px, 9vw, 120px); }
.prose { max-width: var(--reading); }
.prose h2 { margin-bottom: 22px; }
.prose h3 { margin: 34px 0 12px; }
.prose p, .prose li { color: #445149; }
.prose li + li { margin-top: 8px; }
.who-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.who-card ul { display: grid; gap: 16px; margin: 12px 0 0; padding: 0; list-style: none; }
.who-card li { display: flex; align-items: flex-start; gap: 12px; }
.who-card li .icon { margin-top: 4px; color: var(--success); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.outcome-grid article { min-height: 245px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.outcome-grid article span { color: var(--saffron); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.outcome-grid article p { margin-top: auto; font-family: var(--serif); font-size: 1.2rem; }
.syllabus-list { display: grid; border-top: 1px solid var(--border); }
.syllabus-list article { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.syllabus-list article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-size: .78rem; font-weight: 900; }
.syllabus-list h3 { margin-bottom: 6px; font-size: 1.25rem; }
.syllabus-list p { color: var(--muted); }
.teacher-card { display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: clamp(36px, 7vw, 80px); padding: clamp(30px, 5vw, 55px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.teacher-card__monogram { width: 160px; height: 160px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); font-size: 3.8rem; }
.teacher-card h2 { margin-bottom: 14px; }
.teacher-card p { max-width: 720px; color: var(--muted); }
.enrollment-panel { display: grid; grid-template-columns: 1fr 330px; gap: clamp(40px, 8vw, 100px); padding: clamp(30px, 6vw, 60px); border-radius: var(--radius-lg); background: var(--forest); color: var(--cream); }
.enrollment-panel > div > p { max-width: 710px; color: rgba(255,255,255,.72); }
.policy-links { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 24px; }
.policy-links a { color: inherit; font-size: .82rem; font-weight: 800; }
.enrollment-panel aside { display: flex; flex-direction: column; align-items: stretch; padding: 25px; border-radius: var(--radius); background: var(--cream); color: var(--ink); }
.enrollment-panel aside > strong { margin: 28px 0 3px; font-family: var(--serif); font-size: 1.8rem; }
.enrollment-panel aside > small { color: var(--muted); }
.enrollment-panel aside .button { margin-top: auto; }

.updates-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.update-tabs { width: fit-content; max-width: 100%; display: flex; gap: 6px; padding: 5px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); box-shadow: 0 6px 18px rgba(20,34,28,.04); }
.update-tabs button { min-height: 44px; padding: 7px 16px; border: 0; border-radius: 999px; background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.update-tabs button.is-active { background: var(--forest); color: var(--white); }
.updates-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); align-items: stretch; gap: 20px; }
.update-card { min-width: 0; display: grid; grid-template-columns: minmax(170px,.72fr) minmax(0,1.28fr); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 9px 28px rgba(20,34,28,.045); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.update-card:hover { transform: translateY(-3px); border-color: rgba(199,124,34,.55); box-shadow: var(--shadow-sm); }
.update-card--featured { grid-column: span 2; grid-template-columns: .7fr 1.3fr; }
.update-card__media { display: block; min-width: 0; overflow: hidden; background: var(--sand); text-decoration: none; }
.update-card__media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center 22%; transition: transform .35s ease; }
.update-card:hover .update-card__media img { transform: scale(1.025); }
.update-card__media--symbol { display: grid; place-items: center; background: linear-gradient(145deg, var(--sand), #e8dcc7); }
.update-card__media--symbol img { width: 96px; height: auto; min-height: 0; object-fit: contain; opacity: .72; }
.update-card__poster { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; background: var(--forest); color: var(--cream); text-align: center; }
.update-card__poster img { width: 65px; margin-bottom: 24px; }
.update-card__poster > span { font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.update-card__poster strong { margin: 15px 0; font-family: var(--serif); font-size: 1.55rem; }
.update-card__poster small { color: #efb66a; }
.update-card__poster--image { min-height: 0; padding: 0; overflow: hidden; background: var(--sand); }
.update-card__poster--image .update-card__poster-image { width: 100%; height: 100%; min-height: 330px; margin: 0; object-fit: cover; }
.update-card__body { min-width: 0; display: flex; flex-direction: column; justify-content: flex-start; padding: clamp(24px, 3vw, 34px); }
.update-card__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 9px; margin-bottom: 22px; }
.update-card__format { color: var(--muted); font-size: .66rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.update-card__body .status-pill { width: fit-content; align-self: flex-start; }
.update-card__body h2, .update-card__body h3 { max-width: 24ch; margin-bottom: 14px; font-size: clamp(1.55rem, 2.2vw, 2rem); }
.update-card__body h3 a { text-decoration: none; }
.update-card__body h3 a:hover { color: var(--forest-2); text-decoration: underline; text-decoration-color: var(--saffron); }
.update-card__body > p { margin-bottom: 24px; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.update-card__body .button { align-self: flex-start; margin-top: 10px; }
.update-card__footer { display: grid; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted); font-size: .72rem; font-weight: 750; }
.update-card__footer .text-link { align-self: flex-start; padding-block: 0; }
.update-card__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; color: var(--saffron); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.editor-guide ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; margin: 0; padding-left: 24px; }
.update-detail-hero { padding: clamp(60px, 8vw, 110px) 0; background: var(--forest); color: var(--white); }
.update-detail-hero__grid { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: clamp(50px, 8vw, 110px); }
.update-detail-hero h1 { margin: 25px 0; font-size: clamp(3rem, 6vw, 5.8rem); }
.update-detail-hero p { max-width: 700px; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.18rem; }
.update-detail-hero__facts { display: flex; flex-wrap: wrap; gap: 20px; margin: 28px 0; color: rgba(255,255,255,.8); }
.update-detail-hero__facts span { display: inline-flex; align-items: center; gap: 8px; }
.update-detail-poster { min-height: 530px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.update-detail-poster--image { padding: 0; overflow: hidden; background: var(--sand); }
.update-detail-poster--image .update-detail-poster__image { width: 100%; height: 100%; min-height: 530px; margin: 0; object-fit: cover; }
.event-fact-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.event-fact-card h2 { font-size: 1.8rem; }
.event-fact-card dl { margin: 20px 0; border-top: 1px solid var(--border); }
.event-fact-card dl div { display: grid; grid-template-columns: 90px 1fr; gap: 15px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.event-fact-card dt { color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.event-fact-card dd { margin: 0; font-weight: 700; }

.about-story { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(280px,.95fr); align-items: start; gap: clamp(40px, 8vw, 100px); }
.about-story__index { position: sticky; top: 140px; display: grid; gap: 8px; color: var(--muted); }
.about-story__index span { color: var(--saffron); font-family: var(--serif); font-size: 2rem; }
.about-story__index strong { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.about-story--light .about-story__index { color: rgba(255,255,255,.6); }
.about-story--light h2 { color: var(--cream); }
.about-offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-offer-grid article { min-height: 250px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.about-offer-grid article > span { width: 52px; height: 52px; display: grid; margin-bottom: 32px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); }
.about-offer-grid p { color: var(--muted); }
.about-format-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.about-format-links a { padding: 20px; border: 1px solid var(--border); border-radius: 14px; color: var(--forest); text-decoration: none; }
.about-format-links a:hover { border-color: var(--saffron); }
.about-format-links strong, .about-format-links span { display: block; }
.about-format-links span { margin-top: 5px; color: var(--muted); font-size: .82rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.audience-grid span { padding: 18px; border: 1px solid rgba(25,61,50,.13); border-radius: 13px; background: rgba(255,255,255,.52); font-weight: 750; }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 40px; }
.process-line span { min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.process-line b { color: #efb66a; font-family: var(--serif); font-size: 2rem; }
.founder-inline { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 38px; }

.founder-hero { padding: clamp(70px, 9vw, 130px) 0; background: var(--sand); }
.founder-hero__grid { display: grid; grid-template-columns: 420px 1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.founder-hero__portrait { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #efe3ca, #dbc9a8); }
.founder-hero__portrait img { position: absolute; right: 18px; bottom: 18px; width: 100px; opacity: .5; }
.founder-hero h1 { margin-bottom: 22px; font-size: clamp(3.4rem, 7vw, 6.3rem); }
.teacher-principles { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.teacher-principles ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.teacher-principles li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.teacher-principles li:last-child { border-bottom: 0; }
.teacher-principles li > .icon { width: 26px; height: 26px; color: var(--saffron); }
.teacher-principles strong, .teacher-principles small { display: block; }
.teacher-principles small { color: var(--muted); }
.subject-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.subject-band a { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); text-decoration: none; }
.subject-band a:hover { border-color: var(--saffron); }
.subject-band a span { color: var(--saffron); font-family: var(--serif); font-size: 2.2rem; }
.subject-band strong { font-family: var(--serif); font-size: 1.25rem; }

.sutra-reader { padding: clamp(30px, 6vw, 60px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.sutra-reader__toolbar { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.sutra-reader__toolbar h2 { font-size: 2.2rem; }
.sutra-reader__toolbar h3 { margin: 0; font-family: var(--sans); font-size: .82rem; letter-spacing: .02em; }
.script-toggle { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--border); border-radius: 999px; }
.script-toggle button { min-height: 44px; padding: 6px 13px; border: 0; border-radius: 999px; background: transparent; font-size: .72rem; font-weight: 800; cursor: pointer; }
.script-toggle button.is-active { background: var(--forest); color: var(--white); }
.sutra-reader__text { padding: clamp(42px, 7vw, 76px) 0; text-align: center; }
.sutra-devanagari { margin-bottom: 14px; font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 5.5rem); }
.sutra-iast { color: var(--saffron); font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); }
.sutra-translation { max-width: 620px; margin: 28px auto 0; color: var(--muted); font-family: var(--serif); font-size: 1.12rem; }
.sutra-reader__note { display: flex; gap: 12px; padding: 15px; border-radius: 12px; background: var(--cream); color: var(--muted); font-size: .8rem; }
.sutra-reader__note .icon { margin-top: 3px; color: var(--saffron); }
.sutra-actions { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(40px, 8vw, 100px); }
.sutra-actions__grid { display: grid; gap: 12px; }
.sutra-actions__grid a { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--border); border-radius: 15px; background: var(--white); text-decoration: none; }
.sutra-actions__grid a:hover { border-color: var(--saffron); }
.sutra-actions__grid a > span { width: 52px; height: 52px; display: grid; grid-row: span 2; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--serif); }
.sutra-actions__grid strong, .sutra-actions__grid small { display: block; }
.sutra-actions__grid small { color: var(--muted); }
.pada-dialog { position: fixed; z-index: 120; inset: 0; display: grid; padding: 20px; place-items: center; background: rgba(8,20,16,.72); backdrop-filter: blur(8px); }
.pada-dialog__panel { position: relative; width: min(620px, 100%); padding: clamp(28px, 6vw, 54px); border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow-md); }
.pada-dialog__panel > .icon-button { position: absolute; top: 16px; right: 16px; }
.pada-dialog__panel h2 { font-size: 3rem; }
.pada-dialog__panel p { color: var(--muted); }

.event-highlight { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 28px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.event-highlight__date { width: 135px; height: 135px; display: grid; place-content: center; border-radius: 50%; background: var(--forest); color: var(--cream); text-align: center; }
.event-highlight__date strong, .event-highlight__date span { display: block; }
.event-highlight__date strong { font-family: var(--serif); font-size: 2rem; }
.event-highlight__date span { font-size: .7rem; }
.event-highlight h3 { margin: 13px 0 8px; }
.event-highlight p { color: var(--muted); }
.community-detail { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.community-detail__art { min-height: 460px; display: grid; position: relative; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: var(--sand); }
.community-detail__art > span { color: var(--forest); font-family: var(--serif); font-size: 5rem; }
.community-detail__art img { position: absolute; right: 25px; bottom: 22px; width: 100px; opacity: .4; }

.contact-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); align-items: start; gap: clamp(28px, 5vw, 64px); }
.contact-form { display: grid; gap: 22px; margin: 0; }
.contact-form__head { padding-bottom: 4px; }
.contact-form__head .eyebrow { margin-bottom: 10px; }
.contact-form__head h2 { margin-bottom: 10px; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.contact-form__head p { max-width: 620px; margin: 0; color: var(--muted); }
.form-field { display: grid; min-width: 0; gap: 8px; }
.form-field > label { margin: 0; color: #34423a; font-size: .81rem; font-weight: 850; }
.form-field > label .muted { font-size: .76rem; font-weight: 650; }
.contact-form textarea.field { min-height: 164px; line-height: 1.55; }
.contact-form__actions { display: flex; align-items: center; }
.contact-form__actions .button { min-width: 190px; }
.contact-form .fine-print { max-width: 650px; margin: -2px 0 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.contact-aside { display: grid; align-content: start; gap: 18px; }
.contact-aside__card { min-width: 0; padding: clamp(24px, 3vw, 32px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 9px 28px rgba(20,34,28,.045); }
.contact-aside__card--community { background: linear-gradient(145deg, var(--forest), var(--forest-3)); color: var(--cream); }
.contact-aside__card--community .eyebrow { color: #efb66a; }
.contact-aside__card--community p { color: rgba(255,255,255,.74); }
.contact-aside__card--community .button--secondary { border-color: rgba(255,255,255,.6); color: var(--white); }
.contact-aside__card--community .button--secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.contact-aside__icon { width: 48px; height: 48px; display: grid; margin-bottom: 24px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--cream); }
.contact-aside h2 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.2vw, 2rem); }
.contact-aside p { color: var(--muted); font-size: .88rem; }
.contact-aside address { display: grid; gap: 12px; font-style: normal; }
.contact-aside address a { width: fit-content; color: var(--forest); font-weight: 800; overflow-wrap: anywhere; }
.contact-aside address p { margin: 0; }
.contact-aside .button { width: 100%; margin-top: 12px; }
.thank-you { min-height: 70vh; display: grid; place-items: center; padding: 90px 0; background: var(--cream); }
.thank-you__card { max-width: 720px; padding: clamp(35px, 7vw, 70px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); text-align: center; box-shadow: var(--shadow-sm); }
.thank-you__card img { width: 120px; margin: 0 auto 25px; }
.thank-you__card h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
.thank-you__card p { color: var(--muted); }
.thank-you__card .button-row { justify-content: center; margin-top: 30px; }
.video-page-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(50px, 8vw, 100px); }

.legal-hero { padding: 80px 0 60px; background: var(--sand); }
.legal-hero h1 { margin-bottom: 18px; font-size: clamp(3rem, 6vw, 5rem); }
.legal-hero p { max-width: 760px; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: clamp(50px, 8vw, 100px); }
.legal-prose h2 { margin-top: 42px; font-size: 2.2rem; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 { margin-top: 26px; }
.legal-nav { position: sticky; top: 120px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.legal-nav h2 { font-size: 1.4rem; }
.legal-nav a { display: block; padding: 8px 0; color: var(--forest); font-weight: 750; }
.legal-nav p { margin-top: 18px; color: var(--muted); font-size: .78rem; }
.not-found { min-height: 72vh; display: grid; place-items: center; padding: 90px 0; text-align: center; }
.not-found__symbol { color: rgba(199,124,34,.22); font-family: var(--serif); font-size: clamp(6rem, 18vw, 13rem); line-height: .9; }
.not-found h1 { max-width: 900px; margin: 16px auto; font-size: clamp(3rem, 7vw, 5.8rem); }
.not-found p { max-width: 650px; margin: 0 auto; color: var(--muted); }
.not-found .button-row { justify-content: center; margin-top: 30px; }

/* Phase 5 shared navigation and page framing. */
.dropdown--wide { width: min(430px, calc(100vw - 32px)); }
.mobile-nav__label { display: block; padding: 18px 8px 5px 20px; color: var(--saffron-text); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.mobile-nav a, .mobile-nav summary, .site-footer a { min-height: 44px; }
.mobile-nav details a { display: flex; align-items: center; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); }
.footer-social a { display: inline-flex; min-height: 44px; align-items: center; margin: 0; font-weight: 750; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 2px 8px; padding-top: 22px; padding-bottom: 22px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a, .breadcrumbs > span { display: inline-flex; min-height: 44px; align-items: center; }
.breadcrumbs a { color: var(--forest); font-weight: 800; text-decoration: none; }
.breadcrumbs a:hover { color: var(--saffron-text); text-decoration: underline; }
.page-hero--compact { padding-block: clamp(62px, 8vw, 104px); }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .34fr); align-items: center; gap: clamp(40px, 7vw, 92px); }
.page-hero__grid > div:first-child { min-width: 0; }
.page-hero__grid p { max-width: 780px; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.38rem); }
.page-hero__mark { position: relative; min-height: 270px; display: grid; place-items: center; isolation: isolate; }
.page-hero__mark span { position: relative; z-index: 2; color: #f6c984; font-family: var(--serif); font-size: clamp(4.7rem, 9vw, 8.4rem); line-height: 1; }
.page-hero__mark i { position: absolute; width: 86%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.page-hero__mark i:nth-of-type(2) { width: 62%; border-style: dashed; }
.page-hero__mark i:nth-of-type(3) { width: 38%; }

/* Accessible status, language, and level tokens never rely on colour alone. */
.badge-row, .course-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.badge { display: inline-flex; min-height: 28px; align-items: center; padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px; background: var(--cream); color: #35443c; font-size: .68rem; font-weight: 850; line-height: 1.2; }
.status-pill { border: 1px solid transparent; line-height: 1.25; }
.status-pill--open { border-color: #a9cbbb; background: #e2f1e9; color: #174f39; }
.status-pill--ongoing { border-color: #d8b56f; background: #f8ecd4; color: #70470f; }
.status-pill--completed { border-color: #bdc7c1; background: #e9eeeb; color: #364941; }
.status-pill--review { border-color: #c7b9d4; background: #eee8f3; color: #573e6a; }
.text-link--muted { color: #4f5c54; font-size: .82rem; }

/* Phase 5 course cards use real course media and clear action hierarchy. */
.course-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; border-bottom: 1px solid var(--border); background: var(--sand); text-decoration: none; }
.course-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .35s ease; }
.course-card__media--symbol { display: grid; place-items: center; background: radial-gradient(circle at 50% 42%, #fff 0 12%, var(--sand) 58%, #e6d8be 100%); }
.course-card__media--symbol img { width: 112px; height: auto; object-fit: contain; opacity: .74; }
.course-card:hover .course-card__media > img { transform: scale(1.025); }
.course-card__meta { justify-content: space-between; margin-bottom: 16px; }
.course-card .badge-row { margin: 0 0 17px; }
.course-card__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.course-card__actions .text-link { max-width: 100%; }
.course-card--compact .course-card__media { aspect-ratio: 16 / 9; }
.course-card--compact h3 { min-height: 0; }
.course-card--compact .course-card__body > p { min-height: 0; }
.course-card--compact .course-card__body { padding: 22px; }
.course-card h3 a, .programme-card h3 a, .blog-card h2 a, .blog-card h3 a { overflow-wrap: anywhere; }

/* Course detail layouts, posters, verified actions, and policy context. */
.detail-hero, .course-detail-hero { position: relative; overflow: hidden; padding-block: clamp(62px, 8vw, 110px); background: radial-gradient(circle at 84% 18%, #326b58, var(--forest) 48%, var(--forest-3)); color: var(--white); }
.detail-hero__grid, .course-detail-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 410px); align-items: center; gap: clamp(40px, 7vw, 96px); }
.detail-hero h1, .course-detail-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(2.8rem, 5.8vw, 5.8rem); }
.detail-hero__lead, .course-detail-hero__lead { max-width: 760px; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: clamp(1.08rem, 2vw, 1.34rem); }
.detail-media, .course-poster { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg); background: var(--sand); box-shadow: var(--shadow-md); }
.detail-media img, .course-poster img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.course-hero__media { width: min(100%, 410px); justify-self: end; }
.course-hero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.course-detail-hero__copy { min-width: 0; }
.course-detail-hero__copy .lead { max-width: 780px; color: rgba(255,255,255,.82); }
.course-detail-hero__copy .course-option__alert { max-width: 780px; margin-top: 22px; }
.course-detail-hero__copy .course-data-note { color: rgba(255,255,255,.76); }
.course-detail-hero__copy .course-data-note a { color: var(--white); font-weight: 800; }
.course-detail-hero .button--primary { background: var(--cream); color: var(--forest); box-shadow: 0 9px 24px rgba(0,0,0,.16); }
.course-detail-hero .button--primary:hover { background: var(--white); }
.course-detail-hero .button--secondary { border-color: rgba(255,255,255,.68); color: var(--white); }
.course-detail-hero .button--secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.course-detail__poster { width: min(100%, 410px); display: grid; justify-self: end; place-items: center; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); background: var(--sand); box-shadow: var(--shadow-md); }
.course-detail__poster img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.course-detail__poster.course-card__media--symbol { background: radial-gradient(circle at 50% 42%, #fff 0 12%, var(--sand) 58%, #e6d8be 100%); }
.course-detail__poster.course-card__media--symbol img { width: min(42%, 180px); height: auto; object-fit: contain; }
.course-detail__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 14px; margin: 0; }
.course-detail__facts > div { min-width: 0; min-height: 142px; padding: 22px; border: 1px solid var(--border); border-top: 4px solid var(--forest); border-radius: var(--radius-sm); background: var(--white); box-shadow: 0 7px 22px rgba(20,34,28,.045); }
.course-detail__facts dt { margin-bottom: 17px; color: var(--muted); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.course-detail__facts dd { margin: 0; overflow-wrap: anywhere; font-family: var(--serif); font-size: 1.08rem; font-weight: 750; line-height: 1.4; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); align-items: start; gap: clamp(42px, 8vw, 108px); }
.detail-main { min-width: 0; }
.detail-aside { position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 16px; }
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: 14px; }
.fact-card { min-height: 154px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); }
.fact-card span, .fact-card dt { display: block; margin-bottom: 9px; color: var(--muted); font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.fact-card strong, .fact-card dd { margin: 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.35; }
.key-facts { margin: 0; border-top: 1px solid var(--border); }
.key-facts div { display: grid; grid-template-columns: minmax(95px, .7fr) minmax(0, 1.3fr); gap: 16px; padding-block: 12px; border-bottom: 1px solid var(--border); }
.key-facts dt { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.key-facts dd { margin: 0; overflow-wrap: anywhere; font-weight: 750; }
.action-panel { padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.action-panel h2 { margin-bottom: 12px; font-size: 1.55rem; }
.action-panel .button-row { display: grid; margin-top: 20px; }
.action-panel .button { width: 100%; }
.action-panel__note, .policy-note { margin-top: 16px; padding: 13px 15px; border-left: 4px solid var(--saffron); border-radius: 0 10px 10px 0; background: #f9eedb; color: #5a421f; font-size: .78rem; }
.policy-note a { color: var(--forest); font-weight: 800; }
.course-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; padding: clamp(28px, 5vw, 52px); border-radius: var(--radius-lg); background: var(--forest); color: var(--cream); }
.cta-panel h2 { margin-bottom: 12px; }
.cta-panel p { max-width: 720px; color: rgba(255,255,255,.76); }
.cta-panel .button-row { justify-content: flex-end; }
.poster-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.poster-gallery__item { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.poster-gallery__item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.poster-gallery__item figcaption { padding: 13px 16px; color: var(--muted); font-size: .78rem; }

/* Programme, blog, team, and editorial cards share a restrained visual rhythm. */
.programme-grid, .blog-grid, .team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.programme-card, .blog-card, .team-card { min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 9px 28px rgba(20,34,28,.045); }
.programme-card { display: flex; flex-direction: column; }
.programme-card__media, .blog-card__media, .team-card__media { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); }
.programme-card__media img, .blog-card__media img, .team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card > a:first-child { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--sand); }
.blog-card > a:first-child img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.programme-card:hover img, .blog-card:hover img, .team-card:hover img { transform: scale(1.025); }
.programme-card > div, .blog-card > div, .team-card > div, .blog-card__body, .team-card__body { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 25px; }
.programme-card h3, .blog-card h2, .blog-card h3, .team-card h2, .team-card h3 { margin: 18px 0 12px; font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
.programme-card h3 a, .blog-card h2 a, .blog-card h3 a { text-decoration: none; }
.programme-card p, .blog-card p, .team-card p { color: var(--muted); }
.programme-card .text-link, .blog-card .text-link { margin-top: auto; }
.blog-card__meta, .team-card__role, .article-meta { color: var(--saffron-text); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.team-card__media { aspect-ratio: 1 / 1; }
.team-card__media img { object-position: center 20%; }
.team-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%; }
.article-layout { display: grid; grid-template-columns: minmax(0, var(--reading)) minmax(240px, 310px); align-items: start; justify-content: space-between; gap: clamp(42px, 8vw, 100px); }
.article-hero { padding-block: clamp(62px, 8vw, 108px); border-bottom: 1px solid var(--border); background: linear-gradient(145deg, var(--sand), #f7efe1 68%, var(--cream)); }
.article-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); align-items: center; gap: clamp(42px, 8vw, 104px); }
.article-hero__grid > div { min-width: 0; }
.article-hero h1 { max-width: 860px; margin-bottom: 22px; font-size: clamp(3rem, 6.5vw, 6rem); }
.article-hero .lead { max-width: 720px; color: #3e4d45; }
.article-hero img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 1px solid rgba(25,61,50,.12); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

/* Phase 5 places a real founder portrait in components that formerly held a small brand glyph. */
.founder-intro__art img,
.founder-hero__portrait img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 1;
}
.article-prose, .legal-prose, .prose { font-size: 1.02rem; }
.article-prose > p:first-of-type, .article-lead { color: #33433a; font-family: var(--serif); font-size: clamp(1.18rem, 2vw, 1.4rem); line-height: 1.62; }
.article-prose h2, .legal-prose h2 { scroll-margin-top: 118px; }
.article-prose a, .legal-prose a, .prose a { color: var(--forest); font-weight: 750; text-decoration-color: var(--saffron); }
.article-aside { position: sticky; top: calc(var(--header-h) + 30px); padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.profile-grid { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); align-items: center; gap: clamp(42px, 8vw, 104px); }
.profile-media { overflow: hidden; border-radius: var(--radius-lg); background: var(--sand); }
.profile-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }

/* Long-form policies and form states remain readable at zoom and on mobile. */
.legal-prose { max-width: var(--reading); }
.legal-prose p, .legal-prose li { color: #3e4d45; }
.legal-prose ul, .legal-prose ol, .article-prose ul, .article-prose ol { padding-left: 1.3em; }
.legal-prose li + li, .article-prose li + li { margin-top: 9px; }
.legal-prose table, .article-prose table { width: 100%; border-collapse: collapse; }
.legal-prose th, .legal-prose td, .article-prose th, .article-prose td { padding: 12px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.legal-nav a { min-height: 44px; display: flex; align-items: center; }
.form-card { padding: clamp(24px, 5vw, 44px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.field, input, select, textarea { max-width: 100%; }
select.field { padding-right: 36px; }
textarea.field { min-height: 150px; }
.field-help { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; }
.required-marker { color: var(--error); }
.form-error-summary[role="alert"] { scroll-margin-top: 110px; }
.notice { padding: 17px 19px; border: 1px solid var(--border); border-left-width: 5px; border-radius: 12px; background: var(--white); }
.notice--info { border-left-color: var(--forest); }
.notice--warning { border-left-color: var(--warning); background: #fff8eb; }
.notice--success { border-left-color: var(--success); background: #eef7f2; }
.search-results__summary { margin: 3px 2px 6px; color: var(--muted); font-size: .78rem; font-weight: 750; }
.search-results[aria-busy="true"] { opacity: .7; }
.search-result { min-height: 72px; }
.search-result__type, .nav-link:hover, .nav-link.is-current, .dropdown__eyebrow, .blog-card__meta, .article-meta, .local-time, .sutra-iast, .outcome-grid article span, .community-grid__label, .update-item__date, .update-card__meta { color: var(--saffron-text); }
.dropdown a, .nav-link, .header-login, .icon-button, summary, .language-filter button, .update-tabs button, .script-toggle button { -webkit-tap-highlight-color: transparent; }
.filter-panel { grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); }
.filter-panel label:has([data-filter-search]) { grid-column: span 2; }
.filter-panel .button { align-self: end; }
.catalogue-meta select { min-height: 44px; }
.empty-state:focus { outline: none; }

@supports not selector(:has(*)) {
  .filter-panel label:first-child { grid-column: span 2; }
}

@media print {
  .site-header, .site-footer, .mobile-menu, .search-dialog, .site-backdrop, .course-subnav, .button-row, .course-actions, .action-panel, .cta-panel { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .page-hero, .course-hero, .detail-hero { padding-block: 24px; background: #fff !important; color: #000 !important; }
  .page-hero p, .course-hero p, .detail-hero p { color: #222 !important; }
  a { color: #000; text-decoration: underline; }
}

@media (max-width: 1180px) {
  .desktop-contact, .brand__descriptor { display: none; }
  .desktop-nav { gap: 0; }
  .nav-link { padding-inline: 5px; font-size: .8rem; }
  .nav-toggle { width: 44px; }
  .header-login { display: none; }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .format-choice__grid, .foundation-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .archive-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .programme-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 16px; }
}

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .desktop-nav, .desktop-cta { display: none; }
  .mobile-menu-button { display: grid; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { max-width: 780px; }
  .hero__art { min-height: 520px; }
  .hero__symbol { width: 360px; }
  .trust-ribbon__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-ribbon span:nth-child(3)::before { display: none; }
  .founder-intro__grid, .video-section__grid, .format-explainer, .path-foundations, .content-grid, .sutra-actions, .community-detail, .contact-grid, .video-page-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 0; }
  .format-card .button { align-self: flex-start; }
  .updates-feature { grid-template-columns: 1fr; }
  .faq-newsletter__grid { grid-template-columns: 1fr; }
  .path-decision, .path-orientation__grid, .path-stage { grid-template-columns: 1fr; }
  .path-decision { gap: 16px; }
  .path-decision__card { min-height: 280px; }
  .format-choice__card { min-height: 330px; }
  .filter-panel { grid-template-columns: repeat(2, 1fr); }
  .course-hero__grid, .update-detail-hero__grid { grid-template-columns: 1fr; }
  .course-summary-card { max-width: 590px; }
  .course-subnav { top: var(--header-h); }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .enrollment-panel { grid-template-columns: 1fr; }
  .updates-grid { grid-template-columns: 1fr; }
  .update-card--featured { grid-column: auto; }
  .about-story { grid-template-columns: 1fr; }
  .about-story__index { position: static; display: flex; align-items: center; gap: 13px; }
  .process-line { grid-template-columns: repeat(3, 1fr); }
  .founder-hero__grid { grid-template-columns: 330px 1fr; }
  .subject-band { grid-template-columns: repeat(2, 1fr); }
  .pada-grid { grid-template-columns: repeat(2, 1fr); }
  .event-highlight { grid-template-columns: 140px 1fr; }
  .event-highlight > .text-link { grid-column: 2; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .page-hero__grid, .detail-hero__grid, .course-detail-hero__grid, .detail-layout, .article-layout, .article-hero__grid, .profile-grid { grid-template-columns: 1fr; }
  .page-hero__mark { position: absolute; right: 1%; bottom: -25%; width: min(38vw, 310px); opacity: .55; pointer-events: none; }
  .detail-aside, .article-aside { position: static; }
  .course-hero__media { width: min(100%, 520px); justify-self: start; }
  .course-detail__poster { width: min(100%, 520px); justify-self: start; }
  .article-hero img { width: min(100%, 760px); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .button-row { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding-block: 56px; }
  .announcement__inner { gap: 8px; }
  .announcement__label, .announcement a span { display: none; }
  .announcement a { font-size: .76rem; }
  .site-header__inner { gap: 8px; }
  .brand { min-width: 0; }
  .brand__symbol { width: 38px; height: 29px; }
  .brand__word { font-size: 1.3rem; }
  .hero__grid { padding-top: 70px; padding-bottom: 75px; }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 5.1rem); }
  .hero__actions, .page-hero__actions, .course-hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button, .page-hero__actions .button, .course-hero__actions .button { width: 100%; }
  .hero__trust { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__art { min-height: 430px; }
  .hero__orbit--one { width: 390px; height: 390px; }
  .hero__orbit--two { width: 285px; height: 285px; }
  .hero__symbol { width: 275px; }
  .hero__sutra-card { right: 0; bottom: 18px; width: 82%; padding: 18px; }
  .hero__sutra-card strong { font-size: 1.45rem; }
  .hero__words { display: none; }
  .trust-ribbon__grid { grid-template-columns: 1fr; }
  .trust-ribbon span + span::before { top: 0; right: 20%; bottom: auto; left: 20%; width: auto; height: 1px; }
  .trust-ribbon span:nth-child(3)::before { display: block; }
  .section-head { display: block; }
  .section-head__action { margin-top: 18px; }
  .pathway-grid, .value-grid, .patanjali-grid, .course-grid, .course-grid--two, .community-grid, .testimonial-grid, .path-decision, .about-offer-grid, .about-format-links, .audience-grid, .form-grid { grid-template-columns: 1fr; }
  .community-hub__inner { grid-template-columns: 1fr; }
  .format-choice__grid, .foundation-grid, .path-stage__courses, .archive-grid { grid-template-columns: 1fr; }
  .path-prompt { grid-template-columns: auto 1fr; }
  .path-prompt .button { grid-column: 1 / -1; }
  .path-orientation__line { grid-template-columns: 1fr; gap: 10px; }
  .path-orientation__line i { width: 1px; height: 24px; margin-left: 12px; }
  .language-filter { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; }
  .language-filter button { padding-inline: 10px; }
  [data-pre-filter-status] { grid-column: 1 / -1; margin: 4px 8px 2px; }
  .community-hub__inner { padding: 30px 22px; }
  .pathway-card { min-height: 340px; }
  .pathway-card--compact { min-height: 220px; }
  .founder-intro__art { min-height: 390px; }
  .founder-monogram { width: 165px; height: 165px; font-size: 4rem; }
  .value-grid article { min-height: 220px; }
  .patanjali-card { min-height: 0; grid-template-rows: 205px 1fr; }
  .course-card__body > p { min-height: 0; }
  .updates-feature { gap: 14px; }
  .poster-card { grid-template-columns: 1fr; }
  .poster-card__visual { min-height: 420px; }
  .update-item { grid-template-columns: 1fr; }
  .video-section__grid { gap: 35px; }
  .video-shell--large { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { display: grid; padding: 18px 0; }
  .page-hero { padding: 70px 0; }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .filter-panel { grid-template-columns: 1fr; }
  .catalogue-meta { align-items: flex-start; flex-direction: column; }
  .split-cta { align-items: stretch; flex-direction: column; }
  .path-decision__card { min-height: 0; padding: 24px; }
  .path-decision__card h2, .path-decision__card h3 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .path-decision__card::before { top: -105px; right: -95px; width: 210px; height: 210px; }
  .path-stage { gap: 20px; padding: 22px; border-radius: 18px; }
  .path-stage__intro { gap: 12px; }
  .path-stage__number { width: 38px; height: 38px; }
  .pada-grid { grid-template-columns: 1fr; }
  .pada-grid article { min-height: 0; padding: 24px; }
  .pada-grid h3 { margin: 24px 0 10px; }
  .course-hero__copy h1 { font-size: clamp(2.9rem, 13vw, 5rem); }
  .course-summary-card { padding: 22px; }
  .course-subnav .shell { gap: 18px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid article { min-height: 190px; }
  .teacher-card { grid-template-columns: 1fr; }
  .teacher-card__monogram { width: 130px; height: 130px; font-size: 3rem; }
  .updates-toolbar { align-items: stretch; flex-direction: column; }
  .update-tabs { width: 100%; display: grid; grid-template-columns: repeat(3,1fr); }
  .update-card, .update-card--featured { grid-template-columns: 1fr; }
  .update-card__poster, .update-card__media img { min-height: 280px; }
  .update-card__body { padding: 24px 22px; }
  .editor-guide ol { grid-template-columns: 1fr; }
  .update-detail-poster { min-height: 430px; }
  .process-line { grid-template-columns: 1fr; }
  .process-line span { min-height: 100px; }
  .founder-inline { grid-template-columns: 1fr; }
  .founder-hero__grid { grid-template-columns: 1fr; }
  .founder-hero__portrait { min-height: 390px; }
  .subject-band { grid-template-columns: 1fr; }
  .subject-band a { min-height: 170px; }
  .sutra-reader__toolbar { flex-direction: column; }
  .script-toggle { max-width: 100%; overflow-x: auto; }
  .event-highlight { grid-template-columns: 1fr; }
  .event-highlight > .text-link { grid-column: auto; }
  .contact-aside { grid-template-columns: 1fr; }
  .programme-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .poster-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .detail-hero h1, .course-detail-hero h1 { font-size: clamp(2.7rem, 12vw, 4.7rem); }
  .detail-media, .course-poster, .course-hero__media { width: min(100%, 480px); }
  .form-row { grid-template-columns: 1fr; }
  .article-prose, .legal-prose, .prose { font-size: 1rem; }
  .article-prose table, .legal-prose table { display: block; max-width: 100%; overflow-x: auto; }
  .footer-social { gap: 4px 18px; }
  .filter-panel label:has([data-filter-search]) { grid-column: auto; }
}

@media (max-width: 430px) {
  .shell { width: min(calc(100% - 22px), var(--shell)); }
  .site-header__actions { gap: 0; }
  .header-login { display: none; }
  .hero h1 { font-size: 3.15rem; }
  .hero__lead { font-size: 1.05rem; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__art { min-height: 360px; }
  .hero__orbit--one { width: 330px; height: 330px; }
  .hero__orbit--two { width: 235px; height: 235px; }
  .hero__symbol { width: 225px; }
  .hero__sutra-card { width: 90%; }
  .format-card, .pathway-card, .community-grid article, .course-card__body { padding: 22px; }
  .format-card__details div { grid-template-columns: 95px 1fr; }
  .course-card__footer > div { align-items: flex-start; flex-direction: column; }
  .poster-card__visual { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .page-hero h1 { font-size: 3rem; }
  .path-decision__card { min-height: 0; padding: 22px; }
  .path-decision__glyph { margin-top: 38px; }
  .course-summary-card dl div { grid-template-columns: 80px 1fr; }
  .course-subnav { display: none; }
  .course-hero { padding-top: 50px; }
  .enrollment-panel { padding: 24px; }
  .update-tabs { width: 100%; justify-content: space-between; }
  .update-tabs button { flex: 1; }
  .contact-form__actions .button { width: 100%; }
  .founder-monogram { width: 145px; height: 145px; font-size: 3.5rem; }
  .script-toggle button { padding-inline: 10px; }
  .sutra-devanagari { font-size: 2.5rem; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .poster-gallery { grid-template-columns: 1fr; }
  .course-card__media, .course-card--compact .course-card__media { aspect-ratio: 16 / 10; }
  .course-card__actions { align-items: flex-start; flex-direction: column; }
  .course-card__actions .text-link { width: 100%; }
  .key-facts div { grid-template-columns: 1fr; gap: 2px; }
  .cta-panel { padding: 25px; }
  .page-hero__mark { display: none; }
  .breadcrumbs { gap: 0 6px; }
  .course-detail__facts > div { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media (forced-colors: active) {
  .format-badge, .status-pill, .button, .course-card, .pathway-card { border: 1px solid CanvasText; }
}
