/* ============================================================
   BHAVYANETRI — Lead from Within
   Design system + all sections. Dark/light adaptive.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.76,0,.24,1);

  --wrap: 1360px;
  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
  --sect-y: clamp(5rem, 12vh, 11rem);
  --r-lg: 34px;
  --r-md: 22px;
  --r-sm: 14px;
}

:root, [data-theme="dark"] {
  --bg: #0A0F0C;
  --bg-2: #0d140f;
  --surface: #131c17;
  --surface-2: #18231c;
  --ink: #F3EEE4;
  --ink-soft: rgba(243,238,228,.72);
  --ink-faint: rgba(243,238,228,.45);
  --forest: #35a074;
  --forest-2: #17452f;
  --forest-deep: #0e2a1e;
  --gold: #D8B25A;
  --gold-2: #EFD79A;
  --purple: #8f79cf;
  --line: rgba(243,238,228,.13);
  --line-2: rgba(243,238,228,.06);
  --glass: rgba(255,255,255,.05);
  --glass-2: rgba(255,255,255,.03);
  --glass-brd: rgba(255,255,255,.13);
  --shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  --scrim: linear-gradient(180deg, rgba(10,15,12,0) 0%, rgba(10,15,12,.35) 45%, rgba(10,15,12,.92) 100%);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #F2ECDF;
  --bg-2: #EBE3D2;
  --surface: #FBF7EF;
  --surface-2: #ffffff;
  --ink: #16211B;
  --ink-soft: rgba(22,33,27,.72);
  --ink-faint: rgba(22,33,27,.5);
  --forest: #1C6B45;
  --forest-2: #cfe3d6;
  --forest-deep: #0f3d29;
  --gold: #9A7422;
  --gold-2: #b9902f;
  --purple: #5a479a;
  --line: rgba(22,33,27,.14);
  --line-2: rgba(22,33,27,.07);
  --glass: rgba(255,255,255,.55);
  --glass-2: rgba(255,255,255,.35);
  --glass-brd: rgba(22,33,27,.1);
  --shadow: 0 30px 70px -34px rgba(30,40,20,.4);
  --scrim: linear-gradient(180deg, rgba(242,236,223,0) 0%, rgba(242,236,223,.3) 45%, rgba(242,236,223,.9) 100%);
  color-scheme: light;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  transition: background .6s var(--ease), color .6s var(--ease);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: #10160f; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ---------- TYPO ---------- */
.display {
  font-family: var(--serif);
  font-weight: 340;
  line-height: .98;
  letter-spacing: -.02em;
  font-size: clamp(2.6rem, 6.6vw, 6.2rem);
  font-optical-sizing: auto;
}
.italic { font-style: italic; font-weight: 340; }
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  font-weight: 600; color: var(--forest);
}
.kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.kicker.light { color: var(--gold-2); }

/* ---------- LAYOUT ---------- */
.section { padding: var(--sect-y) var(--pad-x); max-width: var(--wrap); margin-inline: auto; }
section[id], [id].journeys, [id].film, [id].partners { scroll-margin-top: 96px; }
.section__head { max-width: 780px; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .kicker { justify-content: center; }
.section__head.between { display: flex; justify-content: space-between; align-items: flex-end; max-width: var(--wrap); gap: 2rem; flex-wrap: wrap; }
.section__head .kicker { margin-bottom: 1.4rem; }
.section__lead { margin-top: 1.6rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); max-width: 46ch; }
.section__head.center .section__lead { margin-inline: auto; }

