/* =============================================================
   Homepage film — section experiences
   ============================================================= */

/* ============ 1. HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  isolation: isolate;
  padding-top: 8rem;
}
.hero__layer { position: absolute; inset: 0; pointer-events: none; will-change: transform; }

.hero__sky {
  background: radial-gradient(90% 65% at 50% 88%, rgb(227 74 31), transparent 62%), radial-gradient(55% 42% at 50% 96%, rgba(255, 122, 26, .3), transparent 60%), radial-gradient(130% 100% at 50% 0%, #1b0d12 0%, var(--night) 55%);
}
.hero__photo {
  z-index: 0;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .42;
  filter: saturate(1.05) contrast(1.05);
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 8, .55) 0%, rgba(20, 10, 8, .2) 42%, rgba(20, 10, 8, .88) 100%);
}
/* slow-breathing halo sun behind the temple */
.hero__halo {
  inset: auto;
  left: 19%;
  bottom: -6vmin;
  width: 92vmin;
  height: 92vmin;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 156 66 / 88%) 0%, rgb(227 74 31 / 56%) 34%, transparent 68%);
  filter: blur(2px);
  animation: halo-breathe 7s ease-in-out infinite;
}
@keyframes halo-breathe {
  0%, 100% { opacity: .85; scale: 1; }
  50% { opacity: 1; scale: 1.045; }
}
/* fine concentric rings */
.hero__rings { inset: auto; left: 50%; bottom: -10vmin; width: 110vmin; height: 110vmin; transform: translateX(-50%) !important; }
.hero__rings circle {
  fill: none;
  stroke: rgba(232, 184, 75, .16);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.hero__rings circle:nth-child(2) { stroke-dasharray: 3 9; animation: ring-spin 70s linear infinite; transform-origin: center; }
.hero__rings circle:nth-child(3) { stroke-dasharray: 1 6; animation: ring-spin 110s linear infinite reverse; transform-origin: center; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* volumetric god-rays */
.hero__rays {
  inset: auto;
  left: 50%; bottom: -20vmin;
  width: 160vmin; height: 160vmin;
  transform: translateX(-50%);
  background: repeating-conic-gradient(from -10deg at 50% 100%,
    transparent 0deg 9deg,
    rgba(255, 150, 60, .05) 9deg 13deg,
    transparent 13deg 24deg);
  mask-image: radial-gradient(70% 70% at 50% 100%, #000 20%, transparent 70%);
  animation: rays-drift 26s ease-in-out infinite alternate;
}
@keyframes rays-drift { to { transform: translateX(-50%) rotate(7deg); } }

.hero__temple {
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #0b0504;
}
.hero__temple svg {
  width: min(120vmin, 100%);
  height: auto;
  filter: drop-shadow(0 -2px 28px rgba(255, 122, 26, .25));
}
.hero__embers { z-index: 2; }
.hero__fog {
  inset: auto 0 0 0;
  height: 24vh;
  background: linear-gradient(180deg, transparent, var(--night) 88%);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-inline: var(--gutter);
  max-width: 64rem;
  margin-top: -8vh;
}
.hero__kicker {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: var(--step--1);
  letter-spacing: .5em;
  margin-bottom: 1.6rem;
}
.hero__title { color: var(--ivory); }
.hero__title .h-line { display: block; }
.hero__title .h-line--2 {
  font-size: .52em;
  font-weight: 600;
  margin-top: .35em;
  line-height: 1.44;
}
.hero__sub {
  max-width: 38rem;
  margin: 1.8rem auto 0;
  color: var(--ivory-70);
  font-size: var(--step-0);
  line-height: 2;
}
.hero__ctas {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: .7rem;
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--ivory-50);
  font-family: var(--font-display);
}
.scroll-cue__diya { width: 30px; color: var(--saffron); }
.scroll-cue__diya .diya-flame {
  transform-origin: 50% 95%;
  animation: flame-sway 2.6s ease-in-out infinite;
}
@keyframes flame-sway {
  0%, 100% { transform: rotate(-4deg) scaleY(1); }
  50% { transform: rotate(4deg) scaleY(1.12); }
}
.scroll-cue__line {
  width: 1px; height: 3.2rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--saffron));
  animation: cue-drop 2.2s var(--ease-in-out) infinite;
}
@keyframes cue-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

