@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Tiro+Devanagari+Marathi&family=Mukta:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
/* =========================================================================
   KHETWADICHA RAJA — Design System  ·  "Saffron Sunrise"
   Khetwadicha Raja Sarvajanik Shree Ganeshotsav Mandal · Khambata Lane,
   Khetwadi, Girgaon, Mumbai.

   An original, bright, festive design built around the mandal LOGO's signature
   red → orange → gold gradient, used as a recurring motif across the whole
   site (hero sunburst, gradient headings, gradient buttons, gradient borders,
   icon chips, wave dividers). Warm, devotional and modern. Rounded Baloo 2
   display type. Plain CSS, no build step. Mobile-first.
   ========================================================================= */

:root {
  /* ---- Logo gradient stops (the heart of the palette) ---- */
  --red:        #d4202a;
  --crimson:    #a8121b;
  --maroon:     #7a0d12;   /* deep heading / footer */
  --orange:     #f26a1b;
  --saffron:    #ff8a1f;
  --gold:       #f6b201;
  --gold-2:     #ffc94d;
  --gold-soft:  #ffe1a3;

  /* the signature brand gradient — reuse everywhere */
  --grad: linear-gradient(100deg, #d4202a 0%, #f26a1b 48%, #f6b201 100%);
  --grad-soft: linear-gradient(120deg, #fff1e3, #ffe6d0);

  /* ---- Surfaces ---- */
  --cream:    #fff9f3;     /* page background */
  --peach:    #fff2e6;     /* alt section */
  --peach-2:  #ffe7d4;     /* chips / tints */
  --white:    #ffffff;

  /* ---- Text ---- */
  --ink:      #3c1d12;     /* warm dark brown body */
  --ink-soft: #835f4d;     /* muted */
  --ink-dim:  #a98a78;

  --line:     #f6dcc4;     /* soft warm border */
  --ok:       #2e8b57;
  --danger:   #d13b2e;

  --shadow:    0 10px 30px rgba(168,18,27,.10);
  --shadow-lg: 0 26px 60px rgba(168,18,27,.18);
  --shadow-warm: 0 18px 44px rgba(242,106,27,.22);

  /* ---- Type ---- */
  --font-display: "Playfair Display", "Tiro Devanagari Marathi", Georgia, serif;  /* elegant serif headings (Latin) + traditional Devanagari */
  --font-body:    "Poppins", "Mukta", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-deva:    "Tiro Devanagari Marathi", "Playfair Display", Georgia, serif;   /* traditional Devanagari display */

  --maxw: 1200px;
  --r: 22px;       /* soft, friendly radius */
  --r-sm: 14px;
  --bar-h: 38px;   /* top utility bar */
  --nav-h: 78px;   /* nav row height */
  --head-h: calc(var(--bar-h) + var(--nav-h));  /* full fixed-header height for offsets */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--head-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--crimson); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }
ul, ol { padding-left: 1.2rem; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; color: var(--maroon); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; }
h3 { font-size: 1.32rem; font-weight: 600; }
p { color: var(--ink-soft); }
strong, b { color: var(--ink); font-weight: 600; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--saffron); color: #fff; }
section { scroll-margin-top: var(--head-h); }

/* ---------- A11y ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--maroon); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.4rem; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; position: relative; }
.section--alt { background: var(--peach); }
.section--grad { background: var(--grad); color: #fff; }
.section--grad h1, .section--grad h2, .section--grad h3 { color: #fff; }
.section--grad p { color: #fff4ea; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.center { text-align: center; }
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.7rem} .mt-4{margin-top:2.6rem}

/* gradient text — for accent words */
.gradtext { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---------- Section heading ---------- */
.head { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; }
.head .kicker {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; font-size: .76rem; color: var(--orange);
  background: var(--peach-2); padding: .4rem 1rem; border-radius: 999px;
}
.head h2 { margin-top: 1rem; }
.head p { margin-top: .8rem; font-size: 1.05rem; }
.head.left { margin-inline: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .92rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .25s, filter .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: var(--shadow-warm); }
.btn-grad:hover { color: #fff; filter: brightness(1.06); box-shadow: 0 22px 50px rgba(242,106,27,.34); }
.btn-solid { background: var(--maroon); color: #fff; }
.btn-solid:hover { color: #fff; background: var(--crimson); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--crimson); }
.btn-outline:hover { background: var(--peach-2); color: var(--maroon); }
.btn-white { background: #fff; color: var(--crimson); box-shadow: var(--shadow); }
.btn-white:hover { color: var(--maroon); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: .6rem 1.15rem; font-size: .86rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---------- Tags / badges ---------- */
.badge { display: inline-flex; align-items: center; gap: .4rem; padding: .32rem .8rem; border-radius: 999px; font-size: .73rem; font-weight: 600; background: var(--peach-2); color: var(--crimson); }
.badge-grad { background: var(--grad); color: #fff; }
.badge-live { background: var(--red); color: #fff; }
.badge-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.3s infinite; }
.badge-ok { background: #e3f5ea; color: var(--ok); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); padding: .32rem .85rem; border-radius: 999px; font-size: .82rem; font-weight: 500; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .5rem; }
.card .ic {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem;
  background: var(--grad); color: #fff; margin-bottom: 1.1rem; box-shadow: var(--shadow-warm);
}
.card--soft { background: var(--grad-soft); border-color: transparent; }
.card-link { color: inherit; display: block; }
.card-link:hover { color: inherit; }
/* gradient top accent variant */
.card--top::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad); }

/* ---------- Wave dividers (signature) ---------- */
.wave { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.wave svg { width: 100%; height: 100%; display: block; }

/* ===================================================================
   HEADER — clean, translucent, solid on scroll
   =================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: box-shadow .3s; }
.site-header .nav-wrap { background: var(--cream); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(168,18,27,.12); }

/* top utility bar — chant + follow us */
.topbar { background: linear-gradient(90deg, var(--maroon), var(--crimson)); color: #ffe1c4; height: var(--bar-h); font-size: .82rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.topbar__chant { font-family: var(--font-deva); font-weight: 600; color: var(--gold-2); letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__social { display: flex; align-items: center; gap: .55rem; white-space: nowrap; }
.topbar__social .lbl { color: #ffd9bd; font-size: .78rem; }
.topbar__social a { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); color: var(--gold-2); font-weight: 700; font-size: .82rem; transition: .2s; }
.topbar__social a:hover { background: var(--gold); color: var(--maroon); }
.topbar__social a svg { width: 15px; height: 15px; }
@media (max-width: 560px){ .topbar__social .lbl { display: none; } .topbar { font-size: .76rem; } }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 58px; width: auto; filter: drop-shadow(0 4px 8px rgba(168,18,27,.18)); }
.brand-word { display: grid; line-height: 1.04; }
.brand-word b { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--maroon); }
.brand-word span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); font-weight: 600; }
@media (max-width: 600px){ .brand img { height: 46px; } .brand-word b { font-size: 1.05rem; } .brand-word span { display: none; } }
@media (max-width: 380px){ .brand img { height: 42px; } .brand-word b { font-size: .92rem; } }

.nav-links { display: none; align-items: center; gap: .1rem; }
.nav-links a { padding: .55rem .8rem; border-radius: 999px; color: var(--ink); font-weight: 500; font-size: .92rem; }
.nav-links a:hover, .nav-links a.active { color: var(--crimson); background: var(--peach-2); }

/* nav dropdown (Community → Social Service / Advertise) */
.nav-dd { position: relative; }
.nav-dd-btn { font-family: inherit; font-size: .92rem; font-weight: 500; color: var(--ink); background: transparent; border: 0;
  cursor: pointer; padding: .55rem .8rem; border-radius: 999px; display: inline-flex; align-items: center; }
.nav-dd-btn::after { content: "▾"; margin-left: .35rem; font-size: 1.05em; line-height: 1; opacity: 1; }
.nav-dd-btn:hover, .nav-dd-btn.active { color: var(--crimson); background: var(--peach-2); }
.nav-dd-menu { position: absolute; top: 100%; left: 0; min-width: 210px; margin-top: 0; background: var(--cream);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: .45rem; display: none; z-index: 60; }
/* invisible bridge so the cursor never crosses a dead gap between button and menu */
.nav-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { display: block; }
.nav-dd-menu a { display: block; padding: .6rem .8rem; border-radius: 10px; color: var(--ink); font-weight: 500; font-size: .9rem; white-space: nowrap; }
.nav-dd-menu a:hover, .nav-dd-menu a.active { color: var(--crimson); background: var(--peach-2); }

.nav-actions { display: flex; align-items: center; gap: .6rem; }

/* highlighted, blinking Donate CTA in the header (right side) */
.btn-donate {
  display: inline-flex; align-items: center; gap: .4rem; cursor: pointer; white-space: nowrap;
  background: var(--grad); color: #fff; border: 0; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem; line-height: 1;
  padding: .62rem 1.2rem; box-shadow: var(--shadow-warm);
  animation: donateBlink 1.4s ease-in-out infinite;
  transition: transform .18s ease, filter .2s;
}
.btn-donate:hover { color: #fff; filter: brightness(1.07); transform: translateY(-1px); }
@keyframes donateBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246,178,1,.6), var(--shadow-warm); filter: brightness(1); }
  50%      { box-shadow: 0 0 0 10px rgba(246,178,1,0), var(--shadow-warm); filter: brightness(1.13); }
}
@media (max-width: 600px){
  .btn-donate { padding: .38rem .8rem; font-size: .78rem; }
  .btn-donate span[aria-hidden] { display: none; }   /* drop the heart on mobile */
  /* stack the Donate CTA below the language toggle */
  .nav-actions { display: grid; grid-template-columns: auto auto;
    grid-template-areas: "lang ham" "donate ham"; align-items: center; column-gap: .45rem; row-gap: .3rem; }
  .nav-actions .lang-toggle { grid-area: lang; justify-self: end; }
  .nav-actions .btn-donate { grid-area: donate; justify-self: stretch; justify-content: center; }
  .nav-actions .menu-toggle { grid-area: ham; }
}
@media (max-width: 380px){ .btn-donate { padding: .42rem .7rem; font-size: .78rem; } }
@media (prefers-reduced-motion: reduce){ .btn-donate { animation: none; } }

/* language pills */
.lang-toggle { display: flex; gap: 2px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 2px; box-shadow: var(--shadow); }
.lang-toggle button { border: 0; background: transparent; color: var(--ink-dim); padding: .38rem .6rem; border-radius: 999px; cursor: pointer; font-weight: 600; font-size: .78rem; font-family: inherit; }
.lang-toggle button.active { background: var(--grad); color: #fff; }
.lang-toggle button:hover:not(.active) { color: var(--crimson); }
@media (max-width: 520px){ .lang-toggle button { padding: .34rem .46rem; font-size: .72rem; } }

/* hamburger */
.menu-toggle { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line); background: var(--white); cursor: pointer; box-shadow: var(--shadow); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { content: ""; display: block; width: 22px; height: 2.5px; background: var(--maroon); border-radius: 2px; transition: .3s; }
.menu-toggle span::before { transform: translateY(-7px); }
.menu-toggle span::after { transform: translateY(4.5px); }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: rotate(45deg); }
body.menu-open .menu-toggle span::after { transform: rotate(-45deg); }
@media (min-width: 1024px){ .nav-links { display: flex; } .menu-toggle { display: none; } }

/* ---------- Mobile slide menu ---------- */
.mobile-nav { position: fixed; inset: var(--head-h) 0 0 0; background: var(--cream); transform: translateX(100%); transition: transform .32s ease; z-index: 999; overflow-y: auto; padding: 1.4rem; display: flex; flex-direction: column; gap: .2rem; }
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a { padding: .95rem .6rem; border-bottom: 1px solid var(--line); font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; color: var(--maroon); }
.mobile-nav a.active { color: var(--orange); }
.mobile-nav .mobile-group { display: block; padding: 1rem .6rem .35rem; font-family: var(--font-display); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); }
.mobile-nav a.mobile-sub { padding-left: 1.5rem; font-size: 1.05rem; }
body.menu-open { overflow: hidden; }
@media (min-width: 1024px){ .mobile-nav { display: none; } }

/* live banner */
.live-banner { background: var(--red); color: #fff; text-align: center; padding: .5rem; font-weight: 600; font-size: .9rem; }
.live-banner .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #fff; margin-right: .4rem; animation: pulse 1.4s infinite; }

/* ===================================================================
   HERO — circular sunburst with the deity emblem
   =================================================================== */
.hero { position: relative; padding: calc(var(--head-h) + 2.5rem) 0 1rem; overflow: hidden; background: radial-gradient(120% 80% at 80% 0%, var(--peach) 0%, var(--cream) 55%); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 920px){ .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; } }
.hero-copy { text-align: center; }
@media (min-width: 920px){ .hero-copy { text-align: left; } }
.hero .eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; color: var(--crimson); background: var(--peach-2); padding: .45rem 1.1rem; border-radius: 999px; }
.hero .chant { font-family: var(--font-deva); color: var(--orange); font-size: 1.2rem; font-weight: 600; display: block; margin-top: .8rem; }
.hero h1 { margin: .4rem 0 0; }
.hero h1 .sub { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 3vw, 1.9rem); color: var(--ink-soft); letter-spacing: .02em; margin-top: .2rem; }
.hero .lede { margin: 1.3rem auto 0; max-width: 540px; font-size: 1.1rem; }
@media (min-width: 920px){ .hero .lede { margin-inline: 0; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.8rem; }
@media (min-width: 920px){ .hero-cta { justify-content: flex-start; } }

/* sunburst emblem */
.sun { position: relative; width: min(440px, 86vw); margin: 0 auto; aspect-ratio: 1; display: grid; place-items: center; }
.sun::before { /* rotating rays */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--saffron) 0deg 6deg, transparent 6deg 14deg);
  -webkit-mask: radial-gradient(circle, transparent 47%, #000 48%, #000 60%, transparent 63%);
          mask: radial-gradient(circle, transparent 47%, #000 48%, #000 60%, transparent 63%);
  opacity: .5; animation: spin 80s linear infinite;
}
.sun::after { /* gradient disc */
  content: ""; position: absolute; inset: 14%; border-radius: 50%; background: var(--grad);
  box-shadow: 0 30px 70px rgba(212,32,42,.35), inset 0 0 40px rgba(255,255,255,.25);
}
.sun .emblem { position: relative; z-index: 2; width: 64%; filter: drop-shadow(0 10px 20px rgba(122,13,18,.4)); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .sun::before { animation: none; } }

.scroll-cue { display: flex; flex-direction: column; justify-content: center; gap: .5rem; align-items: center; color: var(--ink-dim); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 1.8rem; cursor: pointer; transition: color .2s; }
.scroll-cue:hover { color: var(--orange); }
.scroll-cue i { width: 2px; height: 30px; border-radius: 2px; background: linear-gradient(var(--orange), transparent); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0%,100%{transform:scaleY(.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ===================================================================
   HERO v2 — "Darshan" : the REAL idol framed in a temple arch
   An iteration that puts the actual Khetwadicha Raja photo at the heart
   of the hero, ringed by the signature rays + a gradient torana frame.
   =================================================================== */
.idol-stage { position: relative; width: min(430px, 84vw); margin-inline: auto; padding-top: .4rem; }
.idol-stage::before { /* radiant golden rays behind the arch */
  content: ""; position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%);
  width: 132%; aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0deg 4.5deg, transparent 4.5deg 13deg);
  -webkit-mask: radial-gradient(circle, #000 28%, transparent 66%);
          mask: radial-gradient(circle, #000 28%, transparent 66%);
  opacity: .42; animation: spin 90s linear infinite; z-index: 0;
}
.idol-stage::after { /* warm aura glow */
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 86%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,31,.45), transparent 70%);
  filter: blur(22px); z-index: 0;
}
.idol-frame { /* gradient torana border */
  position: relative; z-index: 1; padding: 11px; background: var(--grad);
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--shadow-lg), 0 24px 50px rgba(212,32,42,.28);
}
.idol-frame::before { /* inner gold hairline */
  content: ""; position: absolute; inset: 11px; border-radius: 212px 212px 20px 20px;
  border: 2px solid rgba(255,255,255,.6); pointer-events: none; z-index: 3;
}
.idol-frame img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 16%;
  border-radius: 210px 210px 18px 18px; display: block;
  background: var(--maroon);
}
/* floating darshan badges */
.idol-badge {
  position: absolute; z-index: 4; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem .9rem; box-shadow: var(--shadow-lg);
  display: inline-flex; gap: .5rem; align-items: center; font-weight: 600; font-size: .82rem; color: var(--maroon);
  animation: floaty 5s ease-in-out infinite;
}
.idol-badge .em { font-size: 1.1rem; line-height: 1; }
.idol-badge--tl { top: 9%; left: -5%; }
.idol-badge--br { bottom: 13%; right: -5%; animation-delay: .8s; }
.idol-badge--live { background: var(--red); color: #fff; border-color: transparent; }
.idol-badge--live .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.3s infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }
@media (max-width: 520px){ .idol-badge--tl{ left: 0; } .idol-badge--br{ right: 0; } .idol-badge{ font-size: .76rem; padding: .42rem .75rem; } }
@media (prefers-reduced-motion: reduce){ .idol-badge { animation: none; } }

