/* ==========================================================================
   Shwet Prem Ras — design system
   Tokens and components lifted from the Claude Design proposal, rebuilt as
   real CSS so pages stay light and every page shares one vocabulary.
   ========================================================================== */

:root {
  /* Surfaces, warmest to deepest */
  --cream:        #FAF6EE;
  --cream-2:      #F4F0E7;
  --sand:         #F3EBDC;
  --sand-2:       #F1E9DA;
  --sand-3:       #EFE5D2;
  --paper:        #FFFCF6;
  --white:        #FFFFFF;

  /* Ink */
  --ink:          #241E1A;
  --ink-strong:   #1A1614;
  --ink-2:        #3A322B;
  --ink-3:        #4A403A;
  --ink-4:        #5A4F46;
  --ink-5:        #6E5F4E;
  --muted:        #8A7A6B;

  /* Accents */
  --crimson:      #A11733;
  --crimson-dark: #7A0F26;
  --teal:         #14545E;
  --teal-dark:    #0E4048;
  --gold:         #C9A24A;
  --gold-light:   #E8B75C;
  --gold-pale:    #FFE1A6;
  --gold-bright:  #FFD678;
  --terracotta:   #96604A;

  /* Dark and jewel sections */
  --night:        #241E1A;
  --night-deep:   #0E0A07;
  --cream-on-dark:#FBF3E4;
  --sand-on-dark: #B8A78D;
  --violet:       #241040;
  --violet-deep:  #1B0B32;

  /* Type */
  --font-hi:   'Tiro Devanagari Hindi', 'Noto Serif Devanagari', serif;
  --font-en:   'Cormorant Garamond', Georgia, serif;
  /* Jost carries no Devanagari; Tiro picks it up so Hindi never lands on an
     arbitrary system fallback. Latin still renders in Jost. */
  --font-ui:   'Jost', 'Tiro Devanagari Hindi', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --wrap:      1240px;
  --wrap-text: 760px;
  --gutter:    clamp(18px, 5vw, 32px);
  --section-y: clamp(54px, 8vw, 104px);

  --r-sm:  11px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  26px;
  --r-pill: 999px;

  --shadow-card:  0 2px 8px -4px rgba(26, 22, 20, .14);
  --shadow-lift:  0 26px 50px -26px rgba(26, 22, 20, .36);
  --shadow-deep:  0 30px 70px -34px rgba(36, 30, 26, .6);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------- baseline */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--crimson-dark); }

::selection { background: var(--gold-light); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--teal);
  color: var(--cream-on-dark);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus {
  left: 0;
  color: var(--cream-on-dark);
}

/* ------------------------------------------------------------------ layout */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--text { max-width: var(--wrap-text); }
.wrap--wide { max-width: 1400px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(44px, 7vw, 80px); }