/* ============ 2. STORY — જીવંત પરંપરા (pinned night→dawn) ============ */
.story {
  position: relative;
  overflow: clip;
}
.story__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
}
.story__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--night), transparent 40%, var(--night));
}
.story__stage {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  padding-block: 18vh;
}
/* dawn wash that fades in on scrub */
.story__dawn {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(255, 140, 50, .26), transparent 60%),
    linear-gradient(180deg, rgba(58, 22, 14, .65), transparent 55%);
  pointer-events: none;
}
.story__content { position: relative; text-align: center; max-width: 56rem; padding-inline: var(--gutter); }
.story__line-1 {
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--ivory-70);
}
.story__line-2 {
  font-size: var(--step-4);
  font-weight: 800;
  margin-top: .2em;
}
.story__para {
  max-width: 40rem;
  margin: 2.6rem auto 0;
  display: grid;
  gap: 1.4rem;
  font-size: var(--step-1);
  line-height: 1.95;
  color: var(--ivory-70);
}
.story__thread {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(232, 184, 75, .4) 30%, rgba(232, 184, 75, .4) 70%, transparent);
  transform: scaleY(0);
  transform-origin: top;
}

/* ============ 3. LEGACY — horizontal timeline ============ */
.legacy { position: relative; background: var(--night-2); overflow: clip; }
.legacy__head {
  position: absolute;
  top: clamp(3rem, 8vh, 6rem);
  left: 0; right: 0;
  text-align: center;
  z-index: 5;
  padding-inline: var(--gutter);
  pointer-events: none;
}
.legacy__stage {
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}
.legacy__track {
  display: flex;
  align-items: stretch;
  gap: clamp(4rem, 10vw, 9rem);
  padding-inline: max(8vw, 3rem);
  width: max-content;
  will-change: transform;
}
.era {
  position: relative;
  width: clamp(20rem, 44vw, 34rem);
  display: grid;
  align-content: center;
  gap: 1.1rem;
  padding-top: 14vh;
}
.era__photo {
  width: min(100%, 20rem);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: clip;
  border: 1px solid rgba(232, 184, 75, .18);
  margin-bottom: 20px;
}
.era__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.era__year {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.15;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 184, 75, .55);
}
.era.is-now .era__year {
  color: var(--saffron);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 60px rgba(255, 122, 26, .45);
}
.era__title { font-size: var(--step-2); font-weight: 700; color: var(--ivory); }
.era__text { color: var(--ivory-70); line-height: 2; max-width: 28rem; }
.era__dot {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(232, 184, 75, .8);
}
/* baseline rail under eras */
.legacy__rail {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(5rem, 12vh, 8rem);
  height: 1px;
  background: var(--ivory-12);
}
.legacy__progress {
  position: absolute;
  left: 0;
  bottom: clamp(5rem, 12vh, 8rem);
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--sindoor), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
}
/* parallax strata backdrop */
.legacy__strata {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 18vmin, rgba(246, 237, 224, .025) 18vmin calc(18vmin + 1px)),
    radial-gradient(70% 50% at 80% 20%, rgba(227, 74, 31, .07), transparent 60%);
  pointer-events: none;
}