/* ---------- UTILITIES ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-radius: var(--r-md);
}
.glass-strong {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  z-index: 120; transition: width .1s linear;
}

/* reveal states (JS toggles .in) */
.reveal-up { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-up.in { opacity: 1; transform: none; }
.reveal-img { opacity: 0; transform: translateY(20px) scale(0.97); clip-path: inset(0 0 10% 0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), clip-path 1.1s var(--ease-in-out); }
.reveal-img.in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* ---------- CUSTOM CURSOR ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot { position: fixed; width: 7px; height: 7px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); }
.cursor__ring {
  position: fixed; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%;
  transform: translate(-50%,-50%); transition: width .35s var(--ease), height .35s var(--ease), background .3s, border-color .3s;
  display: grid; place-items: center;
}
.cursor__label { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color:#fff; opacity: 0; transition: opacity .25s; font-weight:600; }
body.cursor-hover .cursor__ring { width: 74px; height: 74px; background: rgba(255,255,255,.12); }
body.cursor-hover .cursor__ring.has-label { border-color: transparent; background: var(--gold); mix-blend-mode: normal; }
body.cursor-hover .cursor__label { opacity: 1; color: #10160f; }
body.cursor-down .cursor__ring { width: 34px; height: 34px; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- LOADER ---------- */
.loader { position: fixed; inset: 0; z-index: 300; background: var(--bg); display: grid; place-items: center; }
.loader__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; width: min(80vw, 420px); }
.loader__mark { width: 84px; height: 84px; overflow: visible; }
.loader__mark circle, .loader__mark path { stroke: var(--gold); stroke-width: 2.5; fill: none; }
.lm-ring { stroke-dasharray: 290; stroke-dashoffset: 290; animation: draw 1.6s var(--ease) forwards; opacity:.5; }
.lm-arc { stroke-dasharray: 150; stroke-dashoffset: 150; animation: draw 1.4s var(--ease) .35s forwards; }
.lm-core { fill: var(--gold); stroke: none; transform-origin: 60px 66px; animation: pulseCore 1.8s var(--ease) infinite; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulseCore { 0%,100%{ transform: scale(.7); opacity:.6 } 50%{ transform: scale(1.15); opacity:1 } }
.loader__word { font-family: var(--serif); font-size: 1.7rem; letter-spacing: .06em; display: flex; overflow: hidden; }
.loader__word span { display: inline-block; transform: translateY(110%); animation: wordUp .8s var(--ease) forwards; }
.loader__word span:nth-child(1){animation-delay:.2s}.loader__word span:nth-child(2){animation-delay:.25s}.loader__word span:nth-child(3){animation-delay:.3s}.loader__word span:nth-child(4){animation-delay:.35s}.loader__word span:nth-child(5){animation-delay:.4s}.loader__word span:nth-child(6){animation-delay:.45s}.loader__word span:nth-child(7){animation-delay:.5s}.loader__word span:nth-child(8){animation-delay:.55s}.loader__word span:nth-child(9){animation-delay:.6s}.loader__word span:nth-child(10){animation-delay:.65s}.loader__word span:nth-child(11){animation-delay:.7s}
@keyframes wordUp { to { transform: none; } }
.loader__meta { display: flex; justify-content: space-between; width: 100%; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.loader__pct { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.loader__bar { width: 100%; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--forest), var(--gold)); }
.loader__curtain { position: absolute; inset: 0; background: var(--bg-2); transform: scaleY(0); transform-origin: bottom; }
.loader.done { pointer-events: none; }
.loader.done .loader__inner { opacity: 0; transform: translateY(-20px); transition: .6s var(--ease); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem var(--pad-x);
  transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: .7rem var(--pad-x);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-2);
}
.nav.hide { transform: translateY(-105%); }
.nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.15rem; letter-spacing: .01em; }
.nav__mark { width: 30px; height: 30px; }
.nav__mark circle, .nav__mark path { stroke: var(--gold); stroke-width: 3; fill: none; }
.nav__mark .fill { fill: var(--gold); stroke: none; }
.nav__links { display: flex; gap: clamp(1rem, 2vw, 2.1rem); }
.nav__links a { position: relative; font-size: .9rem; font-weight: 500; color: var(--ink-soft); padding: .3rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width .4s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }

.theme-toggle { width: 52px; }
.theme-toggle__track { display: block; width: 52px; height: 26px; border-radius: 20px; border: 1px solid var(--line); background: var(--glass); position: relative; transition: .4s var(--ease); }
.theme-toggle__thumb { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); transition: transform .45s var(--ease); box-shadow: 0 0 12px -2px var(--gold); }
[data-theme="light"] .theme-toggle__thumb { transform: translateX(26px); }

.nav__burger { display: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); position: relative; }
.nav__burger span { position: absolute; left: 11px; width: 18px; height: 1.6px; background: var(--ink); transition: .35s var(--ease); }
.nav__burger span:first-child { top: 16px; } .nav__burger span:last-child { bottom: 16px; }
.nav__burger.open span:first-child { top: 19px; transform: rotate(45deg); }
.nav__burger.open span:last-child { bottom: 19px; transform: rotate(-45deg); }

/* mobile menu */
.menu { position: fixed; inset: 0; z-index: 99; background: var(--bg-2); display: flex; flex-direction: column; justify-content: center; padding: 2rem var(--pad-x); clip-path: circle(0% at calc(100% - 46px) 40px); transition: clip-path .8s var(--ease-in-out); pointer-events: none; }
.menu.open { clip-path: circle(150% at calc(100% - 46px) 40px); pointer-events: auto; }
.menu__links { display: flex; flex-direction: column; gap: .4rem; }
.menu__links a { font-family: var(--serif); font-size: clamp(1.8rem, 8vw, 3rem); display: flex; align-items: baseline; gap: 1rem; opacity: 0; transform: translateY(30px); }
.menu.open .menu__links a { animation: menuIn .6s var(--ease) forwards; }
.menu.open .menu__links a:nth-child(1){animation-delay:.15s}.menu.open .menu__links a:nth-child(2){animation-delay:.2s}.menu.open .menu__links a:nth-child(3){animation-delay:.25s}.menu.open .menu__links a:nth-child(4){animation-delay:.3s}.menu.open .menu__links a:nth-child(5){animation-delay:.35s}.menu.open .menu__links a:nth-child(6){animation-delay:.4s}.menu.open .menu__links a:nth-child(7){animation-delay:.45s}.menu.open .menu__links a:nth-child(8){animation-delay:.5s}.menu.open .menu__links a:nth-child(9){animation-delay:.55s}.menu.open .menu__links a:nth-child(10){animation-delay:.6s}
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu__i { font-family: var(--sans); font-size: .8rem; color: var(--gold); font-weight: 600; }
.menu__foot { display: flex; justify-content: space-between; margin-top: 3rem; color: var(--ink-faint); font-size: .85rem; }