/* a real photo dropped into a .media slot fills it edge-to-edge */
.media > img.fill { width: 100%; height: 100%; object-fit: cover; }
.photo-credit { font-size: .72rem; color: #e7a98a; }
.photo-credit a { color: #f0c3a6; text-decoration: underline; }
.photo-credit a:hover { color: var(--gold-2); }

/* ===================================================================
   HERO SLIDER — cross-fading slides, arrows + dots
   =================================================================== */
.hero--slider .container { position: relative; }
.hero-slider { position: relative; }
.hero--slider .hero-grid { min-height: clamp(420px, 56vh, 600px); }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; animation: slideFade .7s cubic-bezier(.2,.7,.3,1); }
@keyframes slideFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* arrows */
.slider-arrow {
  position: absolute; top: 46%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.88); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--crimson); font-size: 1.7rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow); display: grid; place-items: center; transition: background .2s, color .2s, transform .2s;
}
.slider-arrow:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-50%) scale(1.06); }
.slider-arrow--prev { left: -.2rem; }
.slider-arrow--next { right: -.2rem; }
@media (max-width: 760px){ .slider-arrow { display: none; } }

/* dots */
.slider-dots { display: flex; gap: .55rem; justify-content: center; align-items: center; margin-top: 1.4rem; }
.slider-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: var(--peach-2); cursor: pointer; transition: width .25s, background .25s; }
.slider-dots button:hover { background: var(--saffron); }
.slider-dots button.active { background: var(--grad); width: 28px; }