/* ============ 3b. GURU SPOTLIGHT — Bapu biography sections ============ */
.guru-spotlight {
  position: relative;
  overflow: clip;
  padding-block: var(--space-section) 0;
  background: var(--night-2);
}
.guru-spotlight + .guru-spotlight {
  border-top: 1px solid var(--ivory-12);
}
.guru-spotlight--muktanand {
  margin-bottom: 0;
}
.guru-spotlight__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(227, 74, 31, .08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(232, 184, 75, .06), transparent 50%),
    repeating-radial-gradient(circle at 12% 18%, rgba(246, 237, 224, .04) 0 1px, transparent 1px 24px);
}
.guru-spotlight--muktanand .guru-spotlight__texture {
  background:
    radial-gradient(ellipse 75% 55% at 75% 25%, rgba(232, 184, 75, .1), transparent 55%),
    radial-gradient(ellipse 60% 45% at 15% 80%, rgba(255, 122, 26, .06), transparent 50%),
    repeating-radial-gradient(circle at 88% 12%, rgba(232, 184, 75, .05) 0 1px, transparent 1px 20px);
}
.guru-spotlight__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.guru-spotlight__body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 8vh, 5rem);
}
.guru-spotlight__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(.8rem, 2vw, 1.2rem);
}
.guru-spotlight__photo {
  position: relative;
  margin: 0;
}
.guru-spotlight__photo--1 { grid-column: 1; grid-row: 1; }
.guru-spotlight__photo--2 { grid-column: 2; grid-row: 1; }
.guru-spotlight__photo--3 { grid-column: 1; grid-row: 2; }
.guru-spotlight__photo--4 { grid-column: 2; grid-row: 2; }
.guru-spotlight__photo .frame {
  border-radius: calc(var(--radius) * .9);
  overflow: clip;
  box-shadow: inset 0 0 0 1px rgba(232, 184, 75, .25);
}
.guru-spotlight--bhaskaranand .guru-spotlight__photo .frame {
  box-shadow: inset 0 0 0 2px rgba(227, 74, 31, .35);
}
.guru-spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}
.guru-spotlight__photo--1 img { aspect-ratio: 3 / 5; min-height: 14rem; }
.guru-spotlight__halo {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 4rem;
  opacity: .35;
  pointer-events: none;
  z-index: 2;
}
.guru-spotlight__content { display: grid; gap: 1.6rem; }
.guru-spotlight__lead {
  color: var(--ivory-70);
  font-size: var(--step-1);
  line-height: 2;
}
.guru-spotlight__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.guru-spotlight__stat {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: grid;
  gap: .25rem;
}
.guru-spotlight--bhaskaranand .guru-spotlight__stat {
  border-color: rgba(227, 74, 31, .25);
}
.guru-spotlight--muktanand .guru-spotlight__stat {
  border-color: rgba(232, 184, 75, .3);
}
.guru-spotlight__stat-num {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 800;
  color: var(--saffron);
}
.guru-spotlight--muktanand .guru-spotlight__stat-num { color: var(--gold); }
.guru-spotlight__stat-label {
  font-size: var(--step--1);
  color: var(--ivory-50);
  line-height: 1.5;
}
.guru-spotlight__timeline-wrap {
  position: relative;
  overflow: clip;
  background: var(--night-2);
}
.guru-spotlight__strata {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 18vmin, rgba(246, 237, 224, .02) 18vmin calc(18vmin + 1px)),
    radial-gradient(70% 50% at 20% 30%, rgba(227, 74, 31, .06), transparent 60%);
}
.guru-spotlight--muktanand .guru-spotlight__strata {
  background:
    repeating-linear-gradient(90deg, transparent 0 18vmin, rgba(246, 237, 224, .02) 18vmin calc(18vmin + 1px)),
    radial-gradient(70% 50% at 80% 30%, rgba(232, 184, 75, .07), transparent 60%);
}
.guru-spotlight__timeline-head {
  position: absolute;
  top: clamp(2.5rem, 7vh, 5rem);
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  padding-inline: var(--gutter);
  pointer-events: none;
  margin-bottom: 0;
}
.guru-spotlight__stage {
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  position: relative;
}
.guru-spotlight__track {
  display: flex;
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-inline: max(8vw, 3rem);
  width: max-content;
  will-change: transform;
}
.guru-spotlight__era {
  position: relative;
  width: clamp(16rem, 36vw, 26rem);
  display: grid;
  gap: .7rem;
  padding-top: 14vh;
  padding-inline: 1.5rem;
  padding-bottom: 1.4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  align-content: start;
  flex-shrink: 0;
}
.guru-spotlight--bhaskaranand .guru-spotlight__era {
  border-color: rgba(227, 74, 31, .2);
  background: rgba(29, 14, 10, .65);
}
.guru-spotlight--muktanand .guru-spotlight__era {
  border-color: rgba(232, 184, 75, .22);
  background: rgba(20, 10, 8, .7);
}
.guru-spotlight__era-icon { font-size: 1.4rem; }
.guru-spotlight__era-period {
  font-size: var(--step--1);
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 600;
}
.guru-spotlight__era-title {
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.45;
}
.guru-spotlight__era-text {
  font-size: var(--step--1);
  color: var(--ivory-70);
  line-height: 1.85;
}
.guru-spotlight__era-dot {
  position: absolute;
  bottom: -10.3rem;
  left: 1.5rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sindoor);
  box-shadow: 0 0 14px rgba(227, 74, 31, .7);
}
.guru-spotlight--muktanand .guru-spotlight__era-dot {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(232, 184, 75, .7);
}
.guru-spotlight__rail {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(5rem, 12vh, 8rem);
  height: 1px;
  background: var(--ivory-12);
}
.guru-spotlight__progress {
  position: absolute;
  left: 0;
  bottom: clamp(5rem, 12vh, 8rem);
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--sindoor), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
}
.guru-spotlight__cta {
  text-align: center;
  padding-block: clamp(2.5rem, 6vh, 4rem);
}
@media (max-width: 48rem) {
  .guru-spotlight__body { grid-template-columns: 1fr; }
  .guru-spotlight__stats { grid-template-columns: 1fr 1fr; }
  .guru-spotlight__stage { height: auto; padding-block: 4rem 5rem; }
  .guru-spotlight__track {
    width: auto;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
  }
  .guru-spotlight__timeline-head { position: static; margin-bottom: 2rem; }
  .guru-spotlight__rail,
  .guru-spotlight__progress,
  .guru-spotlight__era-dot { display: none; }
  .guru-spotlight__era { opacity: 1 !important; transform: none !important; width: auto; padding-top: 0; }
}