/* ---------- BUTTONS ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .92rem; border-radius: 100px; padding: .95rem 1.7rem; transition: transform .4s var(--ease), background .4s, color .4s, border-color .4s; overflow: hidden; }
.btn i { width: 17px; height: 17px; display: inline-flex; transition: transform .4s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--gold); color: #12160e; }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--pill { border: 1px solid var(--glass-brd); background: var(--glass); backdrop-filter: blur(10px); padding: .6rem 1.3rem; }
.btn--pill:hover { background: var(--gold); color: #12160e; border-color: var(--gold); }
.btn.full { width: 100%; justify-content: center; }
.btn__glow { position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.4), transparent 60%); opacity: 0; transition: opacity .4s; }
.btn:hover .btn__glow { opacity: .35; }
.play-dot { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: #12160e; }
.play-dot i { width: 13px; height: 13px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad-x); overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); animation: heroZoom 18s var(--ease) forwards; opacity: .82; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim { position: absolute; inset: 0; background: var(--scrim); }
.hero__scrim::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 90% at 20% 30%, transparent 40%, color-mix(in srgb, var(--bg) 60%, transparent) 100%); }

.hero__content { position: relative; z-index: 2; max-width: 900px; margin-top: 6vh; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 1.6rem; }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold); animation: pulseCore 2.4s infinite; }
.hero__title { font-family: var(--serif); font-weight: 320; font-size: clamp(3.6rem, 15vw, 13rem); line-height: .86; letter-spacing: -.03em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .w { display: inline-block; transform: translateY(102%); }
.hero__title .w.italic { color: var(--gold-2); }
.hero__sub { max-width: 52ch; margin: 2rem 0 2.4rem; font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink-soft); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero__stats { position: absolute; right: var(--pad-x); bottom: clamp(2rem, 6vh, 5rem); z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; max-width: 360px; }
.stat { padding: 1.1rem 1.2rem; }
.stat__num { display: block; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400; line-height: 1; color: var(--ink); }
.stat__label { font-size: .74rem; color: var(--ink-soft); letter-spacing: .04em; }
.float { will-change: transform; }

.hero__scroll { position: absolute; left: var(--pad-x); bottom: clamp(2rem, 6vh, 5rem); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-54px; left:0; width:100%; height:54px; background: var(--gold); animation: scrollDot 2.2s var(--ease) infinite; }
@keyframes scrollDot { to { top: 54px; } }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 1.6rem 0; background: var(--bg-2); }
.marquee__row { display: flex; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__row span { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 3rem); font-style: italic; color: var(--ink-soft); padding-right: 1rem; }
.marquee__row b { color: var(--gold); font-style: normal; margin: 0 1rem; }

/* ---------- STORY ---------- */
.story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.quote-float { position: absolute; left: -8%; bottom: 8%; width: min(88%, 340px); padding: 1.5rem 1.6rem; }
.quote-float blockquote { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.3; }
.quote-float figcaption { margin-top: .8rem; font-size: .78rem; letter-spacing: .05em; color: var(--gold); text-transform: uppercase; }
.story__text { display: flex; flex-direction: column; gap: 1rem; }
.pillar-card { padding: 1.6rem 1.7rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; transform-style: preserve-3d; }
.pillar-card:hover { border-color: color-mix(in srgb, var(--gold) 50%, transparent); box-shadow: var(--shadow); }
.pillar-card__tag { display: inline-block; font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold); margin-bottom: .5rem; }
.pillar-card p { color: var(--ink-soft); font-size: 1rem; }

/* timeline */
.timeline { margin-top: clamp(3rem, 7vw, 6rem); }
.timeline__track { height: 2px; background: var(--line); position: relative; margin-bottom: 2.5rem; }
.timeline__progress { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--forest), var(--gold)); }
.timeline__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.tl-item .tl-year { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tl-item h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin: .5rem 0 .5rem; line-height: 1.1; }
.tl-item p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- IMPACT ---------- */
.impact { }
.impact__grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto auto; gap: 1.2rem; }
.impact__counters { grid-column: 1; grid-row: 1 / span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.metric { padding: 2rem 1.8rem; display: flex; flex-direction: column; justify-content: center; min-height: 190px; transition: transform .5s var(--ease), border-color .5s; }
.metric:hover { border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.metric__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 340; line-height: .9; color: var(--gold-2); }
.metric__label { margin-top: .8rem; font-size: .92rem; color: var(--ink-soft); }
.impact__map { grid-column: 2; grid-row: 1; padding: 1.6rem; display: flex; flex-direction: column; }
.impact__map-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .5rem; }
.map-wrap { position: relative; flex: 1; display: grid; place-items: center; min-height: 240px; }
.india-map { width: auto; height: 260px; }
.india-outline { fill: color-mix(in srgb, var(--forest) 16%, transparent); stroke: var(--forest); stroke-width: 1.4; }
.city { fill: var(--gold); opacity: 0; transform-box: fill-box; transform-origin: center; }
.city.show { animation: cityPop .5s var(--ease) forwards; }
@keyframes cityPop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.city.pulse { opacity: 1; }
.city.pulse::after {}
.map-tooltip { position: absolute; padding: .3rem .7rem; background: var(--gold); color:#12160e; font-size: .72rem; font-weight: 600; border-radius: 20px; pointer-events: none; opacity: 0; transform: translate(-50%,-140%); transition: opacity .2s; white-space: nowrap; }
.impact__ba { grid-column: 2; grid-row: 2; padding: 1.6rem; }
.ba { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .5rem; }
.ba__tag { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.ba__before .ba__tag { color: var(--ink-faint); }
.ba__after .ba__tag { color: var(--forest); }
.ba ul { margin-top: .7rem; display: flex; flex-direction: column; gap: .5rem; }
.ba li { font-size: .92rem; padding-left: 1.1rem; position: relative; }
.ba__before li { color: var(--ink-faint); }
.ba__before li::before { content:"—"; position:absolute; left:0; }
.ba__after li { color: var(--ink); }
.ba__after li::before { content:"→"; position:absolute; left:0; color: var(--gold); }
.ba__divider { position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: var(--line); }

/* ---------- FOCUS / CAUSES ---------- */
.focus__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cause { position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; border: 1px solid var(--line); isolation: isolate; }
.cause__img { position: absolute; inset: 0; z-index: -1; }
.cause__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); transform: scale(1.02); }
.cause::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(6,10,8,.55) 65%, rgba(6,10,8,.92) 100%); }
.cause:hover .cause__img img { transform: scale(1.1); }
.cause__body { padding: 1.8rem; color: #F3EEE4; transform: translateY(28px); transition: transform .6s var(--ease); }
.cause:hover .cause__body { transform: none; }
.cause__icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); margin-bottom: 1rem; backdrop-filter: blur(6px); }
.cause__icon i { width: 20px; height: 20px; color: var(--gold-2); }
.cause__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: .4rem; }
.cause__body p { font-size: .94rem; color: rgba(243,238,228,.78); max-width: 34ch; }
.cause__more { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; opacity: 0; transform: translateY(8px); transition: .5s var(--ease); }
.cause__more i { width: 15px; height: 15px; }
.cause:hover .cause__more { opacity: 1; transform: none; }