/* ===================================================================
   FULL-WIDTH IDOL HERO — full-bleed Ganpati Bappa image + overlay copy
   =================================================================== */
.hero--full { position: relative; padding-top: var(--head-h); background: #2c0506; color: #ffe9d6; overflow: hidden; }
/* media fills exactly the screen below the fixed header */
.hero-media { position: relative; height: calc(100vh - var(--head-h)); min-height: 460px; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media .hero-bg { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 56% 16%; }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(20,3,4,.82) 0%, rgba(20,3,4,.4) 42%, rgba(20,3,4,0) 72%),
              linear-gradient(180deg, transparent 55%, rgba(20,3,4,.78) 100%); }
.hero-inner { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end;
  padding-bottom: clamp(2rem, 6vh, 4.5rem); }
.hero-inner > .container { width: 100%; }
.hero--full .hero-copy { max-width: 640px; text-align: left; }
@media (max-width: 760px){
  .hero-media { height: calc(100svh - var(--head-h)); }
  .hero-media .hero-bg { object-position: 50% 12%; }
}
.hero--full .hero-copy { max-width: 660px; text-align: left; }
.hero--full .eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; font-size: .74rem; color: var(--gold-2); background: rgba(255,255,255,.1);
  border: 1px solid rgba(246,178,1,.35); padding: .45rem 1.1rem; border-radius: 999px; }