/* ============ 4. DIVINE PRESENCE — bell ripples ============ */
.presence {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, var(--night-2), var(--night) 30%);
  margin-top: 0;
  z-index: 0;
}
.presence__stage {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  padding-block: 16vh;
}
.presence__ripples {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.presence__ripples i {
  grid-area: 1 / 1;
  width: 24vmin; height: 24vmin;
  border-radius: 50%;
  border: 1px solid rgba(232, 184, 75, .35);
  opacity: 0;
  scale: .4;
}
.presence__head { max-width: 50rem; padding-inline: var(--gutter); position: relative; }
.presence__intro {
  margin-top: 1.6rem;
  color: var(--ivory-70);
  font-size: var(--step-1);
  line-height: 1.95;
}
.presence__verses {
  position: relative;
  margin-top: 4.5rem;
  display: grid;
  min-height: 9em;
}
.presence__verse {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.7;
  color: var(--gold);
  opacity: 0;
}
.presence__verse em { font-style: normal; color: var(--ivory); }
/* om waveform under verses */
.presence__wave { margin: 3rem auto 0; width: min(30rem, 70vw); color: var(--sindoor); opacity: .8; }
.presence__wave path { stroke-dasharray: 1; stroke-dashoffset: 1; }

/* ============ 5. SINDOOR FLOOD ============ */
.sindoor { position: relative; }
.sindoor__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sindoor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: saturate(1.2) sepia(.15);
}
.sindoor__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--night), rgba(20, 10, 8, .7) 50%, var(--night));
}
.sindoor__spacer { height: 320vh; }
.sindoor__viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: clip;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.sindoor__drop {
  position: absolute;
  top: 50%; left: 50%;
  width: 24vmax; height: 24vmax;
  margin: -12vmax 0 0 -12vmax;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #ff8a4a 0%, var(--sindoor) 38%, var(--sindoor-deep) 78%, #8f230a 100%);
  transform: scale(.04);
  will-change: transform;
  z-index: 1;
}
.sindoor__drop::after {
  /* liquid sheen rotating inside the flood */
  content: '';
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(255, 190, 120, .22) 40deg, transparent 110deg,
    rgba(143, 35, 10, .35) 200deg, transparent 290deg);
  animation: sheen-spin 14s linear infinite;
}
@keyframes sheen-spin { to { rotate: 360deg; } }
.sindoor__label {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 700;
  font-size: var(--step-3);
}
.sindoor__content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding-inline: var(--gutter);
  opacity: 0;
}
.sindoor__content-inner { max-width: 46rem; display: grid; gap: 1.7rem; justify-items: center; }
.sindoor__title { font-size: var(--step-3); color: var(--ivory); line-height: 1.44; }
.sindoor__text { color: rgba(255, 241, 227, .92); font-size: var(--step-1); line-height: 1.95; }
.sindoor__content .btn { --btn-bg: var(--night); }
.sindoor__content .btn::after { background: var(--ivory); }