.section--cream  { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--sand   { background: var(--sand); }
.section--sand2  { background: var(--sand-2); }
.section--night  { background: var(--night); color: var(--cream-on-dark); }

/* Devanagari needs more leading than Latin at the same size. */
.hi { font-family: var(--font-hi); line-height: 1.9; }

/* ------------------------------------------------------------- typography */

.eyebrow {
  font-size: 11.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
}

/* Eyebrow flanked by gold hairlines — the design's recurring section marker. */
.eyebrow--ruled {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.eyebrow--ruled::before,
.eyebrow--ruled::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--ruled::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow--ruled::after  { background: linear-gradient(90deg, var(--gold), transparent); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(38px, 5.4vw, 66px);
}

.section-title {
  font-family: var(--font-hi);
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -.015em;
  margin: 0 0 16px;
  color: var(--ink-strong);
}
.section-title--sm { font-size: clamp(27px, 3.8vw, 40px); }

.section-sub {
  font-family: var(--font-hi);
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.85;
  color: var(--ink-5);
  margin: 0;
}

.gold { color: var(--gold); }
.danda { color: var(--gold); margin-left: 2px; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-hi);
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn .arrow { font-family: var(--font-ui); font-size: 14px; }

.btn--primary {
  background: var(--teal);
  color: var(--cream-on-dark);
  box-shadow: 0 12px 28px -16px rgba(20, 84, 94, .75);
}
.btn--primary:hover { background: var(--teal-dark); color: var(--cream-on-dark); }
.btn--primary .arrow { color: var(--gold); }

.btn--ghost {
  border-color: rgba(36, 30, 26, .25);
  color: var(--ink);
  background: none;
}
.btn--ghost:hover { border-color: var(--crimson); color: var(--crimson); }

.btn--gold {
  background: rgba(255, 214, 120, .14);
  border-color: rgba(255, 214, 120, .5);
  color: var(--gold-bright);
}
.btn--gold:hover { background: var(--gold-bright); color: var(--violet); }

.btn--onDark {
  border-color: rgba(232, 183, 92, .5);
  color: var(--gold-light);
}
.btn--onDark:hover { background: rgba(232, 183, 92, .15); color: #FFFBF0; }

.btn--pill { border-radius: var(--r-pill); }
.btn--block { display: flex; width: 100%; }

.link-more {
  font-size: 14.5px;
  letter-spacing: .04em;
  color: var(--crimson);
  white-space: nowrap;
}

/* ------------------------------------------------------------------- cards */

.card {
  /* Column flex so .card__media can absorb the height difference between cards
     of unequal text length — otherwise short cards leave a white gap. */
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  color: var(--ink-strong);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  color: var(--ink-strong);
}

.card__body {
  padding: clamp(22px, 2.8vw, 30px) clamp(22px, 2.6vw, 28px) clamp(18px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__title {
  font-family: var(--font-hi);
  font-size: clamp(21px, 2.4vw, 25px);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: var(--ink-strong);
}
.card__text {
  font-family: var(--font-hi);
  font-size: clamp(15px, 1.7vw, 16.5px);
  line-height: 1.9;
  color: var(--ink-5);
  margin: 0;
  text-wrap: pretty;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-hi);
  font-size: 15px;
  color: var(--teal);
  margin-top: 6px;
}
.card__media {
  position: relative;
  min-height: clamp(150px, 20vw, 210px);
  background: #EADFC8;
  flex: 1;
}
.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--center { text-align: center; }
.card--center .card__cta { align-self: center; }

.grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

/* --------------------------------------------------------- scroll-snap rail */

.rail {
  display: flex;
  gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 6px;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * {
  flex: 0 0 min(100%, 360px);
  scroll-snap-align: center;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(18px, 2.4vw, 24px);
}
.dot {
  width: 7px;
  height: 7px;
  border: none;
  padding: 0;
  border-radius: var(--r-pill);
  background: rgba(26, 22, 20, .2);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.dot[aria-current="true"] { width: 22px; background: var(--teal); }

.dots--gold .dot { background: rgba(255, 214, 120, .28); }
.dots--gold .dot[aria-current="true"] { background: var(--gold-bright); }

/* ------------------------------------------------------------------ header */

.topbar {
  background: var(--crimson);
  color: #FFF3E4;
  font-family: var(--font-hi);
  font-size: 13.5px;
  letter-spacing: 0;
  text-transform: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px;
  padding: 9px clamp(14px, 4vw, 24px);
  text-align: center;
}
.topbar__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-pale);
  flex: none;
}
.topbar a {
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(255, 225, 166, .5);
  padding-bottom: 1px;
}
.topbar a:hover { color: #FFF; }

.site-header {
  /* Deliberately not sticky: on a reading-heavy site a bar that follows you
     down the page eats vertical space and gets in the way of the long-form
     articles and the padas. */
  position: relative;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid rgba(36, 30, 26, .12);
}

.site-header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 14px clamp(14px, 2.6vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 32px);
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(9px, 2vw, 14px);
  min-width: 0;
  flex: 1 1 auto;
}
.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  padding: 5px;
  flex: none;
  box-shadow: 0 0 0 1px rgba(36, 30, 26, .15);
}
.brand__mark img {
  height: clamp(38px, 9vw, 46px);
  width: clamp(38px, 9vw, 46px);
  object-fit: contain;
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.brand__name b {
  font-family: var(--font-en);
  font-size: clamp(17px, 4.4vw, 23px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__name span {
  font-family: var(--font-hi);
  font-size: clamp(10.5px, 2.6vw, 12px);
  color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  margin-left: auto;
  font-family: var(--font-hi);
  font-size: 15.5px;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav a { color: var(--ink-3); }
.nav a:hover,
.nav a[aria-current="page"] { color: var(--crimson); }

/* Specificity has to beat `.nav a`, which would otherwise win on the colour. */
a.nav__donate {
  background: var(--teal);
  color: var(--cream-on-dark);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-weight: 500;
  letter-spacing: .03em;
}
a.nav__donate:hover { background: var(--teal-dark); color: var(--cream-on-dark); }

.nav-toggle {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(161, 23, 51, .35);
  background: none;
  color: var(--crimson);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex: none;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: none;
}
.mobile-actions .nav__donate { padding: 12px clamp(14px, 4vw, 20px); font-size: 14px; }

.nav-drawer {
  display: none;
  border-top: 1px solid rgba(36, 30, 26, .12);
  padding: 14px var(--gutter) 26px;
  flex-direction: column;
  font-size: 17px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--cream);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--ink-2);
  padding: 15px 0;
  border-bottom: 1px solid rgba(36, 30, 26, .12);
}
.nav-drawer a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle,
  .mobile-actions { display: flex; }
}

/* -------------------------------------------------------------------- hero */

.hero {
  position: relative;
  background: radial-gradient(120% 70% at 50% 0%, #F5EBD8 0%, var(--cream) 72%);
  overflow: hidden;
  min-height: min(660px, 88vh);
  display: flex;
  align-items: center;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(30px, 7vw, 80px) var(--gutter) clamp(48px, 9vw, 96px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(38px, 5vw, 64px);
  align-items: center;
}
.hero__copy { max-width: 580px; }

.hero__salutation {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-family: var(--font-hi);
  font-size: 15px;
  color: var(--terracotta);
  letter-spacing: .06em;
}
.hero__salutation::before {
  content: "";
  width: clamp(30px, 4vw, 44px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-hi);
  font-weight: 400;
  margin: 0 0 clamp(22px, 2.8vw, 32px);
  color: var(--ink);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.28;
}
.hero h1 small {
  display: block;
  font-size: clamp(25px, 2.9vw, 36px);
  line-height: 1.4;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 400;
}
.hero__lede {
  font-family: var(--font-hi);
  font-size: clamp(16.5px, 2vw, 18.5px);
  line-height: 1.9;
  color: var(--ink-5);
  max-width: 460px;
  margin: 0 0 clamp(30px, 4vw, 44px);
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__portrait { text-align: center; }
.hero__frame {
  position: relative;
  margin-inline: auto;
  width: min(78%, 380px);
}
/* Warm halo behind the arched portrait. */
.hero__frame::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50% 50% 24px 24px;
  background: radial-gradient(56% 46% at 50% 28%,
    rgba(255, 240, 205, .7), rgba(232, 183, 92, .16) 52%, rgba(201, 162, 74, 0) 78%);
}
.hero__frame > div {
  position: relative;
  border-radius: 150px 150px 16px 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 34px 72px -30px rgba(58, 34, 12, .42);
}
.hero__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}
.hero__caption {
  font-family: var(--font-hi);
  font-size: 18px;
  color: var(--ink);
  margin: 22px 0 3px;
}
.hero__place {
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--terracotta);
}

@media (max-width: 900px) {
  .hero__inner { text-align: center; }
  .hero__copy { max-width: none; order: 2; }
  .hero__portrait { order: 1; }
  .hero__salutation { justify-content: center; }
  .hero__salutation::before { display: none; }
  .hero__lede { margin-inline: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

/* ------------------------------------------------- cinematic desktop hero
   Desktop gets a dark, full-bleed hero with the portrait bleeding off the
   right edge. Phones keep the light arched hero above — the two are separate
   markup blocks, each hidden at the other breakpoint. */

.hero-cine { display: none; }

@media (min-width: 901px) {
  .hero { display: none; }

  .hero-cine {
    display: block;
    position: relative;
    background: var(--hero-night, #150F0D);
    min-height: min(860px, calc(100vh - 118px));
    overflow: hidden;
    isolation: isolate;
  }

  .hero-cine__media {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(74%, 1280px);
    z-index: 0;
  }
  .hero-cine__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Portrait is 884x1432; the panel is landscape, so cover crops vertically.
       ~18% keeps the face in the upper third and the garlands in frame. */
    object-position: 50% 18%;
  }

  /* The scrim spans the whole hero, not just the image panel — a gradient that
     stopped at the panel edge would draw a visible vertical seam. */
  .hero-cine::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg,
        #150F0D 0%, #150F0D 26%,
        rgba(21, 15, 13, .88) 42%,
        rgba(21, 15, 13, .46) 60%,
        rgba(21, 15, 13, .12) 80%,
        rgba(21, 15, 13, .04) 100%),
      linear-gradient(180deg,
        rgba(21, 15, 13, .62) 0%, rgba(21, 15, 13, .06) 30%,
        rgba(21, 15, 13, .1) 62%, rgba(21, 15, 13, .68) 100%);
  }

  .hero-cine__inner {
    position: relative;
    z-index: 2;
    max-width: var(--wrap);
    margin-inline: auto;
    padding: clamp(56px, 8vw, 104px) var(--gutter) clamp(64px, 9vw, 116px);
    min-height: inherit;
    display: flex;
    align-items: center;
  }
  .hero-cine__copy { max-width: min(56%, 640px); }

  .hero-cine__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 clamp(20px, 2.6vw, 30px);
  }
  .hero-cine__eyebrow::before {
    content: "";
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 74, 0), var(--gold));
    flex: none;
  }

  .hero-cine h1 {
    font-family: var(--font-hi);
    font-weight: 400;
    font-size: clamp(50px, 5.4vw, 78px);
    /* Devanagari matras need more leading than Latin at the same size. */
    line-height: 1.34;
    margin: 0 0 18px;
    color: #FFF8EC;
    text-shadow: 0 2px 40px rgba(0, 0, 0, .5);
  }
  .hero-cine__second {
    font-family: var(--font-hi);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.5;
    color: var(--gold-light);
    margin: 0 0 clamp(24px, 3vw, 34px);
  }
  .hero-cine__lede {
    font-family: var(--font-hi);
    font-size: clamp(16.5px, 1.55vw, 19px);
    line-height: 1.95;
    color: #EADCC6;
    margin: 0 0 16px;
    max-width: 46ch;
    text-wrap: pretty;
  }
  .hero-cine__en {
    font-family: var(--font-en);
    font-style: italic;
    font-size: clamp(15px, 1.3vw, 17.5px);
    line-height: 1.75;
    color: #A2917C;
    margin: 0 0 clamp(30px, 4vw, 44px);
    max-width: 44ch;
  }

  .hero-cine__actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-cine__actions .btn { border-radius: var(--r-pill); padding: 16px 32px; }

  .btn--crimson {
    background: var(--crimson);
    color: #FFF3E4;
    box-shadow: 0 14px 34px -18px rgba(161, 23, 51, .9);
  }
  .btn--crimson:hover { background: var(--crimson-dark); color: #FFF3E4; }

  .btn--goldline {
    border-color: rgba(201, 162, 74, .55);
    color: var(--gold-light);
    background: none;
  }
  .btn--goldline:hover { background: rgba(201, 162, 74, .16); color: #FFF8EC; }

  .hero-cine__caption {
    position: absolute;
    right: clamp(24px, 4vw, 56px);
    bottom: clamp(24px, 4vw, 48px);
    z-index: 2;
    text-align: right;
  }
  .hero-cine__caption b {
    display: block;
    font-family: var(--font-hi);
    font-weight: 400;
    font-size: clamp(16px, 1.4vw, 19px);
    color: #FFF8EC;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
  }
  .hero-cine__caption span {
    display: block;
    font-size: 10.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 5px;
  }

  /* The homepage bar sits on the dark hero, so it inverts to match. */
  .home .topbar {
    background: #100C0A;
    color: var(--gold-pale);
    border-bottom: 1px solid rgba(201, 162, 74, .16);
  }
  .home .topbar a { color: var(--gold-light); border-bottom-color: rgba(232, 183, 92, .5); }

  .home .site-header {
    background: rgba(30, 22, 19, .88);
    border-bottom: 1px solid rgba(201, 162, 74, .16);
  }
  .home .brand__name b { color: #FFF8EC; }
  .home .brand__name span { color: #A2917C; }
  .home .brand__mark { background: transparent; box-shadow: 0 0 0 1px rgba(201, 162, 74, .35); }
  .home .nav a { color: #E4D8C6; }
  .home .nav a:hover,
  .home .nav a[aria-current="page"] { color: var(--gold-light); }
  .home a.nav__donate {
    background: var(--crimson);
    color: #FFF3E4;
    border-radius: var(--r-pill);
  }
  .home a.nav__donate:hover { background: var(--crimson-dark); color: #FFF3E4; }
}

/* ------------------------------------------------------------------ events */

.event-card {
  position: relative;
  display: block;
  background: var(--night);
  border: 1px solid rgba(232, 183, 92, .18);
  border-radius: var(--r-md);
  padding: clamp(18px, 2.2vw, 22px);
  color: #F3E8D4;
  overflow: hidden;
  box-shadow: 0 14px 34px -22px rgba(36, 30, 26, .6);
  transition: transform .24s ease, box-shadow .24s ease;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px -22px rgba(36, 30, 26, .7);
  color: #F3E8D4;
}
.event-card--featured { border-color: rgba(201, 162, 74, .55); }

.event-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  opacity: .4;
  filter: saturate(.55) contrast(1.05);
}
.event-card__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 20, 17, .96) 0%, rgba(26, 20, 17, .88) 42%, rgba(26, 20, 17, .62) 100%),
    radial-gradient(95% 80% at 100% 0%, rgba(201, 162, 74, .22), transparent 62%);
}
.event-card > *:not(.event-card__bg):not(.event-card__scrim) { position: relative; }

.event-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.event-card__days {
  font-family: var(--font-en);
  font-size: clamp(30px, 3.4vw, 34px);
  line-height: 1;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: -.01em;
  display: block;
}
.event-card__month {
  font-family: var(--font-hi);
  font-size: 13.5px;
  color: #A9927A;
}
.event-card__badge {
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  font-weight: 600;
  white-space: nowrap;
  flex: none;
}
.event-card__go {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(232, 183, 92, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 13px;
  flex: none;
}
.event-card__name {
  display: block;
  font-family: var(--font-hi);
  font-size: clamp(20px, 2.4vw, 22px);
  line-height: 1.4;
  color: #FBF3E4;
  margin-bottom: 7px;
}
.event-card__meta {
  display: block;
  font-family: var(--font-hi);
  font-size: 13.5px;
  line-height: 1.7;
  color: #A9927A;
}
.event-card__meta--dim { font-size: 12.5px; color: #8A7563; margin-top: 2px; }

/* --------------------------------------------------------- parallax intro */

.parallax { position: relative; background: var(--night-deep); }
.parallax__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.parallax__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax__media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* The satsang photo is busy, so the copy needs a deeper scrim than a
     conventional hero would — readability wins over showing the crowd. */
  background: linear-gradient(180deg,
    rgba(14, 10, 7, .38) 0%, rgba(14, 10, 7, .62) 42%,
    rgba(14, 10, 7, .88) 76%, var(--night-deep) 100%);
}
.parallax__body {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  padding: 46vh 0 clamp(80px, 12vw, 150px);
}
.parallax__body h2 {
  font-family: var(--font-hi);
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 400;
  line-height: 1.34;
  margin: 0 0 22px;
  color: #FFFBF0;
  text-shadow: 0 2px 34px rgba(0, 0, 0, .55);
}
.parallax__body p {
  font-family: var(--font-hi);
  font-size: clamp(16.5px, 2vw, 20px);
  line-height: 2;
  color: #F0E4CE;
  margin: 0;
  text-wrap: pretty;
  text-shadow: 0 1px 22px rgba(0, 0, 0, .55);
}
.parallax .eyebrow { color: #DDBE7C; display: flex; align-items: center; gap: 12px; }
.parallax .eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
}

/* Sticky parallax is disorienting when reduced motion is requested. */
@media (prefers-reduced-motion: reduce) {
  .parallax__media { position: relative; height: 52vh; }
  .parallax__body { margin-top: 0; padding-top: clamp(40px, 7vw, 70px); }
}

/* ----------------------------------------------------------------- ras/pada */

.ras {
  position: relative;
  background: var(--violet);
  overflow: hidden;
}
.ras__bg {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: max(140%, 900px);
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  opacity: .5;
  filter: blur(3px);
}
.ras__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 50% 6%,
    rgba(36, 16, 64, .2), rgba(28, 12, 50, .82) 58%, var(--violet-deep) 100%);
}
.ras__inner {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(48px, 7.5vw, 96px) var(--gutter) clamp(50px, 8vw, 100px);
}
.ras .section-title { color: #FFF8E6; text-shadow: 0 2px 34px rgba(0, 0, 0, .5); }
.ras .section-sub { color: #D6C2E8; }
.ras .eyebrow { color: var(--gold-bright); }
.ras .eyebrow--ruled::before { background: linear-gradient(90deg, transparent, var(--gold-bright)); }
.ras .eyebrow--ruled::after  { background: linear-gradient(90deg, var(--gold-bright), transparent); }

.ras__portrait {
  position: relative;
  width: min(56%, 220px);
  margin: 0 auto clamp(22px, 3vw, 30px);
}
.ras__portrait::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 42%, rgba(255, 214, 120, .5), rgba(255, 214, 120, 0) 72%);
}
.ras__portrait > div {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 0 0 1px rgba(255, 214, 120, .5), 0 24px 50px -22px rgba(0, 0, 0, .7);
}
.ras__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.pada {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 3.2vw, 36px) clamp(22px, 2.8vw, 30px);
  border-radius: 18px;
  background: rgba(20, 8, 38, .55);
  border: 1px solid rgba(255, 214, 120, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}
.rail .pada { flex: 0 0 min(100%, 380px); }
.pada__ornament {
  font-family: var(--font-en);
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 214, 120, .55);
  height: 16px;
}
/* Verse block: centred as a unit, but the lines inside are left-aligned so
   every line starts at the same edge — the longest is 62 characters, so the
   measure below fits them all on one row on a desktop. */
.pada__lines {
  display: inline-block;
  max-width: 100%;
  text-align: left;
  margin: 0;
  flex: 1;
}
.pada__line {
  display: block;
  font-family: var(--font-hi);
  font-size: clamp(15.5px, 1.55vw, 21px);
  line-height: 1.95;
  color: #FFF8E6;
  /* Hanging indent: if a line is too long for the viewport it wraps inward,
     so a continuation never reads as a new line of verse. */
  padding-left: 1.5em;
  text-indent: -1.5em;
  text-wrap: pretty;
}
.pada__line + .pada__line { margin-top: .18em; }
.pada__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255, 214, 120, .5);
  margin-inline: auto;
}
.pada__author {
  font-family: var(--font-hi);
  font-size: 13.5px;
  line-height: 1.7;
  color: #C4AEDB;
}
.pada__title {
  font-family: var(--font-hi);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--gold-bright);
  margin: 0;
}
.pada__note {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 214, 120, .75);
}