/* ---------- PROGRAMS ---------- */
.programs__list { border-top: 1px solid var(--line); }
.prog { position: relative; display: grid; grid-template-columns: 60px 1.6fr 1fr 40px; align-items: center; gap: 1.5rem; padding: 2rem .5rem; border-bottom: 1px solid var(--line); transition: padding .5s var(--ease); overflow: hidden; }
.prog__idx { font-family: var(--serif); font-style: italic; color: var(--ink-faint); font-size: 1.1rem; transition: color .4s; }
.prog__main h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.05; transition: transform .5s var(--ease); }
.prog__tease { font-size: .95rem; color: var(--ink-soft); max-width: 46ch; margin-top: .5rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .5s, margin .5s; }
.prog__meta { display: flex; flex-direction: column; gap: .3rem; font-size: .82rem; color: var(--ink-faint); text-align: right; }
.prog__meta span:first-child { color: var(--gold); }
.prog__arrow { justify-self: end; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .5s var(--ease); }
.prog__arrow i { width: 16px; height: 16px; }
.prog__reveal { position: absolute; right: 12%; top: 50%; width: 220px; height: 150px; border-radius: var(--r-sm); overflow: hidden; transform: translateY(-50%) scale(.9); opacity: 0; pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); box-shadow: var(--shadow); z-index: 2; }
.prog__reveal img { width: 100%; height: 100%; object-fit: cover; }
.prog:hover { padding-left: 1.5rem; padding-right: 1.5rem; }
.prog:hover .prog__idx { color: var(--gold); }
.prog:hover .prog__main h3 { transform: translateX(6px); }
.prog:hover .prog__tease { max-height: 60px; opacity: 1; margin-top: .6rem; }
.prog:hover .prog__arrow { background: var(--gold); border-color: var(--gold); color: #12160e; transform: rotate(-45deg); }
@media (hover:hover) and (min-width: 900px) { .prog:hover .prog__reveal { opacity: 1; transform: translateY(-50%) scale(1); } }

/* ---------- JOURNEYS ---------- */
.journeys { padding: var(--sect-y) 0; overflow: hidden; }
.journeys .section__head { padding-inline: var(--pad-x); max-width: var(--wrap); margin-inline: auto; }
.journeys__track-wrap { cursor: grab; padding-left: var(--pad-x); }
.journeys__track-wrap.drag { cursor: grabbing; }
.journeys__track { display: flex; gap: 1.4rem; width: max-content; padding-right: var(--pad-x); }
.jcard { position: relative; width: clamp(280px, 34vw, 420px); border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; flex: 0 0 auto; border: 1px solid var(--line); isolation: isolate; }
.jcard__img { position: absolute; inset: 0; z-index: -1; }
.jcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.jcard::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, transparent 35%, rgba(6,10,8,.9) 100%); }
.jcard:hover .jcard__img img { transform: scale(1.08); }
.jcard__body { padding: 1.8rem; color:#F3EEE4; }
.jcard__chip { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-2); padding: .35rem .8rem; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; margin-bottom: .9rem; backdrop-filter: blur(6px); }
.jcard__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.05; margin-bottom: .5rem; }
.jcard__body p { font-size: .92rem; color: rgba(243,238,228,.8); }
.jcard__open { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.jcard__open i { width: 15px; height: 15px; }

/* ---------- FILM ---------- */
.film { max-width: var(--wrap); }
.film__poster { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 74vh; display: grid; place-items: center; text-align: center; isolation: isolate; }
.film__poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 6s var(--ease); }
.film__poster:hover img { transform: scale(1.06); }
.film__scrim { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at center, rgba(6,10,8,.35), rgba(6,10,8,.82)); }
.film__content { color: #F3EEE4; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; padding: 2rem; }
.film__content .kicker { justify-content: center; }
.film__content .display { color:#fff; }
.film__play { position: relative; width: 92px; height: 92px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; backdrop-filter: blur(8px); transition: transform .4s var(--ease), background .4s; margin-top: .5rem; }
.film__play i { width: 26px; height: 26px; color: #fff; margin-left: 3px; }
.film__play:hover { transform: scale(1.08); background: var(--gold); }
.film__play:hover i { color: #12160e; }
.film__play-ring { position: absolute; inset: -8px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; animation: ringPulse 2.6s var(--ease) infinite; }
@keyframes ringPulse { 0%{ transform: scale(1); opacity: .8 } 100%{ transform: scale(1.5); opacity: 0 } }
.film__note { font-size: .82rem; letter-spacing: .1em; color: rgba(243,238,228,.7); text-transform: uppercase; }

/* ---------- FOUNDER ---------- */
.founder__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.portrait-frame { position: relative; border-radius: var(--r-lg); overflow: visible; aspect-ratio: 4/5; }
.portrait-ph { width: 100%; height: 100%; border-radius: var(--r-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; background: linear-gradient(160deg, var(--forest-2), var(--forest-deep)); border: 1px solid var(--glass-brd); position: relative; overflow: hidden; }
.portrait-ph::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--gold) 25%, transparent), transparent 60%); }
.portrait-ph__mono { font-family: var(--serif); font-size: clamp(3rem,8vw,6rem); color: var(--gold-2); letter-spacing: .05em; }
.portrait-ph__hint { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(243,238,228,.55); }
.founder__badge { position: absolute; right: -6%; bottom: 12%; padding: .8rem 1.2rem; font-size: .82rem; font-weight: 600; }
.founder__text .kicker { margin-bottom: 1.2rem; }
.founder__lead { font-size: clamp(1.15rem, 1.8vw, 1.5rem); margin: 1.5rem 0 1rem; color: var(--ink); font-family: var(--serif); font-weight: 340; line-height: 1.3; }
.founder__text p { color: var(--ink-soft); margin-bottom: 1rem; }
.founder__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2vw,1.6rem); line-height: 1.35; border-left: 2px solid var(--gold); padding-left: 1.4rem; margin: 1.6rem 0; color: var(--ink); }
.founder__sign { width: 200px; height: 54px; margin-bottom: 1.4rem; }
.founder__sign path { stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; }
.founder__sign.in path { animation: draw 2.4s var(--ease) forwards; }