/* ============ 7. EVENTS ORBIT ============ */
.orbit-section {
  position: relative;
  padding-block: var(--space-section);
  overflow: clip;
}
.orbit {
  position: relative;
  width: min(58rem, 92vw);
  aspect-ratio: 1;
  margin: 1rem auto 0;
  display: grid;
  place-items: center;
}
.orbit__paths {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.orbit__paths::before, .orbit__paths::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(232, 184, 75, .22);
}
.orbit__paths::before { inset: 9%; }
.orbit__paths::after { inset: 26%; border-style: solid; border-color: rgba(246, 237, 224, .07); }
.orbit__center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: .6rem;
  text-align: center;
}
.orbit__diya { width: clamp(54px, 9vmin, 84px); color: var(--saffron); filter: drop-shadow(0 0 26px rgba(255, 122, 26, .65)); }
.orbit__diya .diya-flame { transform-origin: 50% 95%; animation: flame-sway 2.8s ease-in-out infinite; }
.orbit__center-label { font-family: var(--font-display); font-weight: 600; color: var(--gold); font-size: var(--step--1); letter-spacing: .25em; }
.orbit__ring { position: absolute; inset: 0; will-change: transform; }
.orbit__node {
  position: absolute;
  top: 50%; left: 50%;
  will-change: transform;
}
.orbit__node-btn {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .55rem;
  text-align: center;
  padding: 1rem;
  border-radius: 1.2rem;
  transition: background .3s;
}
.orbit__node-btn:hover, .orbit__node-btn:focus-visible { background: rgba(246, 237, 224, .05); }
.orbit__node-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(232, 184, 75, .14), 0 0 22px rgba(232, 184, 75, .7);
}
.orbit__node-name { font-family: var(--font-display); font-weight: 700; font-size: var(--step-0); color: var(--ivory); white-space: nowrap; }
.orbit__node-when { font-size: .8rem; color: var(--saffron); letter-spacing: .12em; font-family: var(--font-display); white-space: nowrap; }
.orbit__node-desc {
  max-width: 15rem;
  font-size: .85rem;
  color: var(--ivory-70);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(.4rem);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.orbit__node-btn:hover .orbit__node-desc,
.orbit__node-btn:focus-visible .orbit__node-desc { opacity: 1; transform: none; }

/* mobile: constellation column */
@media (max-width: 48rem) {
  .orbit { width: 100%; aspect-ratio: auto; display: block; padding-left: 1.4rem; }
  .orbit__paths { display: none; }
  .orbit__center { justify-items: start; text-align: left; margin-bottom: 2.6rem; }
  .orbit__ring { position: relative; display: grid; gap: 1.6rem; }
  .orbit__node { position: relative; top: auto; left: auto; transform: none !important; }
  .orbit__node-btn {
    justify-items: start;
    text-align: left;
    padding: 1.1rem 1.2rem;
    border-left: 1px solid rgba(232, 184, 75, .3);
    border-radius: 0 1rem 1rem 0;
  }
  .orbit__node-desc { opacity: 1; transform: none; max-width: none; }
}

/* ============ 8. GALLERY GLIMPSE ============ */
.glimpse { position: relative; overflow: clip; }
.glimpse__strip {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: flex-start;
  margin-top: 1rem;
}
.glimpse__col { flex: 1; display: grid; gap: clamp(1rem, 2.5vw, 2rem); will-change: transform; }
.glimpse__col:nth-child(2) { margin-top: 6vh; }
.glimpse__col:nth-child(3) { margin-top: 12vh; }
.glimpse__item { position: relative; }
.glimpse__item .frame { aspect-ratio: 3 / 4; }
.glimpse__item--wide .frame { aspect-ratio: 4 / 3; }
.glimpse__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(11, 5, 4, .85));
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .14em;
  opacity: 0;
  translate: 0 .5rem;
  transition: opacity .4s var(--ease-out), translate .4s var(--ease-out);
  border-radius: 0 0 var(--radius) var(--radius);
  pointer-events: none;
}
.glimpse__item:hover .glimpse__caption { opacity: 1; translate: 0 0; }
.glimpse__item .frame > img { transition: transform .8s var(--ease-out); }
.glimpse__item:hover .frame > img { transform: scale(1.07); }
.glimpse__more { text-align: center; margin-top: 3.5rem; }
@media (max-width: 40rem) {
  .glimpse__strip { flex-wrap: wrap; }
  .glimpse__col { flex: 1 1 40%; margin-top: 0 !important; }
}