.pada__meaning {
  text-align: left;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 214, 120, .2);
}
.pada__meaning-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.pada__meaning p {
  font-family: var(--font-hi);
  font-size: 15.5px;
  line-height: 2;
  color: #D6C2E8;
  margin: 0 0 .9em;
  text-wrap: pretty;
}
.pada__meaning p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ accordion */

.qa {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
}
.qa__item {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s ease;
}
.qa__item:hover { box-shadow: 0 18px 38px -22px rgba(26, 22, 20, .3); }

.qa__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: clamp(20px, 2.4vw, 26px) clamp(18px, 2.2vw, 28px);
  display: flex;
  gap: clamp(14px, 1.8vw, 20px);
  align-items: flex-start;
  font-family: var(--font-hi);
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.6;
  color: var(--ink-strong);
  transition: color .2s ease;
}
.qa__q:hover { color: var(--crimson); }
.qa__n {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--gold);
  flex: none;
  padding-top: 5px;
}
.qa__text { flex: 1; text-wrap: pretty; }
.qa__sign {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(20, 84, 94, .1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.qa__q[aria-expanded="true"] .qa__sign {
  background: var(--teal);
  color: var(--cream-on-dark);
  transform: rotate(45deg);
}

.qa__a {
  padding: 0 clamp(18px, 2.2vw, 28px) clamp(24px, 2.8vw, 30px) clamp(44px, 4.6vw, 62px);
}
.qa__a[hidden] { display: none; }
.qa__a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(201, 162, 74, .35);
  margin-bottom: clamp(18px, 2vw, 22px);
}
.qa__a p {
  font-family: var(--font-hi);
  font-size: clamp(16px, 1.9vw, 17.5px);
  line-height: 2.05;
  color: var(--ink-4);
  margin: 0 0 1em;
  text-wrap: pretty;
}
.qa__a p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- marquee */

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  width: max-content;
  animation: spr-marquee 80s linear infinite;
  will-change: transform;
}
.marquee img {
  height: clamp(260px, 40vw, 380px);
  /* Reserve the width from the intrinsic ratio. With `width: auto` the images
     are zero-wide until they decode, which collapses the track and leaves the
     animation with nothing to move. */
  aspect-ratio: 506 / 900;
  width: auto;
  border-radius: var(--r-md);
  flex: none;
  object-fit: cover;
  background: #EADFC8;
  box-shadow: 0 14px 34px -20px rgba(36, 30, 26, .45);
}