/* ---------- BOOK ---------- */
.book { }
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.book__visual { display: grid; place-items: center; perspective: 1600px; min-height: 460px; }
.book3d { position: relative; width: 300px; height: 420px; transform-style: preserve-3d; transform: rotateY(-28deg) rotateX(6deg); transition: transform .8s var(--ease); }
.book3d__cover { position: absolute; inset: 0; border-radius: 4px 10px 10px 4px; background: linear-gradient(150deg, #16442f, #0c2b1d 70%); box-shadow: var(--shadow); padding: 2.4rem 2rem; display: flex; flex-direction: column; color: var(--gold-2); border: 1px solid rgba(216,178,90,.2); overflow: hidden; }
.book3d__cover::after { content:""; position:absolute; top:0; left:0; width: 14px; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,.35), transparent); }
.book3d__brand { font-size: .68rem; letter-spacing: .3em; opacity: .8; }
.book3d__title { font-family: var(--serif); font-size: 2.6rem; line-height: .95; margin-top: auto; color: #EFD79A; font-style: italic; font-weight: 380; }
.book3d__author { font-size: .74rem; letter-spacing: .1em; margin-top: 1rem; opacity: .8; }
.book3d__mark { position: absolute; top: 2rem; right: 1.8rem; width: 34px; height: 34px; }
.book3d__mark svg circle, .book3d__mark svg path { stroke: var(--gold-2); stroke-width: 3; fill: none; }
.book3d__mark svg .fill { fill: var(--gold-2); stroke: none; }
.book3d__spine { position: absolute; left: -22px; top: 0; width: 22px; height: 100%; background: linear-gradient(#0c2b1d, #071a12); transform: rotateY(90deg); transform-origin: right; border-radius: 4px 0 0 4px; }
.book3d__pages { position: absolute; right: -1px; top: 6px; width: 22px; height: calc(100% - 12px); background: repeating-linear-gradient(to right, #efe7d6, #efe7d6 1px, #d9cfb8 2px, #d9cfb8 3px); transform: rotateY(90deg); transform-origin: left; }
.book__text .kicker { margin-bottom: 1.2rem; }
.book__list { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .8rem; }
.book__list li { display: flex; align-items: center; gap: .8rem; color: var(--ink-soft); }
.book__list i { width: 18px; height: 18px; color: var(--forest); flex: none; }
.book__cta { display: flex; align-items: center; gap: 1.2rem; }
.book__soon { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- EXPERTS ---------- */
.experts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.expert { border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); overflow: hidden; transition: transform .5s var(--ease), border-color .5s; }
.expert:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.expert__photo { aspect-ratio: 4/3; display: grid; place-items: center; background: linear-gradient(160deg, var(--forest-2), var(--forest-deep)); position: relative; overflow: hidden; }
.expert__photo::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 40%, color-mix(in srgb,var(--gold) 22%, transparent), transparent 65%); }
.expert__mono { font-family: var(--serif); font-size: 3rem; color: var(--gold-2); }
.expert__info { padding: 1.5rem 1.6rem; }
.expert__info h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; }
.expert__role { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.expert__quote { margin: 1rem 0; color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.05rem; }
.expert__social { height: 0; overflow: hidden; opacity: 0; transition: .4s var(--ease); }
.expert:hover .expert__social { height: 34px; opacity: 1; }
.expert__social a { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); }
.expert__social i { width: 15px; height: 15px; }

/* ---------- GALLERY ---------- */
.gallery__filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.gf { padding: .55rem 1.2rem; border-radius: 100px; border: 1px solid var(--line); font-size: .84rem; font-weight: 500; color: var(--ink-soft); transition: .35s var(--ease); }
.gf:hover { color: var(--ink); }
.gf.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.gallery__masonry { columns: 3; column-gap: 1rem; }
.gitem { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r-sm); overflow: hidden; position: relative; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.gitem img { width: 100%; transition: transform 1s var(--ease); }
.gitem::after { content:""; position:absolute; inset:0; background: rgba(6,10,8,0); transition: background .4s; }
.gitem:hover img { transform: scale(1.06); }
.gitem:hover::after { background: rgba(6,10,8,.2); }
.gitem.hide { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 210; background: rgba(6,10,8,.94); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .4s; padding: 5vw; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow); }

/* ---------- VOICES ---------- */
.voices__stage { max-width: 900px; margin-inline: auto; text-align: center; }
.voices__viewport { position: relative; min-height: 240px; }
.voice { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); pointer-events: none; }
.voice.is-active { opacity: 1; transform: none; position: relative; pointer-events: auto; }
.voice p { font-family: var(--serif); font-weight: 340; font-size: clamp(1.5rem, 3.4vw, 2.7rem); line-height: 1.22; letter-spacing: -.01em; }
.voice footer { display: flex; align-items: center; gap: 1rem; }
.voice__ava { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--forest), var(--forest-deep)); color: var(--gold-2); font-family: var(--serif); font-size: 1.1rem; }
.voice footer span:last-child { text-align: left; }
.voice footer b { display: block; font-weight: 600; }
.voice footer i { font-style: normal; font-size: .84rem; color: var(--ink-faint); }
.voices__nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.4rem; }
.vbtn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .35s var(--ease); }
.vbtn:hover { background: var(--gold); border-color: var(--gold); color:#12160e; }
.vbtn i { width: 16px; height: 16px; }
.voices__dots { display: flex; gap: .5rem; }
.vdot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: .3s; }
.vdot.on { background: var(--gold); width: 26px; border-radius: 10px; }

