/* ============================================================
   ISKCON Vrindavan — "Vrindavan Dham" design system
   Sacred · timeless · trustworthy · devotional · premium
   Headings  Cormorant Garamond   Body  DM Sans   Numbers  DM Mono
   Three color worlds via [data-palette]: cream (default) · maroon · charcoal
   ============================================================ */

/* ---------- Color worlds ---------- */
:root,
:root[data-palette="cream"] {
  --bg:        #F3EADA;   /* warm temple cream            */
  --bg-2:      #EDE2CE;   /* alternating band            */
  --surface:   #FBF6EC;   /* cards / panels              */
  --surface-2: #F6EEDF;
  --ink:       #2A2018;   /* warm near-black text        */
  --ink-soft:  #5A4D3D;
  --muted:     #8C7B63;
  --line:      #E2D6BF;
  --line-soft: #ECE2CF;
  --saffron:   #B8431B;   /* deep saffron — primary      */
  --saffron-d: #95350F;
  --saffron-wash:#F4E3D6;
  --gold:      #A9802F;   /* antique gold leaf           */
  --gold-br:   #C29A47;
  --gold-wash: #F2E7CC;
  --maroon:    #6E1F2A;
  --on-accent: #FBF6EC;
  --hero-veil: linear-gradient(180deg, rgba(28,17,12,.34) 0%, rgba(28,17,12,.4) 42%, rgba(28,17,12,.78) 100%);
  --hero-veil-side: linear-gradient(90deg, rgba(28,17,12,.74) 0%, rgba(28,17,12,.5) 46%, rgba(28,17,12,.12) 100%);
  --shadow-sm: 0 1px 2px rgba(42,32,24,.05), 0 2px 8px rgba(42,32,24,.05);
  --shadow:    0 10px 34px rgba(42,32,24,.10), 0 2px 8px rgba(42,32,24,.06);
  --shadow-lg: 0 30px 70px rgba(42,32,24,.18);
  color-scheme: light;
}
:root[data-palette="maroon"] {
  --bg:        #2C0F15;
  --bg-2:      #350F18;
  --surface:   #3A1620;
  --surface-2: #431B26;
  --ink:       #F4E6D2;
  --ink-soft:  #DCC6A8;
  --muted:     #B59A80;
  --line:      rgba(214,176,116,.20);
  --line-soft: rgba(214,176,116,.12);
  --saffron:   #E07C40;
  --saffron-d: #C9612A;
  --saffron-wash: rgba(224,124,64,.16);
  --gold:      #D7B36A;
  --gold-br:   #E6CB8B;
  --gold-wash: rgba(215,179,106,.14);
  --maroon:    #6E1F2A;
  --on-accent: #2C0F15;
  --hero-veil: linear-gradient(180deg, rgba(24,7,11,.30) 0%, rgba(24,7,11,.45) 42%, rgba(24,7,11,.80) 100%);
  --hero-veil-side: linear-gradient(90deg, rgba(24,7,11,.82) 0%, rgba(24,7,11,.55) 46%, rgba(24,7,11,.18) 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.25);
  --shadow:    0 14px 38px rgba(0,0,0,.40);
  --shadow-lg: 0 34px 80px rgba(0,0,0,.55);
  color-scheme: dark;
}
:root[data-palette="charcoal"] {
  --bg:        #1A1613;
  --bg-2:      #211C17;
  --surface:   #25201A;
  --surface-2: #2C261F;
  --ink:       #F1E8DA;
  --ink-soft:  #D2C4B0;
  --muted:     #9D8E79;
  --line:      rgba(210,184,140,.16);
  --line-soft: rgba(210,184,140,.09);
  --saffron:   #DB8B4C;
  --saffron-d: #C0743A;
  --saffron-wash: rgba(219,139,76,.16);
  --gold:      #D6B673;
  --gold-br:   #E6CC92;
  --gold-wash: rgba(214,182,115,.13);
  --maroon:    #7C2733;
  --on-accent: #1A1613;
  --hero-veil: linear-gradient(180deg, rgba(10,8,6,.28) 0%, rgba(10,8,6,.44) 42%, rgba(10,8,6,.80) 100%);
  --hero-veil-side: linear-gradient(90deg, rgba(10,8,6,.82) 0%, rgba(10,8,6,.54) 46%, rgba(10,8,6,.16) 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.30);
  --shadow:    0 14px 38px rgba(0,0,0,.45);
  --shadow-lg: 0 34px 80px rgba(0,0,0,.60);
  color-scheme: dark;
}

:root {
  --maxw: 1240px;
  --serif: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:  'DM Mono', ui-monospace, 'SF Mono', monospace;
  --arch: 47% 47% 10px 10px / 30% 30% 3px 3px;
  --arch-wide: 40% 40% 12px 12px / 16% 16% 4px 4px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .5s ease, color .5s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0;
  line-height: 1.07;
  letter-spacing: 0;
  color: var(--ink);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; }
.num { font-family: var(--mono); font-feature-settings: "tnum"; letter-spacing: -.01em; }

/* ---------- Section rhythm ---------- */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.band { background: var(--bg-2); }
.band-surface { background: var(--surface); }
@media (max-width: 720px) { .section { padding: 76px 0; } .section-sm { padding: 56px 0; } }

/* ---------- Kicker / eyebrow ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--saffron);
  margin-bottom: 22px;
}
.kicker::before { content: ""; width: 24px; height: 1px; background: var(--gold); opacity: .9; }
.kicker.center { justify-content: center; }
.kicker.center::after { content: ""; width: 24px; height: 1px; background: var(--gold); opacity: .9; }
.kicker.on-dark { color: var(--gold-br); }

/* ---------- Type scale ---------- */
.display { font-size: clamp(46px, 7vw, 88px); line-height: 1.02; }
h1, .h1 { font-size: 64px; }                      /* desktop */
h2, .h2 { font-size: 48px; }                      /* desktop */
h3, .h3 { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1.12; letter-spacing: 0; }
@media (max-width: 1024px) { h1, .h1 { font-size: 56px; } }   /* tablet */
@media (max-width: 600px)  { h1, .h1 { font-size: 42px; } h2, .h2 { font-size: 32px; } }  /* mobile */
.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.65; color: var(--ink-soft); }
.small { font-size: 15px; }
.muted { color: var(--muted); }
.serif-quote { font-family: var(--serif); font-style: italic; }