/* Deliberately no pause-on-hover. It reads as the strip having frozen, and on
   touch a tap can leave a sticky hover state that stops it permanently. */

@keyframes spr-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ------------------------------------------------------------------ video */

.video {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--night);
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 30px -20px rgba(36, 30, 26, .5);
}
.video--feature { border-radius: 18px; box-shadow: 0 22px 48px -26px rgba(36, 30, 26, .5); }
.video iframe,
.video button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 30, 26, 0) 45%, rgba(36, 30, 26, .55));
}
.video__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(250, 246, 238, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 16px;
  padding-left: 3px;
  transition: transform .25s ease;
}
.video button:hover .video__play { transform: translate(-50%, -50%) scale(1.09); }

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(36, 30, 26, .08);
  color: var(--ink-5);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-live.is-live { background: var(--crimson); color: #FFF8EC; }
.badge-live.is-live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFF8EC;
  animation: spr-pulse 1.6s ease-in-out infinite;
}
@keyframes spr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.rowhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(36, 30, 26, .14);
  margin-bottom: 38px;
}
.rowhead h2, .rowhead h3 {
  font-family: var(--font-hi);
  font-size: clamp(25px, 3.4vw, 33px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}

/* ------------------------------------------------------------ testimonials */

/* `display: flex` below would otherwise beat the UA's [hidden] { display: none },
   leaving every slide of the carousel stacked on the page. */
.testimonial[hidden] { display: none; }

.testimonial {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(30px, 4.4vw, 56px) clamp(24px, 3.6vw, 54px) clamp(26px, 3.4vw, 42px);
  box-shadow: 0 3px 12px -6px rgba(26, 22, 20, .16);
  text-align: center;
  min-height: clamp(320px, 34vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial__mark {
  font-family: var(--font-en);
  font-size: clamp(54px, 7vw, 84px);
  line-height: .6;
  color: rgba(201, 162, 74, .4);
  display: block;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.testimonial blockquote {
  font-family: var(--font-hi);
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 2.05;
  color: #2A231E;
  margin: 0 auto;
  max-width: 720px;
  text-wrap: pretty;
}
.testimonial__rule {
  display: block;
  width: 40px; height: 1px;
  background: rgba(201, 162, 74, .6);
  margin: clamp(22px, 3vw, 32px) auto clamp(16px, 2vw, 20px);
}
.testimonial__who {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(20, 84, 94, .1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hi);
  font-size: 19px;
  flex: none;
}
.testimonial__name {
  display: block;
  font-family: var(--font-hi);
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--ink-strong);
  text-align: left;
}
.testimonial__place {
  display: block;
  font-family: var(--font-hi);
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 2px;
  text-align: left;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(22px, 3vw, 30px);
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(26, 22, 20, .2);
  background: none;
  color: var(--ink-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: none;
  transition: border-color .2s ease, color .2s ease;
}
.carousel-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ---------------------------------------------------------------- connect */

.connect {
  background: var(--crimson);
  color: #FFF8EC;
  padding-block: clamp(52px, 8vw, 88px);
}
.connect__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.connect h2 {
  font-family: var(--font-hi);
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 14px;
  color: #FFF8EC;
  text-wrap: balance;
}
.connect__links { display: flex; flex-direction: column; gap: 14px; }
.connect__link {
  background: rgba(255, 248, 236, .14);
  border: 1px solid rgba(255, 248, 236, .4);
  color: #FFF8EC;
  padding: 18px 30px;
  border-radius: 14px;
  font-size: 16px;
  letter-spacing: .03em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .22s ease, color .22s ease;
}
.connect__link:hover { background: #FFF8EC; color: var(--crimson); }
.connect__link--solid { background: var(--night); border-color: var(--night); color: #FBF3E4; font-weight: 500; }

/* ----------------------------------------------------------------- footer */

.site-footer {
  background: var(--sand-3);
  color: var(--ink-4);
  padding: clamp(52px, 8vw, 76px) 0 34px;
}
.site-footer__cols {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.site-footer h3 {
  font-family: var(--font-hi);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--terracotta);
  margin: 0 0 18px;
  font-weight: 400;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-hi);
  font-size: 15.5px;
  line-height: 1.5;
}
.site-footer nav a { color: var(--ink-3); }
.site-footer nav a:hover { color: var(--crimson); }
.site-footer__mantra {
  font-family: var(--font-hi);
  font-size: 17px;
  line-height: 1.9;
  color: var(--terracotta);
  margin: 0;
}
.site-footer__logo { height: 66px; width: auto; margin-bottom: 22px; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  border: 1px solid rgba(36, 30, 26, .25);
  color: var(--ink-3);
  border-radius: var(--r-pill);
  padding: 8px 15px;
  font-size: 12.5px;
  letter-spacing: .06em;
  transition: border-color .2s ease, color .2s ease;
}
.chip:hover { border-color: var(--crimson); color: var(--crimson); }

.site-footer__base {
  max-width: var(--wrap);
  margin: 44px auto 0;
  padding: 22px var(--gutter) 0;
  border-top: 1px solid rgba(36, 30, 26, .14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ------------------------------------------------------------ bhajan button */

/* A labelled pill rather than a bare icon — "भजन सुनें" says what it does, so
   nobody has to guess. Stays hidden until the audio is known to be playable. */
.fab {
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 20px 0 17px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(201, 162, 74, .55);
  background: var(--night);
  color: var(--gold-light);
  font-family: var(--font-hi);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 26px -12px rgba(36, 30, 26, .7);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  /* Three gentle pulses on arrival, then it stops asking for attention. */
  animation: sprFab 2.6s ease-out 3;
}
.fab[hidden] { display: none; }
.fab:hover {
  background: var(--gold-light);
  color: var(--night);
  border-color: var(--gold-light);
}
.fab__icon { font-size: 16px; line-height: 1; }
.fab__label { white-space: nowrap; }

/* Once it is playing the job is done — stop pulsing and step back. */
.fab.is-playing {
  animation: none;
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cream-on-dark);
}

@keyframes sprFab {
  0%, 100% { box-shadow: 0 10px 26px -12px rgba(36, 30, 26, .7), 0 0 0 0 rgba(201, 162, 74, 0); }
  35%      { box-shadow: 0 10px 26px -12px rgba(36, 30, 26, .7), 0 0 0 10px rgba(201, 162, 74, .22); }
  70%      { box-shadow: 0 10px 26px -12px rgba(36, 30, 26, .7), 0 0 0 18px rgba(201, 162, 74, 0); }
}
@media (prefers-reduced-motion: reduce) { .fab { animation: none; } }

/* --------------------------------------------------------- inner page shell */

.page-hero {
  position: relative;
  background: radial-gradient(120% 80% at 50% 0%, #F5EBD8 0%, var(--cream) 74%);
  padding: clamp(40px, 6vw, 72px) 0 clamp(34px, 5vw, 56px);
  border-bottom: 1px solid rgba(36, 30, 26, .1);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-hi);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.26;
  margin: 0;
  color: var(--ink);
}
.page-hero p {
  font-family: var(--font-hi);
  font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 1.85;
  color: var(--ink-5);
  margin: 14px auto 0;
  max-width: 560px;
}

.page-hero--image { text-align: left; padding: 0; border-bottom: none; }
.page-hero--image .page-hero__media {
  position: relative;
  height: min(62vh, 540px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero--image .page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, .24) 0%, rgba(20, 14, 10, .3) 48%, rgba(20, 14, 10, .86) 100%);
}
.page-hero--image .page-hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(30px, 5vw, 52px);
}
.page-hero--image h1 { color: #FFFBF0; text-shadow: 0 2px 34px rgba(0, 0, 0, .55); }
.page-hero--image .eyebrow { color: #DDBE7C; }

.crumbs {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
  padding-block: 16px;
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--crimson); }
.crumbs span { margin-inline: 8px; opacity: .5; }

/* Long-form article body — the one place we style raw migrated markup. */
.prose {
  max-width: var(--wrap-text);
  margin-inline: auto;
  font-family: var(--font-hi);
  font-size: clamp(16px, 1.9vw, 18.5px);
  line-height: 2.05;
  color: var(--ink-4);
}
.prose > * + * { margin-top: 1.15em; }
.prose p { margin: 0; text-wrap: pretty; }
.prose h2, .prose h3, .prose h4 {
  font-family: var(--font-hi);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-top: 1.8em;
}
.prose h2 { font-size: clamp(24px, 3.2vw, 32px); }
.prose h3 { font-size: clamp(21px, 2.6vw, 26px); }
.prose h4 { font-size: clamp(18px, 2.2vw, 21px); }
.prose img { border-radius: var(--r-md); margin-inline: auto; }
.prose ul, .prose ol { margin: 0; padding-left: 1.4em; }
.prose li + li { margin-top: .5em; }
.prose blockquote {
  margin: 0;
  padding: clamp(20px, 2.6vw, 26px);
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, .34);
  border-radius: 14px;
  color: var(--ink);
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { border-bottom: 1px solid rgba(161, 23, 51, .3); }
.prose iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--r-md); }

/* ------------------------------------------------------------------ misc */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}
.gallery a {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #EADFC8;
  box-shadow: var(--shadow-card);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery a:hover img { transform: scale(1.05); }

.tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2.2vw, 24px);
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, .3);
  border-radius: 13px;
  color: var(--ink-2);
}
.tile__n {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .06em;
}
.tile__text {
  font-family: var(--font-hi);
  font-size: clamp(15.5px, 1.8vw, 17px);
  line-height: 1.8;
  text-wrap: pretty;
}