/* ============ 9. ANUBHAV — floating quotes ============ */
.anubhav { position: relative; overflow: clip; background: var(--night-2); }
.anubhav__field { position: relative; display: grid; gap: clamp(3rem, 8vh, 6rem); }
.quote-card {
  position: relative;
  max-width: 34rem;
  padding-left: 2.2rem;
  will-change: transform;
}
.quote-card:nth-child(2) { justify-self: end; text-align: right; padding-left: 0; padding-right: 2.2rem; }
.quote-card:nth-child(3) { justify-self: center; }
.quote-card::before {
  content: '“';
  position: absolute;
  top: -.55em;
  left: 0;
  font-family: var(--font-display);
  font-size: 3.2em;
  color: var(--sindoor);
  line-height: 1;
}
.quote-card:nth-child(2)::before { left: auto; right: 0; content: '”'; }
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.85;
  color: var(--ivory);
}
.quote-card figcaption {
  margin-top: 1rem;
  font-size: var(--step--1);
  color: var(--gold);
  letter-spacing: .1em;
}
.quote-card figcaption span { color: var(--ivory-50); display: block; letter-spacing: .02em; }

/* ============ 10. DONATION CLIMAX ============ */
.donate-cta {
  position: relative;
  overflow: clip;
  text-align: center;
}
.donate-cta__stage {
  min-height: 92svh;
  display: grid;
  place-items: center;
  position: relative;
  padding-block: 16vh;
}
.donate-cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 130vmax; height: 130vmax;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(255, 122, 26, .3) 0%, rgba(227, 74, 31, .14) 30%, transparent 62%);
  scale: .25;
  opacity: .5;
  pointer-events: none;
  will-change: scale, opacity;
}
.donate-cta__content { position: relative; max-width: 46rem; padding-inline: var(--gutter); display: grid; gap: 1.8rem; justify-items: center; }
.donate-cta__title { font-size: var(--step-4); line-height: 1.44; }
.donate-cta__text { color: var(--ivory-70); font-size: var(--step-1); line-height: 1.95; max-width: 36rem; }
.donate-cta__btns { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }

/* ============ 11. CLOSING ============ */
.closing {
  position: relative;
  overflow: clip;
  text-align: center;
  padding-block: calc(var(--space-section) * 1.2);
}
.closing__dhwaja { width: 54px; margin: 0 auto 2.4rem; color: var(--sindoor); }
.closing__dhwaja path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.closing__quote {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1.7;
  max-width: 44rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.closing__quote .q-line { display: block; }
.closing__quote .q-line strong { color: var(--saffron); font-weight: 800; }
/* rising sparks */
.closing__sparks { position: absolute; inset: 0; pointer-events: none; }
.closing__sparks i {
  position: absolute;
  bottom: -2vh;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: spark-rise 7s linear infinite;
  animation-delay: var(--d, 0s);
  left: var(--x, 50%);
}
@keyframes spark-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  12% { opacity: .9; }
  100% { transform: translateY(-105vh) scale(.2); opacity: 0; }
}

/* ============ reduced motion overrides (home) ============ */
@media (prefers-reduced-motion: reduce) {
  .hero__halo, .hero__rays, .hero__rings circle { animation: none; }
  .scroll-cue__line::after { animation: none; }
  .sindoor__spacer { height: auto; }
  .sindoor__viewport { position: relative; height: auto; min-height: 100svh; padding-block: 6rem; }
  .sindoor__drop { transform: scale(4); }
  .sindoor__drop::after { animation: none; }
  .sindoor__content { opacity: 1; position: relative; }
  .sindoor__label { display: none; }
  .presence__verse { opacity: 1; position: relative; margin-bottom: 1.5rem; }
  .presence__verses { display: block; }
  .closing__sparks { display: none; }
  .donate-cta__glow { scale: 1; opacity: .6; }
  .story__dawn { opacity: 1; }
  .story__thread { transform: none; }
  .legacy__stage { height: auto; padding-block: 5rem; }
  .legacy__track { width: auto; flex-direction: column; gap: 4rem; }
  .legacy__head { position: static; margin-bottom: 3rem; }
  .era { padding-top: 0; width: auto; max-width: 40rem; margin-inline: auto; }
  .legacy__rail, .legacy__progress, .era__dot { display: none; }
  .guru-spotlight__stage { height: auto; padding-block: 5rem; }
  .guru-spotlight__track { width: auto; flex-direction: column; gap: 2rem; transform: none !important; }
  .guru-spotlight__timeline-head { position: static; margin-bottom: 2rem; }
  .guru-spotlight__rail, .guru-spotlight__progress, .guru-spotlight__era-dot { display: none; }
  .guru-spotlight__era { opacity: 1 !important; transform: none !important; padding-top: 0; }
  .closing__dhwaja path, .presence__wave path { stroke-dashoffset: 0; }
  .preloader { display: none !important; }
}