/* ---------- BEGIN ---------- */
.begin__inner { padding: clamp(2rem, 6vw, 5rem); }
.begin__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.segmented { display: inline-flex; padding: .35rem; border-radius: 100px; border: 1px solid var(--line); background: var(--glass-2); gap: .2rem; flex-wrap: wrap; }
.seg { padding: .7rem 1.3rem; border-radius: 100px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); transition: .35s var(--ease); }
.seg.is-active { background: var(--ink); color: var(--bg); }
.slider-block { margin-top: 2.4rem; }
.slider-block__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.slider-block__head > span:first-child { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.slider-block__val { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: var(--line); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); cursor: grab; box-shadow: 0 0 0 6px color-mix(in srgb, var(--gold) 20%, transparent); transition: transform .2s; }
.range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.range::-moz-range-thumb { width: 26px; height: 26px; border: none; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px color-mix(in srgb, var(--gold) 20%, transparent); }
.range__ticks { display: flex; justify-content: space-between; margin-top: .8rem; font-size: .72rem; color: var(--ink-faint); }
.begin__outcome { margin-top: 2.4rem; padding: 1.4rem 1.6rem; border-radius: var(--r-md); border: 1px dashed var(--line); }
.begin__outcome-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.begin__outcome p { margin-top: .6rem; color: var(--ink-soft); }
.begin__card { padding: 2.2rem; }
.begin__card-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--forest); font-weight: 700; }
.begin__card-title { font-family: var(--serif); font-weight: 400; font-size: 2rem; margin: .8rem 0 .6rem; line-height: 1.05; }
.begin__card-desc { color: var(--ink-soft); font-size: .96rem; }
.begin__card-list { margin: 1.4rem 0; display: flex; flex-direction: column; gap: .7rem; }
.begin__card-list li { display: flex; gap: .7rem; align-items: center; font-size: .92rem; color: var(--ink); }
.begin__card-list i { width: 17px; height: 17px; color: var(--forest); flex: none; }
.begin__card-fine { margin-top: 1rem; font-size: .78rem; color: var(--ink-faint); text-align: center; }

/* ---------- INSIGHTS ---------- */
.insights__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.4rem; }
.article { display: block; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .5s var(--ease), border-color .5s; }
.article:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--gold) 40%, transparent); }
.article__img { overflow: hidden; aspect-ratio: 16/10; }
.article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.article:hover .article__img img { transform: scale(1.06); }
.article__body { padding: 1.6rem 1.7rem; }
.article__meta { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.article__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.1; margin-top: .6rem; }
.article__body p { margin-top: .7rem; color: var(--ink-soft); font-size: .95rem; }
.article--feature .article__body h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.insights__col { display: flex; flex-direction: column; gap: 1.4rem; }
.insights__col .article { display: grid; grid-template-columns: 120px 1fr; align-items: center; }
.article__img.sm { aspect-ratio: 1; }
.insights__col .article__body { padding: 1rem 1.3rem; }
.insights__col .article__body h3 { font-size: 1.15rem; margin-top: .4rem; }

/* ---------- PARTNERS ---------- */
.partners { padding: clamp(3rem,7vw,5rem) 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); overflow: hidden; }
.partners__label { text-align: center; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2rem; }
.partners__marquee { overflow: hidden; }
.partners__row { display: flex; align-items: center; gap: clamp(2.5rem, 6vw, 5rem); width: max-content; will-change: transform; }
.plogo { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--ink-faint); filter: grayscale(1); opacity: .55; transition: .4s var(--ease); letter-spacing: .02em; white-space: nowrap; }
.plogo:hover { color: var(--gold); opacity: 1; filter: none; }