.pull {
  font-family: var(--font-hi);
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.85;
  text-align: center;
  margin: 0;
}
.section--night .pull { color: var(--cream-on-dark); }
.section--night p { color: var(--sand-on-dark); }

.reading-bar {
  position: fixed;
  left: 0; top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 200;
  transition: width .1s linear;
}

/* Scroll-reveal: only opt in when motion is welcome. */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.pada__more { color: rgba(255, 214, 120, .6); letter-spacing: .3em; }

/* Warm placeholder so lazily-loaded imagery never flashes as an empty band. */
.marquee img,
.video img,
.hero__frame img,
.ras__portrait img { background: #EADFC8; }

/* ------------------------------------------------------- event detail card */

.shivir {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  background: var(--paper);
  border: 1px solid rgba(36, 30, 26, .12);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 44px -28px rgba(36, 30, 26, .35);
  scroll-margin-top: 24px;
}

/* Venue photo sits behind the date, dimmed under a warm scrim so the
   Cormorant numerals stay legible. */
.shivir__date {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 22px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #7A0F26, #A11733 46%, #C9A24A);
}
.shivir__date img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.shivir__date::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(122, 15, 38, .92), rgba(161, 23, 51, .86) 46%, rgba(201, 162, 74, .78)),
    radial-gradient(80% 60% at 50% 0%, rgba(0, 0, 0, .28), transparent 70%);
}
.shivir__date > *:not(img) { position: relative; z-index: 1; }