.hero--full .chant { font-family: var(--font-deva); color: var(--gold-2); font-size: 1.2rem; font-weight: 600; display: block; margin-top: .9rem; }
.hero--full h1 { margin: .35rem 0 0; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero--full h1 .sub { display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.9rem); color: #f3c9a8; margin-top: .2rem; }
.hero--full .hero-tags { justify-content: flex-start; margin-top: 1rem; }
.hero--full .lede { margin: 1.1rem 0 0; max-width: 540px; font-size: 1.08rem; color: #f1d6c2; }
.hero--full .hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.hero--full .btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.hero--full .btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero--full .scroll-cue { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 4;
  margin: 0; color: #e9b693; }
.hero--full .scroll-cue:hover { color: var(--gold-2); }

/* ---- mobile-only hero fixes (does NOT affect desktop) ---- */
@media (max-width: 700px){
  /* dark gradient panel behind the copy so text never blends with the image */
  .hero-media::after { background: linear-gradient(180deg, rgba(18,2,3,.45) 0%, rgba(18,2,3,.12) 26%, rgba(18,2,3,.7) 52%, rgba(18,2,3,.99) 100%); }
  .hero-inner { padding-bottom: 1.3rem; background: linear-gradient(to top, rgba(14,2,3,.86) 0%, rgba(14,2,3,.45) 48%, rgba(14,2,3,0) 78%); }
  .hero--full .hero-copy { max-width: 100%; text-shadow: 0 1px 14px rgba(0,0,0,.6); }
  .hero--full .eyebrow { font-size: .6rem; letter-spacing: .06em; padding: .34rem .7rem; }
  .hero--full .chant { font-size: 1rem; margin-top: .5rem; color: var(--gold-2); }
  .hero--full h1 { font-size: clamp(2rem, 8.4vw, 2.8rem); }
  .hero--full h1 .sub { font-size: clamp(.95rem, 3.6vw, 1.2rem); color: #ffe0c8; }
  .hero--full .hero-tags { margin-top: .7rem; gap: .35rem; }
  .hero--full .hero-tags span { font-size: .72rem; padding: .25rem .65rem; color: #ffe9cf; background: rgba(0,0,0,.28); }
  .hero--full .lede { font-size: .92rem; margin-top: .7rem; color: #ffeede; }
  /* Explore More + Watch Live side-by-side, compact, fit the screen */
  .hero--full .hero-cta { flex-wrap: nowrap; gap: .55rem; margin-top: 1rem; }
  .hero--full .hero-cta .btn { flex: 1 1 0; justify-content: center; padding: .62rem .5rem; font-size: .82rem; white-space: nowrap; }
  /* scroll cue was overlapping the buttons — hide on phones */
  .hero--full .scroll-cue { display: none; }
  /* compact quick-action rail, kept on the right so it fits */
  .hero-rail { display: flex !important; right: .35rem; top: 38%; gap: .4rem; }
  .hero-rail a { width: 44px; padding: .42rem .2rem; border-radius: 12px; font-size: .52rem; letter-spacing: .02em; }
  .hero-rail a .em { font-size: 1rem; }
}

/* ===================================================================
   DARK DEVOTIONAL HERO — inspired by the supplied design references
   =================================================================== */
.hero--slider { position: relative; background: #2c0506; color: #ffe9d6; }
.hero--slider::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/img/khetwadicha-raja-idol.jpg") center 22% / cover;
  filter: blur(9px) brightness(.42) saturate(1.15); transform: scale(1.12); }
.hero--slider::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(40,5,6,.95) 0%, rgba(40,5,6,.78) 46%, rgba(40,5,6,.5) 100%),
              radial-gradient(60% 60% at 82% 42%, rgba(246,178,1,.22), transparent 72%); }
.hero--slider .container { position: relative; z-index: 1; }
.hero--slider .eyebrow { background: rgba(255,255,255,.08); color: var(--gold-2); border: 1px solid rgba(246,178,1,.35); }
.hero--slider .chant { color: var(--gold-2); }
.hero--slider h1 .sub { color: #f3c9a8; }
.hero--slider .lede { color: #f1d6c2; }
.hero--slider .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.hero--slider .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.hero--slider .scroll-cue { color: #e9b693; }
.hero--slider .scroll-cue:hover { color: var(--gold-2); }
.hero--slider .slider-arrow { display: none; }   /* dots + swipe + rail handle nav */
.hero--slider .slider-dots button { background: rgba(255,255,255,.28); }
.hero--slider .slider-dots button:hover { background: var(--gold); }
/* the sun emblem reads better with a soft gold ring on dark */
.hero--slider .sun::after { box-shadow: 0 30px 70px rgba(0,0,0,.45), inset 0 0 40px rgba(255,255,255,.25); }

/* devotional tag pills under the headline */
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; justify-content: center; }
@media (min-width: 920px){ .hero-tags { justify-content: flex-start; } }
.hero-tags span { font-family: var(--font-deva); font-size: .82rem; font-weight: 600; color: #ffe1b0;
  border: 1px solid rgba(246,178,1,.4); background: rgba(246,178,1,.08); padding: .3rem .9rem; border-radius: 999px; }

/* floating quick-action rail (Darshan / Schedule / Location) */
.hero-rail { position: absolute; right: clamp(.4rem, 1.5vw, 1.2rem); top: 50%; transform: translateY(-50%);
  z-index: 7; display: flex; flex-direction: column; gap: .55rem; }
.hero-rail a { display: flex; flex-direction: column; align-items: center; gap: .22rem; width: 66px; padding: .6rem .3rem;
  border-radius: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #ffe9d6;
  font-size: .6rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background .2s, color .2s, transform .2s; }
.hero-rail a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateX(-3px); }
.hero-rail a .em { font-size: 1.25rem; line-height: 1; }
@media (max-width: 1100px){ .hero-rail { display: none; } }

/* ---------- Marquee chant strip ---------- */
.marquee { overflow: hidden; background: var(--grad); color: #fff; }
.marquee__track { display: inline-flex; gap: 3rem; white-space: nowrap; padding: .65rem 0; animation: marquee 28s linear infinite; font-family: var(--font-deva); font-weight: 600; font-size: 1.05rem; }
.marquee__track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Quick-info strip ---------- */
.infobar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem; box-shadow: var(--shadow); display: flex; gap: .9rem; align-items: flex-start; transition: transform .2s, box-shadow .2s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.info-card .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-dim); font-weight: 600; }
.info-card .val { font-family: var(--font-display); font-weight: 700; color: var(--maroon); font-size: 1.05rem; line-height: 1.2; }
@media (max-width: 880px){ .infobar { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .infobar { grid-template-columns: 1fr; } }

/* ---------- Split feature ---------- */
.split { display: grid; gap: 2.6rem; align-items: center; grid-template-columns: 1fr 1fr; }
.split.rev .split__media { order: 2; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split.rev .split__media { order: 0; } }
.split__media .media { aspect-ratio: 4/5; }

/* ---------- Media / placeholders ---------- */
.media { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--grad-soft); position: relative; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.circle { border-radius: 50%; aspect-ratio: 1; }
.ph { width: 100%; height: 100%; min-height: 180px; display: grid; place-items: center; gap: .5rem; text-align: center; color: var(--orange); padding: 1rem; }
.ph .big { font-size: 2.8rem; }
.ph small { color: var(--ink-soft); font-size: .75rem; max-width: 30ch; }
.ratio-43 { aspect-ratio: 4/3; } .ratio-169 { aspect-ratio: 16/9; } .ratio-45 { aspect-ratio: 4/5; } .ratio-11 { aspect-ratio: 1; }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.count-box { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4); border-radius: var(--r-sm); padding: .85rem 1rem; min-width: 76px; text-align: center; backdrop-filter: blur(4px); }
.count-box b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.count-box span { font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: #fff3e8; }
/* light variant on cream */
.countdown--light .count-box { background: var(--white); border-color: var(--line); }
.countdown--light .count-box b { color: var(--orange); }
.countdown--light .count-box span { color: var(--ink-dim); }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.statband div { text-align: center; padding: 1.4rem 1rem; }
.statband b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,5vw,3.4rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.statband span { color: var(--ink-soft); font-size: .85rem; font-weight: 500; margin-top: .5rem; display: block; }
@media (max-width: 640px){ .statband { grid-template-columns: repeat(2,1fr); } }
/* maroon stat band with gold icons (design reference) */
.statband-band { background: linear-gradient(180deg, #7a0d12, #560a0d); }
.statband-band .statband .sic { width: 56px; height: 56px; margin: 0 auto .7rem; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; background: rgba(246,178,1,.14); border: 1px solid rgba(246,178,1,.34); color: var(--gold-2); }
.statband-band .statband b { background: none; -webkit-text-fill-color: var(--gold-2); color: var(--gold-2); }
.statband-band .statband span { color: #f0c8af; }

/* ---------- Legacy "Since 1970" — photo | copy | features ---------- */
.legacy { display: grid; gap: 2.2rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 760px){ .legacy { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (min-width: 1040px){ .legacy { grid-template-columns: .85fr 1.25fr .9fr; gap: 2.6rem; } }
.legacy__media .media { aspect-ratio: 4/5; }
.legacy__feats { display: grid; gap: 1.2rem; align-content: center; }
@media (min-width: 760px) and (max-width: 1039px){ .legacy__feats { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; } }
.lf { display: flex; gap: .85rem; align-items: flex-start; }
.lf .ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.3rem; background: var(--grad); color: #fff; box-shadow: var(--shadow-warm); }
.lf b { display: block; font-family: var(--font-display); font-weight: 700; color: var(--maroon); font-size: 1.05rem; line-height: 1.2; }
.lf span { font-size: .84rem; color: var(--ink-soft); }

/* ---------- Section head with side action (row variant) ---------- */
.head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; max-width: none; text-align: left; margin: 0 0 2rem; }
.head--row h2 { margin-top: .4rem; }
@media (max-width: 560px){ .head--row { flex-direction: column; align-items: flex-start; } }

/* ---------- Photo gallery row ---------- */
.gallery-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.gallery-row .media { aspect-ratio: 4/5; }
.gallery-row .gcap { position: absolute; inset: auto 0 0 0; padding: 1.5rem .7rem .6rem;
  background: linear-gradient(transparent, rgba(122,13,18,.88)); color: #fff; font-size: .78rem; font-weight: 600; }
@media (max-width: 900px){ .gallery-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .gallery-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Event cards (date block) ---------- */
.event-card { display: flex; gap: 1.1rem; align-items: flex-start; }
.event-card .date { flex-shrink: 0; width: 66px; text-align: center; background: var(--grad); color: #fff;
  border-radius: 16px; padding: .7rem .3rem; box-shadow: var(--shadow-warm); }
.event-card .date b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.event-card .date span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.event-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.event-card .when { font-size: .82rem; color: var(--orange); font-weight: 600; }
.event-card p { font-size: .9rem; margin-top: .35rem; }
.event-card .more { display: inline-block; margin-top: .55rem; font-size: .84rem; font-weight: 600; }

/* ---------- Latest-update cards (image + body) ---------- */
.update-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.update-card .media { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); box-shadow: none; aspect-ratio: 16/10; }
.update-card .body { padding: 1.3rem; }
.update-card .meta { font-size: .78rem; color: var(--orange); font-weight: 600; }
.update-card h3 { margin: .3rem 0 .4rem; font-size: 1.12rem; }
.update-card p { font-size: .9rem; }
.update-card .more { display: inline-block; margin-top: .6rem; font-weight: 600; font-size: .84rem; }

/* ---------- Advertise page ---------- */
.adv-price { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; color: var(--crimson); font-size: 1.1rem; }
.adv-price .confirm { font-family: var(--font-body); font-weight: 500; }
.sponsor-logo { aspect-ratio: 3/2; border: 1px dashed var(--line); border-radius: var(--r-sm); background: var(--white);
  display: grid; place-items: center; box-shadow: var(--shadow); }
.sponsor-logo .ph { min-height: 0; color: var(--ink-dim); }
.sponsor-logo .ph small { color: var(--ink-dim); }

/* ---------- Branding price table ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--white); }
.price-table th, .price-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.price-table thead th { background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; font-size: .82rem; border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--peach); }
.price-table tbody tr:hover { background: #fde7d6; }
.price-table td.sr { text-align: center; font-weight: 700; color: var(--orange); width: 3rem; }
.price-table td.amt { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--crimson); white-space: nowrap; }
.price-table caption { caption-side: bottom; padding: .8rem 1rem; font-size: .8rem; color: var(--ink-soft); text-align: left; }

/* ---------- Feature cards (signature grid) ---------- */
.feature { text-align: center; }
.feature .ic { margin-inline: auto; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2rem; max-width: 760px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 3px; border-radius: 3px; background: var(--grad); }
.timeline-item { position: relative; padding: 0 0 2rem 1.2rem; }
.timeline-item::before { content: ""; position: absolute; left: -1.9rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--saffron); }
.timeline-item .yr { font-family: var(--font-display); font-weight: 700; color: var(--orange); }
.timeline-item h3 { margin: .15rem 0 .3rem; }

/* ---------- Timings list ---------- */
.timing-list { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--white); box-shadow: var(--shadow); list-style: none; padding: 0; }
.timing-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); }
.timing-list li:last-child { border-bottom: 0; }
.timing-list li:nth-child(even) { background: var(--peach); }
.timing-list .nm { color: var(--ink); font-weight: 500; }
.timing-list .tm { font-family: var(--font-display); font-weight: 700; color: var(--crimson); }

/* ---------- Live stage / video ---------- */
.live-stage { position: relative; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); display: grid; place-items: center; background: var(--grad-soft); box-shadow: var(--shadow); }
.live-stage .play { z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 0 0 10px rgba(242,106,27,.18); cursor: pointer; transition: .2s; }
.live-stage .play:hover { transform: scale(1.06); }
.video-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: var(--shadow); }
.video-wrap iframe, .video-wrap .ph { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-wrap .ph { background: var(--grad-soft); }

/* ---------- Live queue meter ---------- */
.queue-card { display: flex; align-items: center; gap: 1rem; padding: .9rem 0; }
.meter { flex: 1; height: 12px; background: var(--peach-2); border-radius: 999px; overflow: hidden; }
.meter > i { display: block; height: 100%; background: linear-gradient(90deg, var(--ok), var(--gold)); border-radius: 999px; transition: width .6s; }
.meter.high > i { background: linear-gradient(90deg, var(--gold), var(--red)); }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 500; margin-bottom: .4rem; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--white); color: var(--ink); font-family: inherit; font-size: 1rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,106,27,.16); }
.field .error { display: none; color: var(--danger); font-size: .82rem; margin-top: .35rem; }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.form-note { font-size: .82rem; color: var(--ink-dim); }
.form-success { display: none; margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--r-sm); background: #e3f5ea; border: 1px solid var(--ok); color: var(--ok); }
.form-success.show { display: block; }
.form-error { display: none; margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--r-sm); background: #fdeceb; border: 1px solid var(--danger); color: var(--danger); }
.form-error.show { display: block; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* amount + slot pickers */
.amount-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px,1fr)); gap: .6rem; }
.amount-grid button { padding: .8rem; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--white); color: var(--crimson); font-family: inherit; font-weight: 700; cursor: pointer; }
.amount-grid button.selected { background: var(--grad); color: #fff; border-color: transparent; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px,1fr)); gap: .6rem; }
.slot { padding: .7rem; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--white); color: var(--ink); text-align: center; font-size: .86rem; cursor: pointer; transition: .15s; }
.slot:hover { border-color: var(--orange); }
.slot.selected { background: var(--grad); color: #fff; border-color: transparent; }
.slot.full { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.slot small { display: block; opacity: .7; font-size: .7rem; }

/* bank details */
.bank-details { list-style: none; padding: 0; display: grid; gap: 0; }
.bank-details li { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem .1rem; border-bottom: 1px dashed var(--line); }
.bank-details li:last-child { border-bottom: 0; }
.bank-details span { color: var(--ink-soft); font-size: .9rem; }
.bank-details strong { text-align: right; }
.donate-qr { width: 220px; max-width: 100%; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; padding: 8px; margin: .5rem auto 0; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.8rem; }
.filter-bar button { padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--crimson); font-family: inherit; font-weight: 600; font-size: .85rem; cursor: pointer; }
.filter-bar button.active { background: var(--grad); color: #fff; border-color: transparent; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; }
.gallery-grid figure { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); background: var(--grad-soft); cursor: pointer; box-shadow: var(--shadow); }
.gallery-grid figure .ph { font-size: 2.4rem; }
.gallery-grid figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem .8rem .7rem; background: linear-gradient(transparent, rgba(122,13,18,.85)); color: #fff; font-size: .8rem; font-weight: 500; z-index: 1; }
.lightbox { position: fixed; inset: 0; background: rgba(60,8,8,.92); display: none; place-items: center; z-index: 2000; padding: 1.5rem; }
.lightbox.open { display: grid; }
.lightbox .frame { max-width: 760px; width: 100%; background: var(--white); border-radius: var(--r); padding: 2rem; text-align: center; color: var(--ink); }
.lightbox .close { position: absolute; top: 1rem; right: 1.3rem; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; }

/* ---------- Year strip (historic photos through the years) ---------- */
.mt-5 { margin-top: 3.4rem; }
.year-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); gap: 1rem; overflow-x: auto; padding-bottom: .6rem; scroll-snap-type: x proximity; }
.year-tile { position: relative; display: block; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); box-shadow: var(--shadow); scroll-snap-align: start; text-decoration: none; }
.year-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.year-tile:hover img { transform: scale(1.06); }
.year-tile span { position: absolute; inset: auto 0 0 0; padding: 1.2rem .7rem .6rem; background: linear-gradient(transparent, rgba(122,13,18,.88)); color: #fff; font-weight: 700; font-size: .95rem; }

/* ---------- News / posts ---------- */
.post .meta { font-size: .8rem; color: var(--orange); font-weight: 600; }
.post h3 { margin: .25rem 0; }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.accordion + .accordion { margin-top: .8rem; }
.accordion button { width: 100%; text-align: left; background: none; border: 0; padding: 1.15rem 1.3rem; color: var(--maroon); font-family: inherit; font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.accordion .chev { color: var(--orange); transition: transform .3s; }
.accordion.open .chev { transform: rotate(180deg); }
.accordion .ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 1.3rem; }
.accordion .ans p { padding-bottom: 1.15rem; }
.accordion.open .ans { max-height: 500px; }

/* ---------- Members ---------- */
.member { text-align: center; }
.member .ava { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center; font-size: 2.2rem; background: var(--grad); color: #fff; box-shadow: var(--shadow-warm); }
.member .role { color: var(--orange); font-size: .85rem; font-weight: 600; }

/* ---------- Map ---------- */
.map-embed { aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--peach); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding: calc(var(--head-h) + 2.8rem) 0 2.6rem; text-align: center; overflow: hidden;
  background: radial-gradient(120% 95% at 50% -10%, #6a0e12, #3d0709 72%); color: #ffe9d6; }
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb { font-size: .82rem; color: #e9b693; margin-bottom: .8rem; }
.page-hero .breadcrumb a { color: var(--gold-2); }
.page-hero p { margin: .9rem auto 0; max-width: 640px; font-size: 1.05rem; color: #f1d6c2; }
.page-hero .emblem-wm { position: absolute; right: -3%; top: 50%; transform: translateY(-50%); width: 260px; opacity: .12; pointer-events: none; filter: brightness(0) invert(1); }
@media (max-width: 700px){ .page-hero .emblem-wm { width: 160px; right: -12%; } }

/* ---------- Sticky sub-nav (for sectioned pages like About) ---------- */
.subnav { position: sticky; top: var(--head-h); z-index: 40; background: rgba(255,249,243,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav .container { display: flex; gap: .5rem; overflow-x: auto; padding-block: .75rem; scrollbar-width: none; }
.subnav .container::-webkit-scrollbar { display: none; }
.subnav a { white-space: nowrap; padding: .5rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .88rem; color: var(--crimson); background: var(--white); border: 1px solid var(--line); }
.subnav a:hover { background: var(--peach-2); }

/* ---------- Prose ---------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { display: grid; gap: .45rem; }
.note { background: var(--peach); border-left: 4px solid var(--orange); padding: 1rem 1.3rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.divider { height: 1px; background: var(--line); margin: 2.4rem 0; }
hr { border: 0; border-top: 1px solid var(--line); }
.text-muted { color: var(--ink-dim); }
.confirm { background: #fff3d6; color: #8a5a00; padding: 0 .35rem; border-radius: 4px; font-size: .85em; font-style: italic; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: calc(var(--r) + 8px); overflow: hidden; padding: clamp(2.6rem,6vw,4.5rem); text-align: center; background: var(--grad); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: #fff4ea; max-width: 580px; margin: 0 auto 1.8rem; }
.cta-band .chant { font-family: var(--font-deva); color: #fff; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--maroon), #560a0d); color: #ffe9d6; padding: clamp(2.4rem,4vw,3.4rem) 0 1.3rem; position: relative; overflow: hidden; border-top: 4px solid; border-image: var(--grad) 1; }
.site-footer::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../assets/img/khetwadicha-raja-idol.jpg") center 25% / cover; opacity: .07; }
.site-footer > .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1.6fr 1.3fr; gap: 2rem; }
/* Quick Links always in two parallel columns (compact) */
.footer-col--links ul { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.4rem; }
.footer-brand img { height: 62px; margin-bottom: 1rem; background: #fff; padding: 5px; border-radius: 14px; }
.footer-brand p { font-size: .92rem; max-width: 34ch; color: #ffdcc2; }
.site-footer h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-2); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-footer .footer-top a { color: #ffdcc2; font-size: .92rem; }
.site-footer .footer-top a:hover { color: var(--gold-2); }
.social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social a { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.12); color: var(--gold-2); font-weight: 700; }
.social a:hover { background: var(--grad); color: #fff; }
.social a svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 1.6rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .82rem; color: #f0c3a6; }
.footer-bottom a { color: var(--gold-2); }
.footer-bottom a:hover { color: #fff; }
.footer-chant { text-align: center; font-family: var(--font-deva); color: var(--gold-2); margin-top: .9rem; font-size: 1.1rem; font-weight: 600; }
.footer-powered { text-align: center; margin-top: .6rem; font-size: .85rem; color: #ffdcc2; }
.footer-powered a { color: var(--gold-2); font-weight: 600; text-decoration: none; }
.footer-powered a:hover { text-decoration: underline; }

/* contact list */
.foot-contact { list-style: none; padding: 0; display: grid; gap: .6rem; }
.foot-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: #ffdcc2; line-height: 1.4; }
.foot-contact .fi { flex-shrink: 0; }
.site-footer .footer-top .foot-contact a { font-size: .9rem; }

/* stay-connected subscribe */
.footer-subscribe p { font-size: .88rem; color: #ffdcc2; margin-bottom: .75rem; }
.subscribe-row { display: flex; gap: .4rem; }
.subscribe-row input { flex: 1; min-width: 0; padding: .62rem .9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff; font-family: inherit; font-size: .9rem; }
.subscribe-row input::placeholder { color: #e8b9a0; }
.subscribe-row input:focus { outline: none; border-color: var(--gold-2); background: rgba(255,255,255,.14); }
.subscribe-row .btn { padding: .55rem 1.05rem; font-size: 1.1rem; }
.footer-subscribe .form-success { margin-top: .6rem; font-size: .82rem; }
.foot-badge { margin-top: 1rem; display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 600;
  color: var(--gold-2); background: rgba(246,178,1,.12); border: 1px solid rgba(246,178,1,.3); padding: .42rem .85rem; border-radius: 999px; transition: background .2s, color .2s; }
a.foot-badge:hover { background: var(--grad); color: #fff; border-color: transparent; }
/* mobile: stack Brand → Quick Links (2-col) → Contact Us, each full width */
@media (max-width: 800px){ .footer-top { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- Aarti lyrics ---------- */
.aarti-text { font-family: var(--font-deva); white-space: pre-line; line-height: 1.95; color: var(--ink); font-size: 1.06rem; margin-top: .8rem; }

/* ---------- Floating actions (WhatsApp + back-to-top) ---------- */
.float-actions { position: fixed; right: clamp(.8rem, 2vw, 1.4rem); bottom: clamp(.8rem, 2vw, 1.4rem); z-index: 900; display: flex; flex-direction: column; gap: .6rem; }
.float-actions a, .float-actions button { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 0; cursor: pointer; box-shadow: var(--shadow-lg); transition: transform .2s, filter .2s; }
.float-actions a:hover, .float-actions button:hover { transform: translateY(-3px); }
.float-wa { background: #25D366; color: #fff; }
.float-wa svg { width: 28px; height: 28px; }
.float-top { background: var(--grad); color: #fff; font-size: 1.4rem; line-height: 1; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .3s, visibility .3s, transform .2s; }
.float-top.show { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 480px){ .float-actions a, .float-actions button { width: 46px; height: 46px; } .float-wa svg { width: 24px; height: 24px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ---------- Responsive helpers ---------- */
@media (max-width: 900px){
  main [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  main [style*="grid-template-columns"] > * { min-width: 0; }
}