/* ---------- CONTACT ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__lead { margin: 1.5rem 0 2rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 40ch; }
.contact__map { padding: 1.8rem; display: flex; gap: 1.6rem; align-items: center; }
.contact__map .india-map.sm { height: 160px; }
.contact__details { display: flex; flex-direction: column; gap: 1rem; }
.contact__details a, .contact__details span { display: flex; align-items: center; gap: .7rem; color: var(--ink-soft); font-size: .95rem; transition: color .3s; }
.contact__details a:hover { color: var(--gold); }
.contact__details i { width: 17px; height: 17px; color: var(--gold); flex: none; }
.city.pulse { animation: pulseMarker 2.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulseMarker { 0%{ filter: drop-shadow(0 0 0 var(--gold)); } 50%{ filter: drop-shadow(0 0 10px var(--gold)); } 100%{ filter: drop-shadow(0 0 0 var(--gold)); } }

.contact__form { padding: clamp(1.6rem, 3vw, 2.6rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 1.4rem 0 .6rem; font-size: 1rem; transition: border-color .4s; resize: none; }
.field select { padding-top: 1.4rem; }
.field select option { background: var(--surface); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field label { position: absolute; left: 0; top: 1.4rem; color: var(--ink-faint); font-size: 1rem; pointer-events: none; transition: .3s var(--ease); }
.field label span { font-size: .8rem; opacity: .7; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label { top: 0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.contact__form .btn { grid-column: 1 / -1; margin-top: .5rem; }
.form__status { grid-column: 1/-1; font-size: .88rem; color: var(--forest); min-height: 1.2em; }

/* ---------- FOOTER ---------- */
.footer { position: relative; background: #070C09; color: #F3EEE4; padding: clamp(4rem,9vw,8rem) var(--pad-x) 2rem; overflow: hidden; margin-top: var(--sect-y); border-radius: var(--r-lg) var(--r-lg) 0 0; }
[data-theme="light"] .footer { background: #0b1610; }
.footer__particles { position: absolute; inset: 0; z-index: 0; opacity: .5; width: 100%; height: 100%; }
.footer > *:not(.footer__particles) { position: relative; z-index: 1; }
.footer__cta { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: clamp(2rem,5vw,4rem); margin-bottom: 3rem; }
.footer__cta .kicker { margin-bottom: 1.4rem; }
.footer__big { display: inline-block; font-family: var(--serif); font-weight: 320; font-size: clamp(3rem, 11vw, 9rem); line-height: .9; letter-spacing: -.02em; transition: color .5s; }
.footer__big:hover { color: var(--gold-2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { color: rgba(243,238,228,.6); max-width: 32ch; margin-top: 1rem; font-size: .95rem; }
.footer__brand .nav__name { color: #F3EEE4; }
.footer__col h4 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.2rem; }
.footer__col a { display: block; color: rgba(243,238,228,.7); padding: .35rem 0; transition: color .3s, padding .3s; font-size: .95rem; }
.footer__col a:hover { color: #fff; padding-left: 6px; }
.footer__news p { color: rgba(243,238,228,.6); font-size: .9rem; margin-bottom: 1rem; }
.news { display: flex; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; overflow: hidden; }
.news input { flex: 1; background: transparent; border: none; padding: .8rem 1.2rem; color: #fff; }
.news input::placeholder { color: rgba(243,238,228,.4); }
.news button { width: 48px; background: var(--gold); color:#12160e; display: grid; place-items: center; transition: background .3s; }
.news button:hover { background: var(--gold-2); }
.news button i { width: 16px; height: 16px; }
.news__status { display: block; margin-top: .6rem; font-size: .8rem; color: var(--gold-2); min-height: 1em; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: .82rem; color: rgba(243,238,228,.5); flex-wrap: wrap; gap: 1rem; }
.footer__social { display: flex; gap: .8rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: .3s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color:#12160e; }
.footer__social i { width: 16px; height: 16px; }

/* ---------- MODALS ---------- */
.modal { position: fixed; inset: 0; z-index: 190; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .4s; padding: 5vw; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal__scrim { position: absolute; inset: 0; background: rgba(6,10,8,.8); backdrop-filter: blur(8px); }
.modal__panel { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; max-width: 900px; width: 100%; max-height: 86vh; overflow: hidden; transform: scale(.94) translateY(20px); transition: transform .5s var(--ease); }
.modal.open .modal__panel { transform: none; }
.modal__img { position: relative; }
.modal__img img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.modal__body { padding: clamp(1.6rem,3vw,2.6rem); overflow-y: auto; }
.modal__chip { display: inline-block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold); padding: .35rem .8rem; border: 1px solid var(--line); border-radius: 20px; }
.modal__body h3 { font-family: var(--serif); font-weight: 400; font-size: 2rem; line-height: 1.05; margin: 1rem 0 1.4rem; }
.modal__arc > div { padding: 1rem 0; border-top: 1px solid var(--line); }
.modal__arc span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--forest); font-weight: 700; }
.modal__arc p { margin-top: .4rem; color: var(--ink-soft); font-size: .96rem; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 5; width: 42px; height: 42px; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-brd); display: grid; place-items: center; backdrop-filter: blur(8px); }
.modal__close i { width: 18px; height: 18px; }
.modal--video .modal__video { position: relative; z-index: 1; width: min(960px, 92vw); aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow); transform: scale(.94); transition: transform .5s var(--ease); }
.modal--video.open .modal__video { transform: none; }
.modal__video-inner { width: 100%; height: 100%; }
.modal__video-inner iframe { width: 100%; height: 100%; border: 0; }
.video-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; background: linear-gradient(160deg, var(--forest-2), var(--forest-deep)); color: var(--gold-2); text-align: center; padding: 2rem; }
.video-ph i { width: 40px; height: 40px; }
.video-ph p { font-family: var(--serif); font-size: 1.4rem; }
.video-ph span { font-size: .85rem; color: rgba(243,238,228,.6); }

/* icons */
[data-ic] svg { width: 100%; height: 100%; display: block; }
i[data-ic] { display: inline-flex; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .impact__grid { grid-template-columns: 1fr; }
  .impact__counters { grid-column: 1; grid-row: auto; }
  .impact__map, .impact__ba { grid-column: 1; grid-row: auto; }
  .insights__grid { grid-template-columns: 1fr; }
  .focus__grid { grid-template-columns: repeat(2, 1fr); }
  .experts__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .btn--pill { display: none; }
  .story__grid, .founder__grid, .book__grid, .contact__grid, .begin__grid { grid-template-columns: 1fr; }
  .timeline__row { grid-template-columns: 1fr 1fr; }
  .hero__stats { position: static; margin-top: 3rem; max-width: none; grid-template-columns: repeat(2,1fr); }
  .hero { min-height: auto; padding-top: 20vh; padding-bottom: 4rem; }
  .hero__scroll { display: none; }
  .quote-float { position: static; width: auto; margin-top: 1rem; }
  .founder__badge { position: static; display: inline-block; margin-top: 1rem; }
  .modal__panel { grid-template-columns: 1fr; }
  .modal__img img { min-height: 200px; max-height: 34vh; }
}
@media (max-width: 620px) {
  .focus__grid, .experts__grid, .contact__form, .footer__grid, .hero__stats { grid-template-columns: 1fr; }
  .gallery__masonry { columns: 2; }
  .timeline__row { grid-template-columns: 1fr; }
  .segmented { width: 100%; }
  .seg { flex: 1; text-align: center; }
  .insights__col .article { grid-template-columns: 90px 1fr; }
  .contact__map { flex-direction: column; text-align: center; }
  .footer__bar { flex-direction: column; text-align: center; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */
/* page transition overlay */
.page-fade { position: fixed; inset: 0; z-index: 250; background: var(--bg); opacity: 0; pointer-events: none; transition: opacity .45s var(--ease); }
.page-fade.show { opacity: 1; pointer-events: all; }

/* solid nav on inner pages */
.nav--solid { background: color-mix(in srgb, var(--bg) 84%, transparent); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-2); }
.has-solid-nav main { padding-top: 66px; }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { width: 100%; }

/* inner-page header band */
.page-hero { padding: clamp(3rem,7vw,6rem) var(--pad-x) clamp(2rem,5vw,3.5rem); max-width: var(--wrap); margin-inline: auto; }
.page-hero.center { text-align: center; }
.page-hero.center .kicker { justify-content: center; }
.page-hero .kicker { margin-bottom: 1.4rem; }
.page-hero h1 { font-family: var(--serif); font-weight: 320; font-size: clamp(2.7rem, 8vw, 6.8rem); line-height: .95; letter-spacing: -.02em; }
.page-hero h1 .italic { color: var(--gold-2); }
.page-hero__lead { margin-top: 1.6rem; max-width: 54ch; font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink-soft); }
.page-hero.center .page-hero__lead { margin-inline: auto; }
.section--tight { padding-top: 0; }

/* real portrait / experts / book imagery */
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); display: block; }
.expert__photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.expert__photo { aspect-ratio: 3/4; }
.book__cover-real { perspective: 1600px; display: grid; place-items: center; min-height: 460px; }
.book__cover-real img { width: min(330px, 74%); border-radius: 4px 8px 8px 4px; box-shadow: var(--shadow); transform: rotateY(-20deg) rotateX(4deg); transition: transform .8s var(--ease); }
.book__cover-real:hover img { transform: rotateY(-7deg) rotateX(2deg); }

/* founder full page */
.founder__certs { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0; }
.cert { padding: .45rem 1rem; border: 1px solid var(--line); border-radius: 100px; font-size: .8rem; color: var(--ink-soft); }
.cert b { color: var(--gold); font-weight: 600; }

/* programs detail */
.programs-list { max-width: var(--wrap); margin-inline: auto; }
.program { border-top: 1px solid var(--line); padding: clamp(2rem,4vw,3.4rem) 0; display: grid; grid-template-columns: 1fr 0.9fr 1.1fr; gap: clamp(1.4rem,3vw,2.5rem); align-items: start; }
.program:last-child { border-bottom: 1px solid var(--line); }
.program__idx { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.15rem; }
.program__title { font-family: var(--serif); font-weight: 340; font-size: clamp(1.9rem,3.6vw,3.1rem); line-height: 1.02; margin: .5rem 0 1rem; }
.program__tease { color: var(--ink-soft); font-size: 1.05rem; max-width: 40ch; }
.program__media { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.program__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.program:hover .program__media img { transform: scale(1.06); }
.program__facts { display: flex; flex-direction: column; gap: 1.3rem; }
.fact__k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin-bottom: .5rem; }
.fact__v { color: var(--ink-soft); font-size: .98rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { padding: .45rem .95rem; border: 1px solid var(--line); border-radius: 100px; font-size: .82rem; color: var(--ink); background: var(--surface); }

/* voices photos */
.voice__photo { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); box-shadow: 0 0 24px rgba(216,178,90,.3); flex: none; }

/* story banner */
.story__banner { position: relative; border-radius: var(--r-lg); overflow: hidden; margin-top: clamp(3rem, 6vw, 5rem); aspect-ratio: 21/9; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; isolation: isolate; border: 1px solid var(--line); }
.story__banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 6s var(--ease); }
.story__banner:hover .story__banner-img { transform: scale(1.05); }
.story__banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(10,15,12,.45), rgba(10,15,12,.88)); z-index: -1; }
.story__banner-content h3 { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.6rem); color: var(--ink); max-width: 34ch; line-height: 1.2; font-weight: 340; }
.story__banner-content p { font-size: 1.05rem; color: var(--gold-2); margin-top: .8rem; letter-spacing: .05em; font-family: var(--serif); font-style: italic; }