.shivir__n {
  position: absolute;
  top: -26px;
  left: -6px;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 150px;
  line-height: 1;
  color: rgba(255, 225, 166, .16);
}
.shivir__days {
  font-family: var(--font-en);
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1;
  color: #FFF7E6;
  font-weight: 600;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.shivir__month {
  font-family: var(--font-hi);
  font-size: 18px;
  color: var(--gold-pale);
}
.shivir__rule { width: 34px; height: 1px; background: rgba(255, 225, 166, .6); margin: 8px 0; }
.shivir__place {
  font-family: var(--font-hi);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 247, 230, .92);
}

.shivir__body {
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.shivir__body h2 {
  font-family: var(--font-hi);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  line-height: 1.4;
}
.shivir__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  font-family: var(--font-hi);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-4);
  border-top: 1px solid rgba(36, 30, 26, .1);
  padding-top: 14px;
}
.shivir__meta dt {
  display: inline;
  color: var(--terracotta);
}
.shivir__meta dd { display: inline; margin: 0; }
.shivir__note {
  font-family: var(--font-hi);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}
.shivir__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}
.shivir__actions .btn { font-size: 14px; padding: 13px 22px; }


/* ------------------------------------------------------ Shwet Ras page ---- */

/* One pada per row. Two columns halved the measure and forced every line to
   wrap mid-phrase, which breaks the metre and is hard to read. */