/* Centered section header */
.sec-head { max-width: 760px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head p { color: var(--ink-soft); font-size: 19px; }

/* ---------- Gold rule with diamond ---------- */
.rule { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); }
.rule::before, .rule::after { content: ""; height: 1px; width: 64px; background: currentColor; opacity: .5; }
.rule .dia { width: 8px; height: 8px; transform: rotate(45deg); border: 1px solid currentColor; }
.rule .dia.fill { background: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; line-height: 1;
  border: 1.5px solid transparent; border-radius: 999px; padding: 16px 30px;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 18px 38px; font-size: 17px; min-height: 56px; }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--saffron); color: #FBF6EC; font-weight: 700; min-height: 52px;
  box-shadow: 0 8px 22px -6px rgba(184,67,27,.55), 0 2px 12px rgba(184,67,27,.3); }
.btn-primary:hover { background: var(--saffron-d); transform: translateY(-1px);
  box-shadow: 0 14px 30px -6px rgba(184,67,27,.62), 0 3px 16px rgba(184,67,27,.34); }
.btn-primary.btn-sm { min-height: 0; }
.btn-gold { font-weight: 700; }
.btn-gold { background: var(--gold); color: var(--on-accent); }
.btn-gold:hover { background: var(--gold-br); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-light { background: rgba(251,246,236,.10); color: #FBF6EC; border-color: rgba(251,246,236,.45); backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(251,246,236,.18); border-color: #FBF6EC; }
.btn-solid-light { background: #FBF6EC; color: #2A2018; }
.btn-solid-light:hover { background: #fff; }

/* ---------- Arched media frame ---------- */
.arch-frame {
  position: relative; overflow: hidden; border-radius: var(--arch);
  box-shadow: var(--shadow-lg);
}
.arch-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  border: 1px solid rgba(201,154,71,.5);
  box-shadow: inset 0 0 0 6px rgba(251,246,236,.10);
}
.frame { position: relative; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow); }
.frame.gold-edge::after, .arch-frame.gold-edge::after { border-color: var(--gold); }

image-slot { display: block; width: 100%; height: 100%; }

/* ---------- Card ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

/* ---------- Badge / chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: var(--gold-wash); color: var(--gold); border: 1px solid var(--line);
}
.chip-saffron { background: var(--saffron-wash); color: var(--saffron); }

/* ---------- Progress ---------- */
.progress { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.progress > i { display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  transition: width 1.6s cubic-bezier(.16,1,.3,1); }

/* ---------- Image drop-zone placeholder caption (shown until filled) ---------- */
.drop-note {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 1;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--muted);
  background: rgba(251,246,236,.82); border: 1px solid var(--line); border-radius: 8px;
  padding: 6px 11px; pointer-events: none; text-align: center; max-width: 80%;
}

/* ---------- Dot pulse ---------- */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }
.dot-live { background: #E5484D; box-shadow: 0 0 0 0 rgba(229,72,77,.55); animation: pulse 2s infinite; }
.dot-on { background: #3FА76A; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(229,72,77,.5);} 70%{box-shadow:0 0 0 7px rgba(229,72,77,0);} 100%{box-shadow:0 0 0 0 rgba(229,72,77,0);} }
@media (prefers-reduced-motion: reduce) { .dot-live { animation: none; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.topbar {
  background: var(--ink); color: var(--bg);
  font-size: 13.5px; letter-spacing: .02em;
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 14px; padding-top: 9px; padding-bottom: 9px; text-align: center; }
.topbar a { color: var(--gold-br); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
[data-palette="cream"] .topbar { color: #EDE2CE; }

.nav { position: sticky; top: 0; z-index: 60; background: var(--bg); border-bottom: 1px solid var(--line); transition: background .5s; }
.nav-inner { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 30px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand .mark { width: auto; height: 44px; flex: none; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: .01em; color: var(--ink); white-space: nowrap; }
.brand-text span { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--saffron); margin-top: 3px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 10px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color .15s; position: relative; }
.nav-links a:hover { color: var(--saffron); }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(var(--drop-cols, 2), minmax(220px, 1fr)); gap: 4px;
  padding: 10px; width: min(var(--drop-width, 540px), calc(100vw - 48px));
  opacity: 0; visibility: hidden; transition: .2s;
}
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%); }
.nav-drop::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-drop a { display: flex; gap: 13px; align-items: center; padding: 12px 13px; border-radius: 11px; transition: background .15s; }
.nav-drop a:hover { background: var(--bg-2); }
.nav-drop .nd-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--saffron-wash); color: var(--saffron); display: flex; align-items: center; justify-content: center; flex: none; }
.nav-drop b { font-family: var(--serif); font-size: 18px; font-weight: 600; display: block; color: var(--ink); }
.nav-drop span { font-size: 13px; color: var(--muted); }
.nav-drop.align-right { left: auto; right: 0; transform: translateY(8px); }
.nav-item:hover .nav-drop.align-right { transform: translateY(0); }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; text-decoration: none; cursor: pointer; }
.live-pill:hover { color: var(--saffron); }
.hamburger { display: none; background: none; border: 0; color: var(--ink); padding: 6px; }

#mobileMenu { display: none; position: fixed; inset: 78px 0 0 0; z-index: 70; background: var(--bg); padding: 28px 32px; overflow-y: auto; }
#mobileMenu.open { display: block; }
#mobileMenu a { display: block; font-family: var(--serif); color: var(--ink); font-size: 24px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); }
#mobileMenu .mm-sub { font-family: var(--sans); font-size: 16px; color: var(--saffron); padding-left: 16px; font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg { background: #221712; }
.hero-bg image-slot { width: 100%; height: 120%; }
/* Rotating hero slideshow (cross-fade) */
.hero-slides { position: absolute; inset: 0; height: 120%; }
/* Blur-fill: whole image visible (contain), no empty bars — a blurred,
   zoomed copy of the same image fills behind it. The .hero-slide-bg layers
   are injected by initHeroSlides() and crossfade in lockstep with slides. */
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: 50% 50%; filter: blur(26px) saturate(1.15); transform: scale(1.12); opacity: 0; transition: opacity 1.4s ease-in-out; will-change: opacity; }
.hero-slide-bg.is-active { opacity: 1; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 1.4s ease-in-out; will-change: opacity; }
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slide, .hero-slide-bg { transition: none; } }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(251,246,236,.45); cursor: pointer; transition: background .25s, transform .25s; }
.hero-dots button.is-active { background: var(--gold-br, #E7B24C); transform: scale(1.25); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--hero-veil); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-inner { min-height: 86vh; max-height: 880px; display: flex; flex-direction: column; justify-content: flex-end; padding: 120px 0 64px; }
.hero h1 { color: #FBF6EC; max-width: 16ch; margin: 18px 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero .lede { color: rgba(251,246,236,.92); max-width: 56ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.darshan-badge { position: absolute; top: 22px; right: 22px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(28,17,12,.55); backdrop-filter: blur(6px); color: #FBF6EC; border: 1px solid rgba(251,246,236,.25);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 9px 14px; border-radius: 999px; }

/* fund progress under hero */
.fund { margin-top: 40px; max-width: 560px; }
.fund-top { display: flex; align-items: baseline; gap: 10px; color: rgba(251,246,236,.85); font-size: 15px; margin-bottom: 12px; flex-wrap: wrap; }
.fund-top .big { font-family: var(--serif); font-size: 34px; font-weight: 600; color: #FBF6EC; line-height: 1; }
.fund-top .big small { font-size: .5em; color: var(--gold-br); }
.fund-meta { display: flex; gap: 26px; margin-top: 14px; font-size: 14px; color: rgba(251,246,236,.8); flex-wrap: wrap; }
.fund-meta b { color: #FBF6EC; }

/* ---------- TOVP-inspired campaign hero ---------- */
.tovp-hero .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(20,12,8,.93) 0%, rgba(20,12,8,.76) 42%, rgba(20,12,8,.44) 100%),
    linear-gradient(180deg, rgba(20,12,8,.32) 0%, rgba(20,12,8,.54) 52%, rgba(20,12,8,.90) 100%);
}
.tovp-hero .hero-inner {
  min-height: calc(100vh - 78px);
  max-height: none;
  justify-content: center;
  padding: 132px 0 82px;
}
.tovp-hero .container { max-width: none; padding: 0 clamp(32px, 5vw, 88px); }
.tovp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  flex: 1 1 auto;
}
.tovp-copy { max-width: none; display: flex; flex-direction: column; justify-content: space-between; }
.hero-campaign {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(215,179,106,.48);
  background: rgba(251,246,236,.10);
  color: var(--gold-br);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tovp-hero h1 {
  max-width: none;
  font-size: clamp(30px, 4.3vw, 54px);
  line-height: 1.02;
  margin: 24px 0 24px;
  text-transform: uppercase;
  text-wrap: balance;
}
.tovp-hero .lede { max-width: 58ch; font-size: clamp(18px, 1.35vw, 22px); }
.tovp-hero .hero-cta { margin-top: 34px; }
.pledge-card {
  position: relative;
  color: #FBF6EC;
  background: linear-gradient(180deg, rgba(42,32,24,.82), rgba(42,32,24,.68));
  border: 1px solid rgba(215,179,106,.46);
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 8px;
}
.pledge-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215,179,106,.28);
  pointer-events: none;
}
.pledge-eyebrow {
  position: relative;
  color: var(--gold-br);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pledge-card h2 {
  position: relative;
  color: #FBF6EC;
  font-size: clamp(30px, 3vw, 42px);
  margin: 14px 0;
  text-transform: uppercase;
}
.pledge-card p {
  position: relative;
  color: rgba(251,246,236,.82);
  font-size: 15px;
  line-height: 1.7;
}
.pledge-card .fund { position: relative; max-width: none; margin-top: 26px; }
.pledge-card .fund-top { display: block; }
.pledge-card .fund-top .big { display: block; margin-bottom: 8px; }
.pledge-card .progress { background: rgba(251,246,236,.18); }
.pledge-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.pledge-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(251,246,236,.22);
  background: rgba(251,246,236,.09);
  color: #FBF6EC;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}
.pledge-actions a:hover { background: var(--saffron); border-color: var(--saffron); }
@media (max-width: 980px) {
  .tovp-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .tovp-hero h1 { max-width: none; }
  .pledge-card { max-width: 620px; }
}
@media (min-width: 981px) {
  html.is-mac .tovp-hero .hero-inner { justify-content: flex-start; padding-top: 90px; }
  html.is-mac .tovp-copy { justify-content: flex-start; }
  html.is-mac .tovp-hero .lede { margin: 14px 0 0; }
}
@media (max-width: 620px) {
  .tovp-hero .hero-inner { padding: 112px 0 70px; }
  .hero-campaign { font-size: 11px; letter-spacing: .12em; }
  .tovp-hero h1 { font-size: 27px; }
  .pledge-card { padding: 24px; }
  .pledge-actions { grid-template-columns: 1fr; }
}

/* ---------- Live ticker ---------- */
.ticker { background: var(--ink); color: var(--bg); border-bottom: 1px solid var(--line-soft); padding: 13px 0; font-size: 14.5px; }
[data-palette="cream"] .ticker { color: #EDE2CE; }
.ticker .container { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ticker b { color: #FBF6EC; }
.ticker .sep { opacity: .4; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 14px 20px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 16%; height: 68%; width: 1px; background: var(--line); }
.stat .v { font-family: var(--serif); font-size: clamp(40px, 5vw, 58px); font-weight: 600; color: var(--ink); line-height: 1; }
.stat .v small { font-size: .5em; color: var(--saffron); }
.stat .k { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; gap: 36px 0; } .stat + .stat:nth-child(odd)::before { display: none; } }

/* ============================================================
   LEGACY split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; aspect-ratio: 4/4.4; }
.split-copy p { color: var(--ink-soft); margin-bottom: 20px; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin: 34px 0; }
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat .fi { width: 44px; height: 44px; border-radius: 11px; background: var(--gold-wash); color: var(--gold); display: flex; align-items: center; justify-content: center; flex: none; border: 1px solid var(--line); }
.feat b { font-family: var(--serif); font-size: 19px; font-weight: 600; display: block; color: var(--ink); }
.feat span { font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 44px; } .split-media { aspect-ratio: 16/11; } .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }

/* Prabhupada quote */
.invocation { text-align: center; max-width: 880px; margin: 0 auto; }
.invocation blockquote { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.4; color: var(--ink); margin: 0; }
.invocation .cite { margin-top: 26px; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--saffron); font-weight: 600; }

/* ============================================================
   SERVICES grid
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { padding: 34px 30px; display: flex; flex-direction: column; }
.svc .svc-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--saffron-wash); color: var(--saffron); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; border: 1px solid var(--line); }
.svc h3 { font-family: var(--serif); font-weight: 700; font-size: 25px; letter-spacing: 0; margin-bottom: 10px; }
.svc p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 22px; }
.svc .svc-foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.svc .svc-num { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.svc .svc-num small { display: block; font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.svc .svc-go { color: var(--saffron); font-weight: 600; font-size: 14.5px; }
@media (max-width: 920px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SEVA cards
   ============================================================ */
.seva-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.seva { overflow: hidden; display: flex; flex-direction: column; padding: 0; }
.seva .seva-img { position: relative; aspect-ratio: 16/10; }
.seva .seva-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.seva h3 { font-family: var(--serif); font-weight: 700; font-size: 25px; letter-spacing: 0; }
.seva .desc { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.seva .seva-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; }
.seva .amt { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); }
.seva .amt small { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 400; }
.seva.hide { display: none; }
@media (max-width: 920px) { .seva-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .seva-grid { grid-template-columns: 1fr; } }

/* tabs */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.tab { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px; transition: .18s; }
.tab:hover { border-color: var(--saffron); color: var(--saffron); }
.tab.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
[data-palette="cream"] .tab.active { color: #F3EADA; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gi { position: relative; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow-sm); }
.gi.tall { grid-row: span 2; }
.gi.wide { grid-column: span 2; }
.gi .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px;
  background: linear-gradient(transparent, rgba(20,12,8,.82)); color: #FBF6EC; font-family: var(--serif); font-size: 17px; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: .25s; pointer-events: none; }
.gi:hover .cap { opacity: 1; transform: none; }
@media (max-width: 920px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 560px) { .gallery { grid-auto-rows: 150px; } }

/* ============================================================
   VIDEO WALL
   ============================================================ */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vid { overflow: hidden; display: block; padding: 0; }
.vid .vthumb { position: relative; aspect-ratio: 16/9; }
.vid .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 62px; height: 62px; border-radius: 50%;
  background: rgba(184,67,27,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,.4); transition: transform .2s; z-index: 2; }
.vid:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.vid .vbadge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.vid .vbody { padding: 20px 22px 22px; }
.vid h4 { font-family: var(--serif); font-size: 23px; font-weight: 700; line-height: 1.2; letter-spacing: 0; }
.vid .views { font-size: 13.5px; color: var(--muted); margin-top: 7px; }
@media (max-width: 920px) { .vid-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vid-grid { grid-template-columns: 1fr; } }
.badge-live { background: #E5484D; color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.test { padding: 36px 34px; display: flex; flex-direction: column; }
.test .qm { font-family: var(--serif); font-size: 72px; line-height: .7; color: var(--gold); height: 38px; }
.test blockquote { font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; color: var(--ink); margin: 0 0 26px; }
.test .by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.test .av { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex: none; position: relative; background: var(--gold-wash); }
.test .by b { font-size: 16px; display: block; color: var(--ink); font-family: var(--sans); font-weight: 600; }
.test .by span { font-size: 13px; color: var(--muted); }
.test .flag { margin-left: auto; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 920px) { .test-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; } }

/* ============================================================
   DONATION WIDGET
   ============================================================ */
.donate-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.donate-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 40px; box-shadow: var(--shadow); }
.amt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.amt-btn { background: var(--bg); border: 1.5px solid var(--line); color: var(--ink); border-radius: 12px; padding: 18px 8px; font-family: var(--serif); font-size: 22px; font-weight: 600; transition: .15s; }
.amt-btn:hover { border-color: var(--gold); }
.amt-btn.active { background: var(--saffron); color: #FBF6EC; border-color: var(--saffron); }
.freq-toggle { display: inline-flex; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 22px; }
.freq-toggle button { background: none; border: 0; padding: 9px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); }
.freq-toggle button.active { background: var(--ink); color: var(--bg); }
[data-palette="cream"] .freq-toggle button.active { color: #F3EADA; }
.field { width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 15px 16px; transition: .15s; }
.field:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-wash); }
.field::placeholder { color: var(--muted); }
.donate-total { display: flex; align-items: baseline; justify-content: space-between; margin: 6px 0 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.donate-total .lbl { font-size: 14px; color: var(--muted); letter-spacing: .04em; }
.donate-total .val { font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--ink); }
.donate-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; font-size: 13px; color: var(--muted); }
.donate-trust span { display: inline-flex; align-items: center; gap: 7px; }
.donate-success { text-align: center; padding: 30px 10px; }
.donate-success .ok { width: 70px; height: 70px; border-radius: 50%; background: var(--saffron-wash); color: var(--saffron); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
@media (max-width: 900px) { .donate-wrap { grid-template-columns: 1fr; gap: 40px; } .donate-panel { padding: 30px; } }
@media (max-width: 480px) { .amt-grid { grid-template-columns: 1fr 1fr; } .amt-btn { font-size: 19px; padding: 16px 6px; } .donate-panel { padding: 22px; } }

/* ============================================================
   DONOR WALL
   ============================================================ */
.donor-wall { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.donor-pill { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-size: 15px; box-shadow: var(--shadow-sm); }
.donor-pill b { font-family: var(--serif); font-weight: 600; font-size: 17px; }
.donor-pill .amt { color: var(--saffron); font-family: var(--mono); font-size: 14px; margin-left: 6px; }
.donor-pill.more { background: var(--ink); color: var(--bg); border-color: var(--ink); font-weight: 600; }
[data-palette="cream"] .donor-pill.more { color: #F3EADA; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-ic { width: 52px; height: 52px; border-radius: 13px; background: var(--gold-wash); color: var(--gold); display: flex; align-items: center; justify-content: center; flex: none; border: 1px solid var(--line); }
.trust-item .t-k { font-size: 13px; color: var(--muted); }
.trust-item .t-v { font-weight: 600; font-size: 15.5px; color: var(--ink); }
@media (max-width: 760px) { .trust { grid-template-columns: 1fr 1fr; gap: 26px; } }

/* ============================================================
   EVENTS / COMMUNITY
   ============================================================ */
.ce-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 34px; box-shadow: var(--shadow-sm); }
.panel h3 { margin-bottom: 22px; }
.event { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.event:last-child { border-bottom: 0; }
.date-tile { width: 64px; height: 64px; border-radius: 12px; background: var(--saffron-wash); color: var(--saffron); flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; border: 1px solid var(--line); }
.date-tile .d { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.date-tile .m { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }
.event .ev-name { font-family: var(--serif); font-weight: 600; font-size: 19px; }
.event .ev-sub { font-size: 14px; color: var(--muted); }
.event .ev-go { margin-left: auto; color: var(--saffron); font-weight: 600; font-size: 14px; }
.hub-item { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.hub-item:last-child { border-bottom: 0; }
.hub-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; color: #fff; }
.hub-item .h-name { font-weight: 600; font-size: 16px; color: var(--ink); }
.hub-item .h-sub { font-size: 13.5px; color: var(--muted); }
.hub-item .h-go { margin-left: auto; color: var(--saffron); font-weight: 600; font-size: 14px; }
@media (max-width: 900px) { .ce-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; overflow: hidden; background: #1F140F; }
.final-cta .fc-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta .fc-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(24,14,9,.48) 0%, rgba(24,14,9,.72) 42%, rgba(24,14,9,.92) 100%),
    linear-gradient(180deg, rgba(24,14,9,.82), rgba(24,14,9,.94));
}
.final-cta .container { position: relative; z-index: 2; text-align: center; padding: 130px 0; }
.final-cta .kicker { color: #E6CB8B; text-shadow: 0 2px 16px rgba(0,0,0,.65); }
.final-cta h2 {
  color: #FFF9EF;
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px auto 22px;
  max-width: 18ch;
  text-shadow: 0 3px 28px rgba(0,0,0,.85), 0 1px 2px rgba(0,0,0,.72);
}
.final-cta p {
  color: rgba(255,249,239,.96);
  font-size: 20px;
  max-width: 56ch;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,.72);
}
.final-cta .fc-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.final-cta .btn-light {
  background: rgba(31,20,15,.44);
  border-color: rgba(255,249,239,.72);
  color: #FFF9EF;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.final-cta .btn-light:hover { background: rgba(31,20,15,.62); border-color: #FFF9EF; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--bg); padding: 80px 0 32px; }
[data-palette="cream"] .footer { color: #D8CDB7; }
.footer .brand-text b { color: #FBF6EC; }
.footer .brand .mark { filter: brightness(0) invert(1); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.footer p.f-about { font-size: 15px; line-height: 1.7; max-width: 320px; margin-top: 20px; color: rgba(251,246,236,.6); }
[data-palette="cream"] .footer p.f-about { color: #B6A88F; }
.footer h4 { font-family: var(--sans); color: #FBF6EC; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer ul a { color: rgba(251,246,236,.62); font-size: 15px; transition: color .15s; }
[data-palette="cream"] .footer ul a { color: #B6A88F; }
.footer ul a:hover { color: var(--gold-br); }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(251,246,236,.14); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: rgba(251,246,236,.5); }
.social { display: flex; gap: 12px; }
.social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(251,246,236,.22); display: flex; align-items: center; justify-content: center; color: rgba(251,246,236,.8); transition: .15s; }
.social a:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.fab-stack { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: flex; flex-direction: column; gap: 13px; align-items: flex-end; }
.fab { position: relative; display: flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; color: #fff; transition: transform .15s; }
.fab:hover { transform: translateY(-3px); }
.fab-round { width: 54px; height: 54px; }
.fab-wa { background: #25D366; box-shadow: 0 10px 26px rgba(37,211,102,.4); }
.fab-call { background: var(--ink); box-shadow: var(--shadow); }
.fab-donate { width: 60px; height: 60px; background: var(--saffron); box-shadow: 0 12px 30px rgba(184,67,27,.45); flex-direction: column; gap: 2px; }
.fab-donate .fab-lbl { font-size: 8.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.fab .fab-tip { position: absolute; right: calc(100% + 14px); white-space: nowrap; background: var(--ink); color: #FBF6EC; font-size: 13px; font-weight: 500; padding: 9px 14px; border-radius: 10px; box-shadow: var(--shadow); opacity: 0; transform: translateX(8px); pointer-events: none; transition: .2s; }
.fab:hover .fab-tip { opacity: 1; transform: translateX(0); }
@media (max-width: 560px) { .fab-stack { right: 16px; bottom: 16px; } }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown { display: flex; gap: 14px; }
.cd-unit { text-align: center; min-width: 78px; background: rgba(251,246,236,.08); border: 1px solid rgba(251,246,236,.2); border-radius: 14px; padding: 16px 10px; backdrop-filter: blur(6px); }
.cd-unit .n { font-family: var(--serif); font-size: 42px; font-weight: 600; color: #FBF6EC; line-height: 1; }
.cd-unit .l { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-br); margin-top: 8px; }
.cd-light .cd-unit { background: var(--surface); border-color: var(--line); }
.cd-light .cd-unit .n { color: var(--ink); }
.cd-light .cd-unit .l { color: var(--saffron); }
@media (max-width: 560px) { .cd-unit { min-width: 0; flex: 1; padding: 14px 6px; } .cd-unit .n { font-size: 32px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--saffron); transition: transform .25s; }
.faq[open] summary .ic { transform: rotate(45deg); }
.faq .faq-body { padding: 0 4px 26px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; max-width: 70ch; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Tweaks panel ---------- */
#tweaks { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 320px; background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px; display: none; font-family: var(--sans); }
#tweaks.open { display: block; }
#tweaks .tw-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
#tweaks .tw-head b { font-family: var(--serif); font-size: 22px; font-weight: 600; }
#tweaks .tw-close { background: none; border: 0; color: var(--muted); font-size: 22px; line-height: 1; }
#tweaks .tw-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
#tweaks .pal-opts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
#tweaks .pal { border: 1.5px solid var(--line); border-radius: 12px; padding: 10px 8px 9px; background: var(--bg); text-align: center; transition: .15s; }
#tweaks .pal.active { border-color: var(--saffron); }
#tweaks .pal .sw { height: 30px; border-radius: 8px; margin-bottom: 7px; display: flex; overflow: hidden; }
#tweaks .pal .sw i { flex: 1; }
#tweaks .pal .nm { font-size: 12px; font-weight: 600; color: var(--ink); }

/* ============================================================
   INNER PAGE HERO (shorter than home)
   ============================================================ */
.page-hero .hero-inner { min-height: 64vh; max-height: 720px; }
.page-hero.tall .hero-inner { min-height: 78vh; }

/* ============================================================
   CONSTRUCTION TIMELINE
   ============================================================ */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 38px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 42px 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg); border: 2px solid var(--line); }
.tl-item.done::before { background: var(--saffron); border-color: var(--saffron); }
.tl-item.active::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px var(--gold-wash); }
.tl-date { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--saffron); text-transform: uppercase; }
.tl-item h4 { font-family: var(--serif); font-size: 24px; font-weight: 700; margin: 4px 0 6px; }
.tl-item p { color: var(--ink-soft); font-size: 16px; }
.tl-tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   NAMING RIGHTS / TIERS
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier { padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
.tier.feature { border: 2px solid var(--gold); }
.tier .tier-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--on-accent); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.tier h3 { font-family: var(--serif); font-size: 27px; font-weight: 700; }
.tier .tier-price { font-family: var(--mono); font-size: 30px; color: var(--saffron); margin: 12px 0; }
.tier .tier-price small { font-family: var(--sans); font-size: 14px; color: var(--muted); }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
.tier ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.tier ul li svg { flex: none; margin-top: 3px; color: var(--saffron); }
.tier .btn { margin-top: auto; }
@media (max-width: 920px){ .tier-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   DONATION METHODS
   ============================================================ */
.methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.method { padding: 28px 24px; text-align: center; }
.method .m-logo { height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--ink); }
.method h4 { font-family: var(--sans); font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.method p { font-size: 14px; color: var(--muted); }
@media (max-width: 820px){ .methods { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   FCRA / NOTICE BOX
   ============================================================ */
.notice { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--saffron); border-radius: 16px; padding: 32px 36px; }
.notice .n-ic { width: 54px; height: 54px; border-radius: 13px; background: var(--saffron-wash); color: var(--saffron); display: flex; align-items: center; justify-content: center; }
.notice h3 { font-family: var(--serif); font-size: 25px; font-weight: 700; margin-bottom: 6px; }
.notice p { color: var(--ink-soft); font-size: 16px; }
@media (max-width: 560px){ .notice { grid-template-columns: 1fr; text-align: left; } }

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.partner { aspect-ratio: 3/1.6; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.partner image-slot { width: 70%; height: 60%; }
@media (max-width: 820px){ .partners { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px){ .partners { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   DOWNLOAD CENTER
   ============================================================ */
.downloads { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dl-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; transition: .18s; }
.dl-item:hover { border-color: var(--saffron); transform: translateY(-2px); box-shadow: var(--shadow); }
.dl-item .dl-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--gold-wash); color: var(--gold); display: flex; align-items: center; justify-content: center; flex: none; }
.dl-item .dl-name { font-weight: 600; font-size: 16px; color: var(--ink); }
.dl-item .dl-meta { font-size: 13px; color: var(--muted); font-family: var(--mono); }
.dl-item .dl-go { margin-left: auto; color: var(--saffron); }
@media (max-width: 680px){ .downloads { grid-template-columns: 1fr; } }

/* ============================================================
   FORM
   ============================================================ */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 44px; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
textarea.field { resize: vertical; min-height: 120px; font-family: var(--sans); }
select.field { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238C7B63' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
@media (max-width: 560px){ .form-card { padding: 28px; } .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GLOBAL REACH / MAP STAT BAND
   ============================================================ */
.reach { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px){ .reach { grid-template-columns: 1fr; gap: 40px; } }

/* two-column prose */
.prose-2 { columns: 2; column-gap: 48px; }
.prose-2 p { margin-bottom: 18px; break-inside: avoid; }
@media (max-width: 720px){ .prose-2 { columns: 1; } }

/* ============================================================
   FESTIVAL TEMPLATE
   ============================================================ */
.fest-hero { min-height: 100vh; }
.fest-hero .hero-inner { min-height: calc(100vh - 78px); max-height: none; justify-content: center; padding: 80px 0; }
.fest-name { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); color: var(--gold-br); letter-spacing: .02em; }
.fest-date { display: inline-flex; align-items: center; gap: 10px; color: rgba(251,246,236,.9); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; margin-top: 10px; }
.fest-stats { display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.fest-stat .v { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 44px); font-weight: 700; color: #FBF6EC; line-height: 1; }
.fest-stat .k { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,246,236,.7); margin-top: 8px; }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px){ .why-grid { grid-template-columns: 1fr; gap: 44px; } }
.sponsor { background: var(--saffron); color: #FBF6EC; }
.sponsor .seva-body h3, .sponsor .amt { color: #FBF6EC; }
.sponsor .desc { color: rgba(251,246,236,.88); }
.sponsor .amt small { color: rgba(251,246,236,.75); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
}

/* ============================================================
   SERVICES — vertical storytelling (replaces SaaS card grid)
   ============================================================ */
.svc-story { margin-top: 12px; }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid var(--line); }
.svc-row:first-of-type { border-top: 0; padding-top: 4px; }
.svc-row-media { position: relative; aspect-ratio: 16/11; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.svc-row-media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(201,154,71,.45); pointer-events: none; }
.svc-row.alt .svc-row-media { order: -1; }
.svc-row .idx { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 13px; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.svc-row .idx::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.svc-row .story-h { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.08; margin-bottom: 16px; color: var(--ink); }
.svc-row p { color: var(--ink-soft); margin-bottom: 24px; }
.svc-row .story-foot { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.svc-row .story-stat { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; }
.svc-row .story-stat small { display: block; font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: .08em; font-weight: 600; text-transform: uppercase; margin-top: 5px; }
.svc-row .story-link { color: var(--saffron); font-weight: 700; font-size: 15px; }
@media (max-width: 900px) { .svc-row { grid-template-columns: 1fr; gap: 26px; padding: 44px 0; } .svc-row.alt .svc-row-media { order: 0; } }

/* ============================================================
   EKADASHI offerings
   ============================================================ */
.eka-offerings { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 16px; }
.eka { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 18px; text-align: center; transition: .2s; }
.eka:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.eka .e-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-wash); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 1px solid var(--line); }
.eka h4 { font-family: var(--serif); font-weight: 700; font-size: 18px; margin-bottom: 7px; color: var(--ink); }
.eka p { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 820px) { .eka-offerings { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MONTHLY SEVA CLUB
   ============================================================ */
.club-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.club-benefits { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.club-benefits li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; color: var(--ink-soft); }
.club-benefits li svg { flex: none; margin-top: 3px; color: var(--saffron); }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plan { background: var(--surface); border: 1.5px solid var(--line); border-radius: 16px; padding: 26px 24px; text-align: left; transition: .18s; cursor: pointer; position: relative; }
.plan:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.plan.feature { border-color: var(--saffron); }
.plan.feature::after { content: "Most chosen"; position: absolute; top: -11px; left: 22px; background: var(--saffron); color: #FBF6EC; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.plan .p-amt { font-family: var(--serif); font-weight: 700; font-size: 36px; color: var(--ink); line-height: 1; }
.plan .p-amt small { font-family: var(--sans); font-size: 14px; color: var(--muted); font-weight: 400; }
.plan .p-note { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
@media (max-width: 900px) { .club-wrap { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 480px) { .plan-grid { grid-template-columns: 1fr; } }

/* ============================================================
   KBCC PROGRESS CENTER
   ============================================================ */
.pc-top { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; margin-bottom: 60px; }
.pc-figure { position: relative; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.pc-figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(201,154,71,.45); border-radius: inherit; pointer-events: none; }
.pc-figure .pc-badge { position: absolute; left: 18px; bottom: 18px; z-index: 2; background: rgba(28,17,12,.62); backdrop-filter: blur(6px); color: #FBF6EC; border: 1px solid rgba(251,246,236,.25); border-radius: 12px; padding: 11px 15px; font-size: 13px; line-height: 1.5; max-width: 78%; }
.pc-badge b { font-family: var(--mono); color: var(--gold-br); display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.pc-pct { display: flex; align-items: baseline; gap: 14px; }
.pc-pct .big { font-family: var(--serif); font-weight: 700; font-size: clamp(58px, 8vw, 104px); line-height: .85; color: var(--ink); }
.pc-pct .big small { font-size: .38em; color: var(--saffron); }
.pc-pct .pc-stage-name { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold); }
.pc-sub { color: var(--ink-soft); margin: 18px 0 24px; max-width: 50ch; }
.pc-progress { height: 10px; border-radius: 999px; background: var(--line); overflow: hidden; margin-bottom: 14px; }
.pc-progress > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--saffron)); border-radius: 999px; transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.pc-funds { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.pc-funds b { color: var(--ink); font-family: var(--mono); }
.ms-rail { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; margin-top: 6px; }
.ms-rail::before { content: ""; position: absolute; left: 7%; right: 7%; top: 9px; height: 2px; background: var(--line); }
.ms-rail .ms-fill { position: absolute; left: 7%; top: 9px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--saffron)); transition: width 1.6s cubic-bezier(.16,1,.3,1); z-index: 1; }
.ms { position: relative; padding: 28px 6px 0; text-align: center; cursor: pointer; background: none; border: 0; }
.ms .node { position: absolute; top: 1px; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 2px solid var(--line); transition: .2s; z-index: 2; }
.ms.done .node { background: var(--saffron); border-color: var(--saffron); }
.ms.active .node { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px var(--gold-wash); }
.ms .ms-label { font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--ink); transition: color .15s; }
.ms .ms-year { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: .04em; margin-top: 3px; }
.ms.sel .ms-label { color: var(--saffron); }
.band [data-palette] { }
@media (max-width: 820px) {
  .pc-top { grid-template-columns: 1fr; gap: 32px; }
  .ms-rail { grid-auto-flow: row; grid-auto-columns: auto; }
  .ms-rail::before, .ms-rail .ms-fill { display: none; }
  .ms { display: flex; align-items: center; gap: 16px; text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .ms .node { position: static; transform: none; }
}

/* ============================================================
   VIRTUAL VRINDAVAN
   ============================================================ */
.vr-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 270px; gap: 18px; }
.vr-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; align-items: flex-end; grid-column: span 2; }
.vr-card.wide { grid-column: span 3; }
.vr-card image-slot { position: absolute; inset: 0; }
.vr-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,12,8,.06) 30%, rgba(20,12,8,.82)); pointer-events: none; }
.vr-card .vr-body { position: relative; z-index: 2; padding: 24px; color: #FBF6EC; }
.vr-card .vr-kind { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-br); }
.vr-card h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; color: #FBF6EC; margin-top: 7px; }
.vr-card p { font-size: 14px; color: rgba(251,246,236,.82); margin-top: 6px; max-width: 34ch; }
.vr-card .vr-play { position: absolute; top: 18px; right: 18px; z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: rgba(251,246,236,.16); backdrop-filter: blur(4px); border: 1px solid rgba(251,246,236,.4); display: flex; align-items: center; justify-content: center; transition: .2s; }
.vr-card:hover .vr-play { background: var(--saffron); border-color: var(--saffron); }
@media (max-width: 820px) { .vr-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; } .vr-card, .vr-card.wide { grid-column: auto; } }

/* ============================================================
   MEDIA CENTER
   ============================================================ */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.media { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); display: block; background: var(--surface); border: 1px solid var(--line); transition: .25s; }
.media:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.media .m-thumb { position: relative; aspect-ratio: 4/2.6; }
.media .m-tag { position: absolute; top: 12px; left: 12px; z-index: 2; }
.media .m-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(184,67,27,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.4); z-index: 2; }
.media .m-body { padding: 17px 19px 19px; }
.media h4 { font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.2; color: var(--ink); }
.media .m-meta { font-size: 13px; color: var(--muted); margin-top: 6px; font-family: var(--mono); }
.media.hide { display: none; }
@media (max-width: 900px) { .media-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .media-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TEMPLE LEGACY — 50 years horizontal timeline
   ============================================================ */
.legacy-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(228px, 1fr); gap: 22px; overflow-x: auto; padding: 6px 2px 18px; scroll-snap-type: x proximity; }
.ly { scroll-snap-align: start; }
.ly .ly-year { font-family: var(--serif); font-weight: 700; font-size: 36px; color: var(--saffron); line-height: 1; }
.ly .ly-line { height: 2px; background: var(--line); margin: 16px 0 18px; position: relative; }
.ly .ly-line::before { content: ""; position: absolute; left: 0; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.ly h4 { font-family: var(--serif); font-weight: 700; font-size: 20px; margin-bottom: 8px; color: var(--ink); }
.ly p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   MOBILE-FIRST PASS — sticky bottom donate bar, swipe, tap targets
   ============================================================ */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 44px 0; }
  .fab-stack { display: none; }
  body { padding-bottom: 74px; }
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    align-items: center; gap: 10px;
    background: var(--surface); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(0,0,0,.16);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  }
  .mobile-bar .mb-icon { width: 50px; height: 50px; border-radius: 14px; flex: none; display: flex; align-items: center; justify-content: center; color: #fff; }
  .mobile-bar .mb-wa { background: #25D366; }
  .mobile-bar .mb-call { background: var(--ink); }
  .mobile-bar .mb-donate { flex: 1; min-height: 50px; font-size: 16px; }
  /* swipeable galleries / rails */
  .gallery { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; grid-auto-rows: auto; gap: 12px; padding-bottom: 8px; }
  .gallery .gi, .gallery .gi.tall, .gallery .gi.wide { grid-row: auto; grid-column: auto; flex: 0 0 80%; height: 240px; scroll-snap-align: center; }
  .gallery .gi .cap { opacity: 1; transform: none; }
  .donor-wall { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
  .donor-wall .donor-pill { flex: 0 0 auto; scroll-snap-align: start; }
  .test-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 16px; padding-bottom: 8px; }
  .test-grid .test { flex: 0 0 86%; scroll-snap-align: center; }
  /* horizontal-scroll seva filter, larger tap targets */
  .tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; padding-bottom: 6px; margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
  .tab { flex: 0 0 auto; padding: 12px 20px; min-height: 44px; }
  .container { padding: 0 18px; }
}

/* ============================================================
   FLOATING DONATE BAR ICON (mobile)
   ============================================================ */
.mobile-bar svg { width: 24px; height: 24px; }

/* ============================================================
   ABOUT — Message from HOD (premium feature block)
   ============================================================ */
.hod-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.hod-portrait { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hod-portrait::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(201,154,71,.5); box-shadow: inset 0 0 0 6px rgba(251,246,236,.10); pointer-events: none; }
.hod-quote { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(21px, 2.2vw, 28px); line-height: 1.5; color: var(--ink); }
.hod-quote::before { content: "\201C"; display: block; font-family: var(--serif); font-size: 90px; line-height: .6; height: 44px; color: var(--gold); }
.hod-quote p { margin-bottom: 20px; }
.hod-quote p:last-child { margin-bottom: 0; }
.hod-sign { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.hod-sign .nm { font-family: var(--serif); font-weight: 700; font-size: 25px; color: var(--ink); }
.hod-sign .ti { font-size: 13.5px; letter-spacing: .04em; color: var(--saffron); font-weight: 600; margin-top: 5px; }
@media (max-width: 900px) { .hod-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ABOUT — 6-up impact metrics (no dividers) */
.stats.six { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
.stats.six .stat::before { display: none; }
@media (max-width: 760px) { .stats.six { grid-template-columns: 1fr 1fr; } }

/* ABOUT — global community map + country chips */
.community-reach { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.community-map { position: relative; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.community-map::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid var(--line); pointer-events: none; }
.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.country-chips span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; box-shadow: var(--shadow-sm); }
@media (max-width: 900px) { .community-reach { grid-template-columns: 1fr; gap: 32px; } }

/* ABOUT — transparency & trust (5-up) */
.trust.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .trust.cols-5 { grid-template-columns: 1fr 1fr; } }

/* ABOUT — plan a visit / contact */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.visit-card { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; box-shadow: var(--shadow-sm); }
.visit-card .v-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--saffron-wash); color: var(--saffron); display: flex; align-items: center; justify-content: center; flex: none; border: 1px solid var(--line); }
.visit-card h3 { font-size: 21px; margin-bottom: 6px; }
.visit-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 720px) { .visit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   KBCC V2 — interactive construction timeline
   ============================================================ */
.ktl-rail { display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 16px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.ktl-node { flex: 0 0 auto; scroll-snap-align: start; min-width: 156px; text-align: left; background: var(--surface); border: 1.5px solid var(--line); border-radius: 14px; padding: 18px 20px; cursor: pointer; transition: .18s; }
.ktl-node:hover { border-color: var(--gold); transform: translateY(-3px); }
.ktl-node.active { border-color: var(--saffron); background: var(--saffron-wash); }
.ktl-node .yr { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--ink); line-height: 1; }
.ktl-node.active .yr { color: var(--saffron); }
.ktl-node .ph { font-size: 13px; color: var(--muted); margin-top: 6px; }
.ktl-node .pc { margin-top: 12px; font-family: var(--mono); font-size: 12px; color: var(--saffron); letter-spacing: .02em; }
.ktl-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
.ktl-figure { position: relative; aspect-ratio: 16/11; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.ktl-figure image-slot { position: absolute; inset: 0; }
.ktl-figure image-slot[hidden] { display: none; }
.ktl-figure .tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.ktl-figure .ktl-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(184,67,27,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.4); z-index: 2; }
.ktl-body h3 { font-size: 30px; margin-bottom: 6px; }
.ktl-body .ktl-up { color: var(--ink-soft); margin-bottom: 8px; }
.ktl-story { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-soft); border-left: 3px solid var(--gold); padding-left: 16px; margin: 16px 0; }
.ktl-progress { height: 9px; border-radius: 999px; background: var(--line); overflow: hidden; margin: 18px 0 8px; }
.ktl-progress > i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--saffron)); border-radius: 999px; transition: width 1s cubic-bezier(.16,1,.3,1); }
.ktl-milestone { display: flex; align-items: baseline; justify-content: space-between; font-size: 14px; color: var(--muted); flex-wrap: wrap; gap: 6px; }
.ktl-milestone b { color: var(--ink); font-family: var(--mono); }
@media (max-width: 820px) { .ktl-panel { grid-template-columns: 1fr; gap: 24px; padding: 18px; } .ktl-body h3 { font-size: 25px; } }

/* KBCC V2 — digital donor wall */
.dw-controls { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.dw-search { position: relative; flex: 1; min-width: 220px; max-width: 320px; }
.dw-search input { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px; padding: 12px 16px 12px 42px; }
.dw-search input:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-wash); }
.dw-search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.dw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dw-row { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.dw-row .av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-wash); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 17px; flex: none; }
.dw-row .nm { font-weight: 600; font-size: 15px; color: var(--ink); }
.dw-row .meta { font-size: 12.5px; color: var(--muted); font-family: var(--mono); margin-top: 2px; }
.dw-row .amt { margin-left: auto; font-family: var(--mono); font-size: 13.5px; color: var(--saffron); }
.dw-row.hide { display: none; }
.dw-empty { text-align: center; color: var(--muted); padding: 30px; display: none; }
@media (max-width: 860px) { .dw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dw-grid { grid-template-columns: 1fr; } }

/* KBCC V2 — expandable "why I support" stories */
.story-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-x { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s; }
.story-x[open] { border-color: var(--gold); }
.story-x summary { list-style: none; cursor: pointer; padding: 28px 28px; display: block; }
.story-x summary::-webkit-details-marker { display: none; }
.story-x .sx-qm { font-family: var(--serif); font-size: 60px; line-height: .5; color: var(--gold); height: 30px; }
.story-x h3 { font-size: 23px; margin: 14px 0 10px; }
.story-x .sx-pre { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.story-x .sx-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--saffron); font-weight: 700; font-size: 14px; }
.story-x[open] .sx-more { display: none; }
.story-x .sx-full { padding: 0 28px 28px; }
.story-x .sx-full blockquote { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink); margin: 0 0 20px; }
.story-x .by { display: flex; align-items: center; gap: 14px; }
.story-x .by .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; background: var(--gold-wash); position: relative; }
.story-x .by b { font-size: 15px; display: block; color: var(--ink); }
.story-x .by span { font-size: 13px; color: var(--muted); }
.story-x .by .flag { margin-left: auto; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 920px) { .story-cards { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; } }

/* KBCC V2 — interactive masterplan */
.mp-wrap { display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; }
.mp-figure { position: relative; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.mp-figure::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(201,154,71,.45); pointer-events: none; }
.mp-figure .mp-pin { position: absolute; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: rgba(184,67,27,.92); color: #fff; border: 2px solid #FBF6EC; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; cursor: pointer; transform: translate(-50%,-50%); transition: .15s; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
.mp-figure .mp-pin:hover, .mp-figure .mp-pin.active { background: var(--gold); transform: translate(-50%,-50%) scale(1.18); }
.mp-areas { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.mp-area { font-size: 14px; font-weight: 600; color: var(--ink-soft); background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: .15s; }
.mp-area:hover { border-color: var(--gold); }
.mp-area.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
[data-palette="cream"] .mp-area.active { color: #F3EADA; }
.mp-detail h3 { font-size: 26px; margin-bottom: 8px; }
.mp-detail p { color: var(--ink-soft); }
@media (max-width: 860px) { .mp-wrap { grid-template-columns: 1fr; gap: 30px; } }

/* KBCC V2 — A Day in Vrindavan rail */
.day-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 18px; overflow-x: auto; padding: 6px 2px 18px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.day-card { scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.day-card .dc-img { position: relative; aspect-ratio: 16/10; }
.day-card .dc-time { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(28,17,12,.6); backdrop-filter: blur(5px); color: #FBF6EC; font-family: var(--mono); font-size: 12px; padding: 6px 11px; border-radius: 999px; }
.day-card .dc-body { padding: 18px 20px 20px; }
.day-card h3 { font-size: 21px; margin-bottom: 6px; }
.day-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