/* book insights */
.book__insights { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-top: clamp(3rem, 6vw, 5.5rem); padding: clamp(2.2rem, 5vw, 4rem); border-radius: var(--r-lg); }
.book__insights-media { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); box-shadow: var(--shadow); }
.book__insights-media img { width: 100%; height: 100%; object-fit: cover; }
.book__insights-body h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; margin-bottom: 1rem; font-weight: 340; }
.book__insights-body p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 1.2rem; }

/* contact lounge */
.contact__lounge-box { margin-top: 1.6rem; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); position: relative; aspect-ratio: 16/9; }
.contact__lounge-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.contact__lounge-box:hover img { transform: scale(1.05); }
.contact__lounge-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,15,12,.85) 100%); display: flex; align-items: flex-end; padding: 1.2rem; }
.contact__lounge-overlay span { font-size: .84rem; color: var(--gold-2); font-weight: 500; letter-spacing: .05em; }

/* home teaser sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; max-width: var(--wrap); margin-inline: auto; }
.split__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band { text-align: center; max-width: 800px; margin-inline: auto; }
.cta-band .display { margin-bottom: 1.8rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold); font-weight: 600; letter-spacing: .02em; margin-top: 1.6rem; }
.link-arrow i { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }
.mini-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; max-width: var(--wrap); margin-inline: auto; }

@media (max-width: 1080px) {
  .program { grid-template-columns: 1fr 1fr; }
  .program__media { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .book__insights { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .program { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .has-solid-nav main { padding-top: 56px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__img { transform: none; }
  .reveal-up, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