.pada-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 940px;
  margin-inline: auto;
}
.pada-stack .pada { text-align: center; }
.pada-stack .pada__meaning { max-width: 76ch; margin-inline: auto; width: 100%; }

/* The homepage rail keeps a narrower card, so ease the verse down a step
   rather than letting it wrap three times. */
.rail .pada .pada__line { font-size: clamp(14.5px, 1.35vw, 16.5px); line-height: 1.9; }
.rail .pada { flex: 0 0 min(100%, 460px); }


/* Eyebrows are uppercase + widely tracked, which suits the Latin ones
   ("SHWET GYAN") but mangles Devanagari — it has no uppercase, and tracking
   splits the conjuncts. build.js tags Hindi eyebrows with this modifier. */
.eyebrow--hi {
  font-family: var(--font-hi);
  font-size: 14.5px;
  letter-spacing: 0;
  text-transform: none;
}
.site-footer__base { font-family: var(--font-hi); letter-spacing: 0; font-size: 13.5px; }
.chip { font-family: var(--font-ui); }

/* ------------------------------------------------------- devotee accounts */

/* A grid of quote cards reads far better than a one-at-a-time carousel: every
   account is scannable at once, and nothing is hidden behind a timer. */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: start;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: clamp(24px, 2.8vw, 32px);
  background: var(--white);
  border-radius: var(--r-xl);
  color: var(--ink-strong);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  color: var(--ink-strong);
}
.quote-card__mark {
  font-family: var(--font-en);
  font-size: 42px;
  line-height: .5;
  color: rgba(201, 162, 74, .45);
  height: 20px;
}
.quote-card__text {
  font-family: var(--font-hi);
  font-size: clamp(15.5px, 1.6vw, 17px);
  line-height: 1.95;
  color: var(--ink-4);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.quote-card__who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 74, .3);
}
.quote-card__avatar {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: rgba(20, 84, 94, .1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hi);
  font-size: 18px;
}
.quote-card__name {
  display: block;
  font-family: var(--font-hi);
  font-size: 16px;
  color: var(--ink-strong);
  line-height: 1.4;
}
.quote-card__place {
  display: block;
  font-family: var(--font-hi);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.quote-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-hi);
  font-size: 14.5px;
  color: var(--teal);
}

/* Opening pull-quote on a devotee's own page. */
.pull-quote {
  max-width: var(--wrap-text);
  margin: 0 auto clamp(30px, 4vw, 46px);
  padding: clamp(22px, 3vw, 32px) clamp(24px, 3.4vw, 40px);
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-hi);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.95;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* --------------------------------------------------------------- watch ---- */

.watch-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.watch-feature__title {
  font-family: var(--font-hi);
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: pretty;
}
.watch-feature__note {
  font-family: var(--font-hi);
  font-size: clamp(15.5px, 1.7vw, 17px);
  line-height: 1.9;
  color: var(--ink-5);
  margin: 0 0 26px;
  max-width: 46ch;
}
.watch-feature__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.video-item { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.video-item__meta { display: flex; flex-direction: column; gap: 4px; }
.video-item__title {
  font-family: var(--font-hi);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  /* Titles vary wildly in length; cap at three lines so the grid stays even. */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-item__date {
  font-family: var(--font-hi);
  font-size: 13px;
  color: var(--muted);
}
.badge-live { font-family: var(--font-hi); letter-spacing: 0; text-transform: none; font-size: 13px; }

/* --------------------------------------------------------------- shorts ---- */

/* Shorts are vertical and snackable, so they get a horizontal snap rail rather
   than a grid — on a phone the next card peeks in, which is what invites the
   swipe. Cards are links, so this still works with JavaScript off. */
.shorts-rail {
  display: flex;
  gap: clamp(12px, 1.4vw, 18px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 8px;
  scroll-padding-left: var(--gutter);
}
.shorts-rail::-webkit-scrollbar { display: none; }

.short-card {
  flex: 0 0 clamp(158px, 44vw, 208px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-2);
}
.short-card__media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #241E1A;
  box-shadow: 0 12px 30px -20px rgba(36, 30, 26, .5);
}
.short-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.short-card:hover .short-card__media img { transform: scale(1.06); }
.short-card__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 238, .92);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  transition: transform .25s ease;
}
.short-card:hover .short-card__play { transform: translate(-50%, -50%) scale(1.1); }
.short-card__views {
  position: absolute;
  left: 8px; bottom: 8px;
  background: rgba(20, 14, 12, .78);
  color: #FFF3E4;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .04em;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.short-card__title {
  font-family: var(--font-hi);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* A playing Short widens so the video is comfortable to watch in place. */
.short-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.short-card.is-playing {
  flex-basis: clamp(230px, 62vw, 320px);
  transition: flex-basis .35s var(--ease);
}
.short-card.is-playing .short-card__title { color: var(--crimson); }

/* Testimonials on the homepage slide; /anubhav/ keeps the full grid. */
.quote-rail > .quote-card { flex: 0 0 min(100%, 380px); scroll-snap-align: center; }

/* ----------------------------------------------------------------- books --- */

.lede {
  max-width: var(--wrap-text);
  margin: 0 auto clamp(40px, 5.5vw, 64px);
  font-family: var(--font-hi);
  font-size: clamp(16.5px, 2vw, 19.5px);
  line-height: 2;
  color: var(--ink-4);
  text-align: center;
  text-wrap: pretty;
}

.book-list {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 34px);
  max-width: 1000px;
  margin-inline: auto;
}

.book {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 40px);
  background: var(--paper);
  border: 1px solid rgba(201, 162, 74, .3);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
/* Covers vary in aspect ratio, so contain rather than crop — a cropped book
   cover looks like a mistake. */
.book__cover {
  display: flex;
  align-items: center;
  justify-content: center;
}
.book__cover img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 50px -26px rgba(36, 30, 26, .6);
}
.book__title {
  font-family: var(--font-hi);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--ink);
}
.book__author {
  font-family: var(--font-hi);
  font-size: 14.5px;
  color: var(--terracotta);
  margin: 0 0 18px;
}
.book__text {
  font-family: var(--font-hi);
  font-size: clamp(15.5px, 1.75vw, 17.5px);
  line-height: 2;
  color: var(--ink-4);
  margin: 0 0 26px;
  text-wrap: pretty;
}
.book__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .book { grid-template-columns: 1fr; text-align: center; }
  .book__cover img { max-height: 300px; width: auto; margin-inline: auto; }
  .book__actions { justify-content: center; }
}

/* ------------------------------------------------- discourse chapters ---- */

.podcast-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(34px, 4.5vw, 52px);
}
.podcast-head__badge {
  display: inline-block;
  font-family: var(--font-hi);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--crimson);
  background: rgba(161, 23, 51, .08);
  border: 1px solid rgba(161, 23, 51, .22);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.podcast-head__title {
  font-family: var(--font-hi);
  font-size: clamp(23px, 3.2vw, 33px);
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 10px;
  color: var(--ink);
  text-wrap: balance;
}
.podcast-head__by { font-family: var(--font-hi); font-size: 15px; color: var(--terracotta); margin: 0 0 14px; }
.podcast-head__hint { font-family: var(--font-hi); font-size: 15px; line-height: 1.8; color: var(--ink-5); margin: 0; }

/* The question row is now a play control, so it needs a duration and a
   play/pause glyph rather than the accordion's plus sign. */
.qa__len {
  flex: none;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
  padding-top: 4px;
}
.qa__q[aria-expanded="true"] .qa__sign { transform: none; }
.qa__q .qa__sign { font-size: 13px; padding-left: 2px; }
.qa__q.is-playing .qa__sign {
  background: var(--crimson);
  color: #FFF3E4;
  padding-left: 0;
}
.qa__q.is-playing .qa__text { color: var(--crimson); }

.chapter { display: flex; flex-direction: column; gap: 10px; }
.chapter__bar {
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(36, 30, 26, .12);
  overflow: hidden;
  cursor: pointer;
}
.chapter__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width .25s linear;
}
.chapter__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
}
.chapter__of { flex: 1; }
.chapter__src { font-family: var(--font-hi); font-size: 14px; }
[data-chapters][data-error] .chapter__bar { opacity: .35; }
