/* ═══════════════════════════════════════════
   CHAMUNDI TEMPLE · chamundi.css
   DNA tokens + all section styles
═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --cream:        #F4ECDC;
  --cream-soft:   #FBF6EA;
  --paper:        #FFFCF4;
  --ink:          #2A1810;
  --ink-soft:     #5A4738;
  --ink-mute:     rgba(42,24,16,0.50);
  --hairline:     rgba(42,24,16,0.13);

  --maroon:       #5B1A2A;
  --maroon-deep:  #3D1019;
  --maroon-soft:  #7C2B3E;

  --saffron:      #C8842C;
  --saffron-deep: #9E6418;
  --saffron-soft: #E5B670;
  --gold-pale:    #F0CC8A;

  --leaf:         #2E5A3D;

  --r-card:  18px;
  --sh-card: 0 2px 18px rgba(42,24,16,0.07);

  --fd: 'Marcellus', Georgia, serif;
  --fb: 'Asap', system-ui, sans-serif;
  --fk: 'Tiro Kannada', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* paper grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 500; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(42,24,16,0.022) 1px, transparent 0);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

/* ── Layout ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── Typography helpers ── */
.kn-lbl {
  font-family: var(--fk);
  font-size: 13px; color: var(--saffron); letter-spacing: 0.04em;
  display: block; margin-bottom: 8px;
}
.kn-lbl-dim { color: rgba(240,204,138,0.72); }

.sec-h {
  font-family: var(--fd);
  font-size: clamp(30px, 3.8vw, 50px);
  color: var(--maroon); line-height: 1.04;
  letter-spacing: -0.01em; font-weight: 400;
}
.sec-h em         { font-style: italic; color: var(--saffron-deep); }
.sec-h.light      { color: var(--cream-soft); }
.sec-h.light em   { color: var(--gold-pale); }

/* ── Ornament ── */
.orn {
  display: flex; align-items: center; gap: 12px;
  color: var(--saffron); margin: 18px 0;
}
.orn::before, .orn::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.42;
}

/* ── Buttons ── */
.btn-m {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  background: var(--maroon); color: var(--cream-soft);
  font: 500 14px/1 var(--fb); transition: background 170ms, transform 170ms;
}
.btn-m:hover { background: var(--maroon-deep); transform: translateY(-1px); }

.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  background: var(--saffron); color: var(--paper);
  font: 500 14px/1 var(--fb); transition: background 170ms, transform 170ms;
}
.btn-s:hover { background: var(--saffron-deep); transform: translateY(-1px); }

.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  background: transparent; color: var(--cream-soft);
  border: 1px solid rgba(244,236,220,0.32);
  font: 14px/1 var(--fb); transition: border-color 160ms, background 160ms;
}
.btn-g:hover { border-color: var(--gold-pale); background: rgba(240,204,138,0.07); }

/* ── Scroll reveal ── */
.rv { opacity: 0; transform: translateY(15px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.6,.2,1); }
.rv.in { opacity: 1; transform: none; }

/* ═══ NAV ═══ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(244,236,220,0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--hairline);
}
.nav .wrap {
  display: flex; align-items: center; gap: 24px;
  padding-top: 12px; padding-bottom: 12px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-crest {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(91,26,42,0.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon);
}
.nb-kn { font-family: var(--fk); font-size: 14px; color: var(--maroon); line-height: 1.2; display: block; }
.nb-en { font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.04em; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-links a {
  display: flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 8px;
  font-size: 13px; color: var(--ink-soft); transition: color 150ms, background 150ms;
}
.nav-links .n { font-family: monospace; font-size: 10px; color: var(--ink-mute); }
.nav-links a:hover { color: var(--maroon); background: rgba(91,26,42,0.06); }
.nav-right { flex-shrink: 0; }

/* ═══ STATUS BAR ═══ */
.status-bar {
  background: var(--maroon-deep);
  display: flex; align-items: center;
  padding: 9px 0; overflow: hidden;
}
.status-bar .wrap { display: flex; align-items: center; gap: 0; max-width: 100%; }
.s-live {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0;
  padding-right: 20px; margin-right: 20px;
  border-right: 1px solid rgba(244,236,220,0.14);
  font-size: 13px; color: var(--cream-soft);
}
.s-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #5CB85C;
  animation: sPulse 2s ease-in-out infinite;
}
@keyframes sPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(92,184,92,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(92,184,92,0); }
}
.s-kn     { font-family: var(--fk); font-size: 11px; color: var(--saffron-soft); }
.s-status { color: #7BE07B; font-weight: 500; }
.ticker   { flex: 1; overflow: hidden; }
.ticker-t {
  display: flex; gap: 52px; white-space: nowrap;
  animation: tick 44s linear infinite;
}
.ticker-t:hover { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-i { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(244,236,220,.78); }
.t-o { color: var(--saffron-soft); }

/* ═══ HERO ═══ */
.hero { padding: 44px 0 32px; }
.hero .wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  min-height: calc(100vh - 130px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border: 1px solid var(--saffron); border-radius: 999px;
  font-size: 11px; letter-spacing: 0.08em; color: var(--saffron-deep);
  background: rgba(200,132,44,0.07); margin-bottom: 18px; width: fit-content;
}
.hero-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--saffron-deep); }
.hero-kn  { font-family: var(--fk); font-size: clamp(17px,2.1vw,25px); color: var(--maroon); line-height: 1.3; margin-bottom: 6px; }
.hero-en  { font-family: var(--fd); font-size: clamp(36px,4.6vw,62px); color: var(--maroon); line-height: 1.01; letter-spacing: -0.02em; margin-bottom: 10px; }
.hero-en em { color: var(--saffron-deep); font-style: italic; }
.hero-loc { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 20px; }
.hero-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.72; max-width: 450px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero sky scene */
.hero-sky {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 5/6; min-height: 380px;
  box-shadow: 0 28px 72px rgba(91,26,42,0.17);
  isolation: isolate;
}
.sky-g { position: absolute; inset: 0; background: linear-gradient(180deg,#FBF6EA 0%,#F5E9D0 40%,#EDDB8B 78%,#E4C474 100%); }
.sky-sun {
  position: absolute; left: 50%; top: 28%; transform: translate(-50%,-50%);
  width: 55%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,rgba(240,204,138,.58) 0%,rgba(240,204,138,.12) 42%,transparent 70%);
  filter: blur(4px); animation: sP 9s ease-in-out infinite;
}
@keyframes sP { 0%,100%{opacity:.8;transform:translate(-50%,-50%) scale(1)}50%{opacity:1;transform:translate(-50%,-50%) scale(1.05)} }
.sky-clouds { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.sky-cloud  { position: absolute; animation: cD linear infinite; }
@keyframes cD { from{left:-30%} to{left:118%} }
.sky-temple {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
}
.sky-temple img {
  width: 84%; max-height: 90%;
  object-fit: contain; object-position: bottom;
  filter: sepia(.22) saturate(1.1) drop-shadow(0 8px 22px rgba(91,26,42,.11));
}
.sky-cap {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  display: flex; align-items: center; gap: 9px; padding: 7px 14px;
  background: rgba(255,252,244,.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,132,44,.28); border-radius: 999px;
  font-size: 12px; color: var(--ink-soft);
}
.sky-cap strong { font-family: var(--fd); font-size: 14px; color: var(--maroon); }
.sky-grain { position: absolute; inset: 0; z-index: 4; pointer-events: none; background-image: radial-gradient(circle at 1px 1px,rgba(91,26,42,.04) 1px,transparent 0); background-size: 4px 4px; mix-blend-mode: multiply; }

/* ═══ HERITAGE STATS ═══ */
.stats-bar { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.stats-bar .wrap { display: grid; grid-template-columns: repeat(4,1fr); padding-top: 30px; padding-bottom: 30px; }
.st-item { padding: 0 26px; border-right: 1px solid var(--hairline); text-align: center; }
.st-item:first-child { padding-left: 0; text-align: left; }
.st-item:last-child  { border-right: none; }
.st-kn  { font-family: var(--fk); font-size: 11px; color: var(--saffron); display: block; margin-bottom: 5px; }
.st-num { font-family: var(--fd); font-size: clamp(28px,3vw,42px); color: var(--maroon); line-height: 1; letter-spacing: -0.02em; }
.st-num sup { font-size: 0.42em; font-family: var(--fb); vertical-align: super; }
.st-lab { font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-mute); margin-top: 5px; }

/* ═══ LEGEND ═══ */
.legend { background: var(--maroon-deep); position: relative; }
.legend .wrap { position: relative; z-index: 1; }
.legend .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding-top: 88px; padding-bottom: 88px; }
.leg-img { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; background: rgba(244,236,220,.04); border: 1px solid rgba(240,204,138,.11); display: flex; align-items: flex-end; justify-content: center; }
.leg-img img { width: 87%; object-fit: contain; object-position: bottom; filter: sepia(.18) saturate(1.15) brightness(.9); }
.leg-img-cap { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); font-family: var(--fk); font-size: 11.5px; color: var(--saffron-soft); white-space: nowrap; background: rgba(61,16,25,.65); padding: 5px 14px; border-radius: 999px; }
.leg-text .kn-lbl { color: var(--saffron-soft); }
.leg-body { font-size: 15px; color: rgba(244,236,220,.82); line-height: 1.78; margin-top: 18px; }
.leg-body p + p { margin-top: 13px; }
.leg-body strong { color: var(--cream-soft); }
.leg-q { margin-top: 24px; padding: 17px 22px; border-left: 3px solid var(--saffron); font-family: var(--fd); font-size: 15.5px; font-style: italic; color: var(--gold-pale); line-height: 1.55; }
.leg-q span { display: block; font-size: 11.5px; color: rgba(240,204,138,.5); margin-top: 6px; font-style: normal; font-family: var(--fb); }

/* ═══ SACRED TIMINGS ═══ */
.timings .wrap { padding-top: 80px; padding-bottom: 88px; }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.t-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 24px 20px; box-shadow: var(--sh-card); transition: transform 200ms, box-shadow 200ms; }
.t-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(91,26,42,.09); }
.t-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.t-icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(200,132,44,.1); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.t-period { font-family: var(--fd); font-size: 18px; color: var(--maroon); }
.t-period-kn { font-family: var(--fk); font-size: 10.5px; color: var(--saffron); }
.t-rows { display: flex; flex-direction: column; }
.t-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 9px 0; border-bottom: 1px solid var(--hairline); font-size: 13px; }
.t-row:last-child { border-bottom: none; }
.t-seva { color: var(--ink); flex: 1; }
.t-seva .skn { font-family: var(--fk); font-size: 10px; color: var(--ink-mute); display: block; margin-top: 1px; }
.t-time { font-family: monospace; color: var(--maroon); font-size: 12.5px; white-space: nowrap; margin: 0 8px; }
.bdg { display: inline-flex; padding: 3px 9px; border-radius: 999px; font-size: 10.5px; white-space: nowrap; }
.bdg-f { background: rgba(46,90,61,.09);  color: var(--leaf);         border: 1px solid rgba(46,90,61,.22); }
.bdg-p { background: rgba(200,132,44,.09); color: var(--saffron-deep); border: 1px solid rgba(200,132,44,.22); }
.bdg-c { background: rgba(91,26,42,.07);  color: var(--maroon);       border: 1px solid rgba(91,26,42,.18); }
.t-note { margin-top: 20px; padding: 12px 16px; background: rgba(200,132,44,.05); border: 1px solid rgba(200,132,44,.17); border-radius: 12px; font-size: 13px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px; line-height: 1.55; }

/* ═══ DASARA BANNER ═══ */
.dasara { background: linear-gradient(135deg,var(--maroon) 0%,var(--maroon-deep) 55%,#1b050c 100%); position: relative; overflow: hidden; }
.d-halo  { position: absolute; right: -5%; top: -35%; width: 58%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(240,204,138,.07),transparent 70%); pointer-events: none; }
.dasara .wrap { display: grid; grid-template-columns: 1fr 180px; gap: 48px; align-items: center; padding-top: 66px; padding-bottom: 66px; position: relative; z-index: 1; }
.d-eyebrow { font-family: var(--fk); font-size: 13px; color: var(--saffron-soft); display: block; margin-bottom: 10px; }
.d-h { font-family: var(--fd); font-size: clamp(24px,3vw,40px); color: var(--cream-soft); line-height: 1.1; margin-bottom: 12px; }
.d-h em { color: var(--gold-pale); font-style: italic; }
.d-desc { font-size: 14.5px; color: rgba(244,236,220,.76); line-height: 1.68; max-width: 540px; margin-bottom: 24px; }
.d-dates { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.d-date { padding: 11px 16px; background: rgba(244,236,220,.06); border: 1px solid rgba(240,204,138,.17); border-radius: 11px; }
.d-date-lbl { font-size: 9.5px; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(240,204,138,.65); margin-bottom: 3px; }
.d-date-val { font-family: var(--fd); font-size: 16px; color: var(--cream-soft); }
.d-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.d-right { text-align: center; }
.d-big-n { font-family: var(--fd); font-size: 58px; color: var(--gold-pale); line-height: 1; }
.d-big-l { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,204,138,.5); margin-top: 3px; }
.d-big-n2 { font-family: var(--fd); font-size: 34px; color: var(--gold-pale); line-height: 1; margin-top: 18px; }

/* ═══ DHARMIKA DESK ═══ */
.dharmika .wrap { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; padding-top: 88px; padding-bottom: 88px; }
.dh-photo-wrap { display: flex; flex-direction: column; align-items: center; }
.dh-photo { width: 100%; aspect-ratio: 3/4; border-radius: 15px; background: var(--cream-soft); border: 1px solid var(--hairline); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; overflow: hidden; }
.dh-photo-ico { font-size: 40px; opacity: 0.18; }
.dh-photo-lbl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-family: monospace; }
.dh-name { font-family: var(--fd); font-size: 19px; color: var(--maroon); margin-top: 12px; text-align: center; }
.dh-role { font-size: 10.5px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.07em; text-align: center; margin-top: 3px; line-height: 1.6; }
.dh-qm   { font-family: var(--fd); font-size: 68px; color: var(--saffron-soft); opacity: 0.3; line-height: 0.72; margin-bottom: 5px; }
.dh-q    { font-family: var(--fd); font-size: clamp(16px,1.8vw,21px); color: var(--maroon); line-height: 1.5; font-style: italic; margin-bottom: 16px; }
.dh-body { font-size: 14.5px; color: var(--ink-soft); line-height: 1.76; }
.dh-body p + p { margin-top: 11px; }
.dh-sig  { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.dh-sig-line { width: 42px; height: 2px; background: var(--saffron); }
.dh-sig-text { font-family: var(--fk); font-size: 14px; color: var(--maroon); }

/* ═══ QUICK LINKS ═══ */
.ql { background: var(--cream-soft); }
.ql .wrap { padding-top: 88px; padding-bottom: 88px; }
.ql-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; margin-top: 44px; }
.ql-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 24px 20px; display: flex; flex-direction: column; gap: 9px; box-shadow: var(--sh-card); transition: all 190ms; }
.ql-card:hover { border-color: var(--saffron); transform: translateY(-3px); box-shadow: 0 11px 34px rgba(91,26,42,.09); }
.ql-ico   { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,132,44,.1); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.ql-kn    { font-family: var(--fk); font-size: 10.5px; color: var(--saffron); }
.ql-title { font-family: var(--fd); font-size: 17px; color: var(--maroon); line-height: 1.2; }
.ql-desc  { font-size: 12px; color: var(--ink-mute); line-height: 1.5; flex: 1; }
.ql-arr   { color: var(--saffron); font-size: 15px; margin-top: 3px; }

/* ═══ TEMPLES MAP ═══ */
.temples { background: var(--paper); }
.temples-head { padding-top: 56px; padding-bottom: 22px; }
.temples-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--hairline); background: var(--cream-soft); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.temp-list { margin-top: 32px; display: flex; flex-direction: column; }
.ti { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.ti:last-child { border-bottom: none; }
.ti-num  { font-family: monospace; font-size: 10px; color: var(--ink-mute); width: 18px; flex-shrink: 0; }
.ti-dot  { width: 10px; height: 10px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }
.ti-dot.main { background: var(--maroon); width: 12px; height: 12px; }
.ti-name { font-family: var(--fd); font-size: 14.5px; color: var(--maroon); line-height: 1.2; flex: 1; }
.ti-name span { font-family: var(--fk); font-size: 10px; color: var(--ink-mute); display: block; font-style: normal; margin-top: 2px; }
.ti-loc  { font-size: 11px; color: var(--ink-mute); white-space: nowrap; }

/* ═══ APP DOWNLOAD ═══ */
.app-dl { background: linear-gradient(135deg,var(--maroon-deep),#1e060d); }
.app-dl .wrap { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding-top: 66px; padding-bottom: 66px; }
.app-kn   { font-family: var(--fk); font-size: 13px; color: var(--saffron-soft); display: block; margin-bottom: 10px; }
.app-h    { font-family: var(--fd); font-size: clamp(25px,3vw,38px); color: var(--cream-soft); line-height: 1.1; margin-bottom: 12px; }
.app-h em { color: var(--gold-pale); }
.app-desc { font-size: 14.5px; color: rgba(244,236,220,.72); line-height: 1.68; max-width: 460px; margin-bottom: 26px; }
.app-stores { display: flex; gap: 13px; }
.app-btn { display: flex; align-items: center; gap: 11px; padding: 12px 20px; background: rgba(244,236,220,.07); border: 1px solid rgba(244,236,220,.18); border-radius: 13px; color: var(--cream-soft); transition: background 160ms, border-color 160ms; }
.app-btn:hover { background: rgba(244,236,220,.13); border-color: var(--gold-pale); }
.app-btn-ico { font-size: 24px; }
.app-btn .sm { font-size: 9.5px; color: rgba(244,236,220,.52); letter-spacing: 0.1em; display: block; }
.app-btn .lg { font-family: var(--fd); font-size: 16.5px; }
.app-mock {
  width: 190px; aspect-ratio: 9/18; border-radius: 28px;
  background: rgba(244,236,220,.03); border: 1.5px solid rgba(244,236,220,.11);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: rgba(244,236,220,.28); font-size: 10.5px; font-family: monospace; letter-spacing: 0.08em;
  flex-shrink: 0;
}

/* ═══ CHAT WIDGETS ═══ */
.chat { background: var(--cream-soft); }
.chat .wrap { padding-top: 72px; padding-bottom: 80px; }
.chat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.c-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: 20px; padding: 26px; box-shadow: var(--sh-card); display: flex; flex-direction: column; gap: 13px; }
.c-ico  { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 21px; }
.c-ico-p { background: rgba(91,26,42,.07); }
.c-ico-a { background: rgba(46,90,61,.07); }
.c-kn   { font-family: var(--fk); font-size: 11px; color: var(--saffron); }
.c-title { font-family: var(--fd); font-size: 21px; color: var(--maroon); }
.c-desc  { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }
.c-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.c-pill  { padding: 4px 11px; background: var(--cream); border: 1px solid var(--hairline); border-radius: 999px; font-size: 11.5px; color: var(--ink-soft); cursor: pointer; transition: border-color 140ms, color 140ms; }
.c-pill:hover { border-color: var(--maroon); color: var(--maroon); }
.c-row   { display: flex; align-items: center; gap: 8px; padding: 8px 8px 8px 13px; background: var(--cream-soft); border: 1px solid var(--hairline); border-radius: 12px; margin-top: auto; }
.c-in    { flex: 1; background: none; border: none; outline: none; font: 13px/1 var(--fb); color: var(--ink); }
.c-in::placeholder { color: var(--ink-mute); }
.c-send  { width: 32px; height: 32px; border-radius: 9px; background: var(--maroon); display: flex; align-items: center; justify-content: center; color: var(--cream-soft); font-size: 14px; transition: background 140ms; }
.c-send:hover { background: var(--maroon-deep); }
.c-send.green { background: var(--leaf); }
.c-send.green:hover { background: #1e3d2a; }

/* ═══ FOOTER ═══ */
.footer { background: linear-gradient(180deg,#3D1019,#200810); color: var(--cream-soft); }
.footer .wrap.ft { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 42px; padding-top: 64px; padding-bottom: 44px; }
.f-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.f-crest { width: 38px; height: 38px; border: 1px solid rgba(240,204,138,.26); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-pale); }
.f-name { font-family: var(--fd); font-size: 16px; color: var(--cream-soft); }
.f-kn-s { font-family: var(--fk); font-size: 12px; color: rgba(244,236,220,.52); display: block; margin-bottom: 11px; }
.f-tag  { font-family: var(--fd); font-style: italic; font-size: 13.5px; color: var(--gold-pale); margin-bottom: 16px; }
.f-contact { font-size: 12.5px; color: rgba(244,236,220,.55); line-height: 1.88; }
.f-col-h  { font-family: monospace; font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,236,220,.32); margin-bottom: 13px; display: block; }
.f-links  { display: flex; flex-direction: column; gap: 7px; }
.f-links a { font-size: 13px; color: rgba(244,236,220,.68); transition: color 140ms; }
.f-links a:hover { color: var(--gold-pale); }
.f-bot { border-top: 1px solid rgba(240,204,138,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font: 10.5px/1 monospace; letter-spacing: 0.1em; color: rgba(244,236,220,.32); }
.f-bot a { color: rgba(240,204,138,.5); }
.f-bot a:hover { color: var(--gold-pale); }

/* ═══ DAILY DARSHAN — SVG Draw Section ═══ */
.daily {
  background: var(--maroon-deep);
  position: relative; overflow: hidden;
}
.daily::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(240,204,138,.028) 1px, transparent 0);
  background-size: 5px 5px;
}
.daily .wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding-top: 104px; padding-bottom: 104px;
  position: relative; z-index: 1;
}

/* SVG stage */
.dvt-stage { display: flex; align-items: center; justify-content: center; }
.dvt-svg   { width: 100%; max-width: 460px; display: block; }

/* All SVG strokes are saffron-toned for gopuram, cream for devotee */
#d-gop > * { fill: none; stroke: rgba(240,204,138,0.72); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
#d-dvt > * { fill: none; stroke: rgba(244,236,220,0.92); stroke-width: 2;   stroke-linecap: round; stroke-linejoin: round; }

/* Fill layer — starts invisible */
#d-fill > * { opacity: 0; }

/* Divine rays */
#d-rays { opacity: 0; transition: opacity 1.2s ease; }
#d-rays line { stroke: rgba(240,204,138,0.22); stroke-width: 0.6; }

/* Aura rings */
.d-aura { opacity: 0; }
.d-aura.live {
  animation: auraRing 3.2s ease-in-out infinite;
}
.d-aura:nth-child(2).live { animation-delay: 0.45s; }
.d-aura:nth-child(3).live { animation-delay: 0.9s; }
@keyframes auraRing {
  0%,100% { opacity: 0; r: 54; }
  40%      { opacity: 0.4; }
  60%      { opacity: 0.4; }
  100%     { r: 80; }
}

/* Text side */
.daily-kn   { color: var(--saffron-soft) !important; }
.daily-h    { font-family: var(--fd); font-size: clamp(26px,3.2vw,44px); color: var(--cream-soft); line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 20px; }
.daily-h em { color: var(--gold-pale); font-style: italic; }
.daily-body { font-size: 15px; color: rgba(244,236,220,.8); line-height: 1.80; }
.daily-body + .daily-body { margin-top: 14px; }
.daily-q {
  margin: 24px 0; padding: 17px 22px;
  border-left: 2px solid var(--saffron);
  font-family: var(--fd); font-size: 15px;
  color: var(--gold-pale); font-style: italic; line-height: 1.55;
}
.daily-q span {
  display: block; font-size: 11px; font-style: normal;
  font-family: var(--fb); color: rgba(240,204,138,.42); margin-top: 6px;
}
.daily-note {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(240,204,138,.06);
  border: 1px solid rgba(240,204,138,.14);
  border-radius: 12px;
  font-size: 12.5px;
  color: rgba(244,236,220,.55);
  line-height: 1.6;
  font-style: italic;
}

/* ═══ YANTRA MANDALA BACKGROUND ═══ */
.yantra-bg {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.yantra-svg {
  width: min(92vw,860px); height: min(92vw,860px);
  opacity: 0.054; color: var(--gold-pale);
  animation: yRot 110s linear infinite;
  will-change: transform; flex-shrink: 0;
}
@keyframes yRot { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* also used in .daily section (counter-rotate) */
.yantra-bg.daily-yantra { z-index: 0; }
.yantra-bg.daily-yantra .yantra-svg {
  opacity: 0.035;
  animation: yRotCCW 140s linear infinite;
}
@keyframes yRotCCW { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }

/* ═══ INCENSE BAR ═══ */
.inc-bar {
  display: flex; justify-content: center; align-items: flex-end;
  padding: 12px 0 0; grid-column: 1 / -1;
}
.inc-wrap { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.inc-svg  { overflow: visible; display: block; }
.inc-s    { fill: none; stroke-linecap: round; }
.inc-s1   { animation: incUp 3s   ease-out          infinite; }
.inc-s2   { animation: incUp 3.6s ease-out  .95s    infinite; }
.inc-s3   { animation: incUp 4.2s ease-out  1.9s    infinite; }
@keyframes incUp {
  0%   { opacity:0; transform:translateY(0)    scaleX(1); }
  14%  { opacity:.22; }
  80%  { opacity:.08; }
  100% { opacity:0; transform:translateY(-50px) scaleX(2.8); }
}
.inc-label { font-family:var(--fk); font-size:11px; color:rgba(244,236,220,.3); letter-spacing:.06em; }

/* ═══ DIYA DIVIDER BREAK ═══ */
.diya-break {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 26px 48px;
  background: linear-gradient(to bottom, var(--maroon-deep) 0%, var(--cream-soft) 100%);
}
.diya-break.dasara-to-cream {
  background: linear-gradient(to bottom, #1b050c 0%, var(--cream-soft) 100%);
}
.diya-rule-l { flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(200,132,44,0.42),transparent); max-width:240px; }
.diya-set    { display:flex; align-items:flex-end; gap:26px; }

/* Flame & smoke — driven by JS-assigned delays */
.d-f  { animation: dF  2.2s ease-in-out infinite; transform-origin: 18px 36px; }
.d-fi { animation: dFi 1.5s ease-in-out infinite; transform-origin: 18px 36px; }
.d-sm { fill:none; stroke-linecap:round; }
.d-sm1 { animation: dSm 2.8s ease-out          infinite; }
.d-sm2 { animation: dSm 3.3s ease-out .85s     infinite; }
.d-sm3 { animation: dSm 3.8s ease-out 1.7s     infinite; }
@keyframes dF  { 0%,100%{transform:scaleX(1) scaleY(1) rotate(0deg)} 22%{transform:scaleX(.82) scaleY(1.15) rotate(-3deg)} 50%{transform:scaleX(1.1) scaleY(.93) rotate(2deg)} 75%{transform:scaleX(.9) scaleY(1.08) rotate(-1.2deg)} }
@keyframes dFi { 0%,100%{transform:scaleX(1) scaleY(1)} 30%{transform:scaleX(.76) scaleY(1.2) rotate(2.5deg)} 65%{transform:scaleX(1.12) scaleY(.87) rotate(-2deg)} }
@keyframes dSm { 0%{opacity:0;transform:translateY(0) scaleX(1)} 14%{opacity:.22} 80%{opacity:.07} 100%{opacity:0;transform:translateY(-22px) scaleX(2.2)} }

/* ═══ HERO TRIO BUTTONS ═══ */
.hero-cta-trio { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.btn-hprimary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  background: var(--saffron); color: var(--paper);
  font: 600 13px/1 var(--fb); letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(200,132,44,0.38); transition: all 170ms;
}
.btn-hprimary:hover { background: var(--saffron-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,132,44,.46); }
.btn-hghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  background: transparent; color: var(--maroon);
  border: 1.5px solid rgba(91,26,42,0.32);
  font: 500 13px/1 var(--fb); letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 170ms;
}
.btn-hghost:hover { border-color: var(--maroon); background: rgba(91,26,42,.05); transform: translateY(-2px); }
.btn-hlive {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  background: var(--maroon); color: var(--cream-soft);
  font: 500 13px/1 var(--fb); letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 170ms;
}
.btn-hlive:hover { background: var(--maroon-deep); transform: translateY(-2px); }
.btn-hlive .ldot { width: 8px; height: 8px; border-radius: 50%; background: #5CB85C; animation: sPulse 2s ease-in-out infinite; flex-shrink: 0; }

/* ═══ GLASS INFO STRIP ═══ */
.glass-strip { background: var(--cream-soft); border-bottom: 1px solid var(--hairline); }
.glass-strip .wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding-top: 20px; padding-bottom: 20px; }
.g-card {
  display: flex; align-items: flex-start; gap: 13px; padding: 16px 18px;
  background: rgba(255,252,244,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: 0 2px 12px rgba(42,24,16,0.05);
  transition: transform 180ms, box-shadow 180ms; text-decoration: none;
}
.g-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,24,16,.08); }
.g-ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(200,132,44,.10); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.g-tag { font-family: monospace; font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 3px; display: block; }
.g-title { font-family: var(--fd); font-size: 14px; color: var(--maroon); line-height: 1.2; margin-bottom: 4px; }
.g-sub { font-size: 11.5px; color: var(--ink-soft); line-height: 1.5; }
.g-next { display: inline-block; font-size: 11px; color: var(--saffron-deep); font-weight: 500; margin-top: 6px; }

/* ═══ TEMPLES MAP (Leaflet) ═══ */
.temples-head { padding-top: 56px; padding-bottom: 22px; }
.temples-frame { display: grid; grid-template-columns: 1fr 360px; border-top: 1px solid var(--hairline); }
#tempMap { width: 100%; height: 600px; z-index: 0; }
.temples-sb { border-left: 1px solid var(--hairline); overflow-y: auto; height: 600px; display: flex; flex-direction: column; }
.tsb-hd { padding: 18px 18px 14px; border-bottom: 1px solid var(--hairline); position: sticky; top: 0; background: var(--paper); z-index: 2; }
.tsb-count { font-family: monospace; font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 5px; }
.tsb-h { font-family: var(--fd); font-size: 16px; color: var(--maroon); }
.ti2 { display: flex; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--hairline); cursor: pointer; transition: background 130ms; align-items: flex-start; }
.ti2:hover { background: var(--cream-soft); }
.ti2.active { background: rgba(200,132,44,.06); border-left: 3px solid var(--saffron); padding-left: 13px; }
.ti2-ico { width: 44px; height: 44px; border-radius: 10px; background: var(--cream); border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.ti2-inf .ti2-name { font-family: var(--fd); font-size: 13px; color: var(--maroon); line-height: 1.2; margin-bottom: 2px; }
.ti2-inf .ti2-desc { font-size: 11px; color: var(--ink-mute); line-height: 1.5; margin-bottom: 5px; }
.ti2-dir { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--saffron-deep); font-weight: 500; padding: 2px 9px; background: rgba(200,132,44,.08); border: 1px solid rgba(200,132,44,.2); border-radius: 999px; }
.ti2-dir:hover { background: rgba(200,132,44,.15); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .daily .wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; padding-bottom: 72px; }
  .dvt-svg { max-width: 380px; margin: 0 auto; }
  .hero .wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-sky   { aspect-ratio: 16/9; min-height: 0; }
  .stats-bar .wrap { grid-template-columns: 1fr 1fr; }
  .st-item:nth-child(2) { border-right: none; }
  .st-item:nth-child(3) { padding-left: 0; }
  .t-grid { grid-template-columns: 1fr; }
  .legend .wrap { grid-template-columns: 1fr; }
  .leg-img { aspect-ratio: 16/9; }
  .ql-grid { grid-template-columns: repeat(2,1fr); }
  .temples-frame { grid-template-columns: 1fr; }
  .temples-sb { height: 380px; border-left: none; border-top: 1px solid var(--hairline); }
  #tempMap { height: 420px; }
  .glass-strip .wrap { grid-template-columns: 1fr; }
  .dasara .wrap { grid-template-columns: 1fr; }
  .d-right { display: flex; gap: 32px; justify-content: flex-start; }
  .dharmika .wrap { grid-template-columns: 1fr; }
  .dh-photo { aspect-ratio: 3/2; max-width: 300px; }
  .dh-photo-wrap { align-items: flex-start; }
  .app-dl .wrap { grid-template-columns: 1fr; }
  .app-mock { display: none; }
  .chat-grid { grid-template-columns: 1fr; }
  .footer .wrap.ft { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .status-bar .wrap { padding-left: 20px; padding-right: 20px; }
  .ql-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer .wrap.ft { grid-template-columns: 1fr; }
  .f-bot { flex-direction: column; gap: 6px; text-align: center; }
  .util-r { display: none; }
}

/* ════════════════════════════════════════════
   PREMIUM REFINEMENTS
════════════════════════════════════════════ */

/* ── Global polish ── */
::selection { background: rgba(200,132,44,.20); color: var(--maroon); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb { background: rgba(91,26,42,.22); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(91,26,42,.42); }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }
img { text-rendering: optimizeLegibility; }

/* ── Utility bar ── */
.util-bar { background: var(--maroon-deep); padding: 7px 0; border-bottom: 1px solid rgba(240,204,138,.07); }
.util-bar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 0; padding-bottom: 0; }
.util-l { display: flex; align-items: center; gap: 11px; }
.util-r { display: flex; align-items: center; gap: 6px; }
.util-time { font-family: monospace; font-size: 11.5px; color: rgba(244,236,220,.65); letter-spacing: 0.07em; }
.util-date { font-size: 11px; color: rgba(244,236,220,.38); }
.util-sep  { color: rgba(244,236,220,.16); font-size: 9px; margin: 0 2px; }
.util-lang { font-size: 11px; color: rgba(244,236,220,.42); cursor: pointer; transition: color 130ms; letter-spacing: 0.04em; }
.util-lang.active, .util-lang:hover { color: var(--gold-pale); }
.util-act { font-size: 11px; color: rgba(244,236,220,.62); padding: 4px 10px; border-radius: 7px; transition: color 130ms, background 130ms; }
.util-act:hover { color: var(--gold-pale); background: rgba(240,204,138,.07); }
.util-act-hi { background: var(--saffron) !important; color: var(--paper) !important; border-radius: 999px; font-weight: 500; padding: 4px 13px; font-size: 11px; }
.util-act-hi:hover { background: var(--saffron-deep) !important; }

/* ── Nav: polished ── */
.nav .wrap { padding-top: 14px; padding-bottom: 14px; }
.nav-links a { font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:2px; left:13px; right:13px; height:1.5px; background:var(--saffron); border-radius:1px; transform:scaleX(0); transition:transform 180ms cubic-bezier(.4,0,.2,1); transform-origin:center; }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-links .n { font-size: 9px; color: var(--saffron); opacity: .7; }

/* ── Hero: cinematic scale ── */
.hero { padding: 60px 0 52px; }
.hero .wrap { min-height: calc(100vh - 168px); gap: 60px; }
.hero-badge { font-size: 10px; letter-spacing: 0.1em; padding: 5px 16px; margin-bottom: 22px; }
.hero-kn { font-size: clamp(14px,1.7vw,19px); color: var(--saffron-deep); margin-bottom: 10px; }
.hero-en { font-size: clamp(46px,5.8vw,82px); letter-spacing: -0.03em; line-height: 0.96; margin-bottom: 14px; }
.hero-loc { font-size: 10.5px; letter-spacing: 0.24em; margin-bottom: 24px; }
.hero-loc::before { content:'⊕'; margin-right:8px; color:var(--saffron); font-size:10px; }
.hero-desc { font-size: 15.5px; line-height: 1.80; max-width: 416px; margin-bottom: 36px; }
.hero-sky { box-shadow: 0 36px 90px rgba(91,26,42,.18), 0 4px 18px rgba(91,26,42,.07); aspect-ratio: 9/11; }
.sky-cap { font-size: 12.5px; bottom: 16px; left: 16px; padding: 8px 16px; }
.sky-cap strong { font-size: 15px; }

/* ── Hero CTAs: premium spacing ── */
.btn-hprimary { padding: 15px 32px; font-size: 12px; letter-spacing: 0.09em; }
.btn-hghost   { padding: 14px 28px; font-size: 12px; letter-spacing: 0.09em; }
.btn-hlive    { padding: 14px 26px; font-size: 12px; letter-spacing: 0.09em; }

/* ── Stats: dramatically bolder ── */
.stats-bar .wrap { padding-top: 40px; padding-bottom: 40px; }
.st-num { font-size: clamp(46px,5vw,76px); letter-spacing: -0.04em; }
.st-num sup { font-size: 0.38em; }
.st-item { text-align: center; padding: 0 32px; }
.st-item:first-child { text-align: center; }
.st-kn  { font-size: 10px; letter-spacing: 0.1em; margin-bottom: 7px; }
.st-lab { font-size: 10px; letter-spacing: 0.17em; margin-top: 7px; }

/* ── Glass strip: elevated ── */
.glass-strip .wrap { gap: 16px; padding-top: 24px; padding-bottom: 24px; }
.g-card { padding: 18px 20px; border-radius: 18px; box-shadow: 0 2px 16px rgba(42,24,16,.055); }
.g-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,24,16,.09); }
.g-ico  { width: 44px; height: 44px; border-radius: 12px; }
.g-title { font-size: 15px; margin-bottom: 5px; }
.g-next { font-size: 11.5px; font-weight: 500; letter-spacing: 0.02em; }

/* ── Legend dark: more depth ── */
.legend .wrap { padding-top: 108px; padding-bottom: 108px; }
.leg-body { font-size: 15.5px; line-height: 1.82; }
.leg-q { padding: 20px 26px; font-size: 16px; line-height: 1.6; }
.leg-img { box-shadow: 0 24px 60px rgba(0,0,0,.32); }

/* ── Daily darshan: more air ── */
.daily .wrap { padding-top: 112px; padding-bottom: 112px; gap: 80px; }
.daily-h em { color: var(--saffron-soft) !important; }
.daily-body { font-size: 15.5px; line-height: 1.84; }
.daily-q { padding: 20px 26px; font-size: 15.5px; margin: 28px 0; }

/* ── Timings: premium treatment ── */
.timings .wrap { padding-top: 100px; padding-bottom: 108px; }
.t-grid { margin-top: 48px; gap: 18px; }
.t-card { padding: 26px 22px; border-radius: 20px; }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(91,26,42,.10); }
.t-period { font-size: 19px; }
.t-time { font-size: 13px; letter-spacing: 0.04em; }
.bdg { font-size: 10px; font-weight: 500; letter-spacing: 0.04em; padding: 3px 10px; }
.t-note { border-radius: 14px; padding: 14px 18px; }

/* ── Dasara: more dramatic ── */
.dasara .wrap { padding-top: 84px; padding-bottom: 84px; }
.d-h { font-size: clamp(28px,3.5vw,48px); line-height: 1.04; }
.d-desc { font-size: 15px; line-height: 1.72; }
.d-date { padding: 13px 18px; border-radius: 13px; }
.d-date-val { font-size: 17.5px; }

/* ── Dharmika: spacious ── */
.dharmika .wrap { padding-top: 108px; padding-bottom: 108px; gap: 64px; }
.dh-q { font-size: clamp(18px,2.1vw,24px); line-height: 1.48; margin-bottom: 18px; }
.dh-body { font-size: 15px; line-height: 1.80; }
.dh-qm { font-size: 80px; opacity: .25; }

/* ── Quick links: premium hover ── */
.ql .wrap { padding-top: 108px; padding-bottom: 108px; }
.ql-grid { gap: 14px; margin-top: 48px; }
.ql-card { padding: 26px 22px; border-radius: 20px; transition: transform 220ms cubic-bezier(.16,.8,.2,1), box-shadow 220ms, border-color 160ms; }
.ql-card:hover { border-color: rgba(200,132,44,.52); transform: translateY(-5px); box-shadow: 0 18px 48px rgba(91,26,42,.12); }
.ql-ico { width: 46px; height: 46px; border-radius: 13px; font-size: 20px; }
.ql-title { font-size: 17px; line-height: 1.2; }
.ql-desc { font-size: 12.5px; line-height: 1.6; }
.ql-arr { font-size: 16px; margin-top: 5px; }

/* ── Temples head ── */
.temples-head { padding-top: 64px; padding-bottom: 28px; }
.tsb-h { font-size: 17px; }
.ti2-inf .ti2-name { font-size: 13.5px; }
.ti2:hover { background: var(--cream-soft); }

/* ── App: more premium ── */
.app-h { font-size: clamp(28px,3.3vw,44px); }
.app-desc { font-size: 15px; line-height: 1.72; }
.app-btn { padding: 13px 22px; border-radius: 14px; }

/* ── Chat: polished ── */
.chat .wrap { padding-top: 92px; padding-bottom: 100px; }
.c-card { padding: 28px; border-radius: 22px; }
.c-title { font-size: 22px; }
.c-desc { font-size: 13.5px; line-height: 1.70; }
.c-pill { border-radius: 999px; font-size: 11.5px; }

/* ── Footer ── */
.footer .wrap.ft { padding-top: 76px; padding-bottom: 56px; }
.f-links a { font-size: 13.5px; }
.f-links a:hover { color: var(--gold-pale); letter-spacing: 0.01em; }

/* ── Scroll reveal: silkier ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 740ms ease, transform 740ms cubic-bezier(.16,.8,.2,1); }
.rv.in { opacity: 1; transform: none; }

/* ── kn-lbl: refined ── */
.kn-lbl { font-size: 11.5px; margin-bottom: 12px; letter-spacing: 0.05em; }

/* ── Headings: tighter ── */
.sec-h { letter-spacing: -0.018em; }

/* ── Leaflet Popup: design-matched ── */
.ch-popup .leaflet-popup-content-wrapper {
  border-radius: 16px !important;
  box-shadow: 0 12px 40px rgba(42,24,16,.16), 0 2px 8px rgba(42,24,16,.07) !important;
  border: 1px solid rgba(42,24,16,.09) !important;
  padding: 0 !important;
  overflow: hidden;
}
.ch-popup .leaflet-popup-content { margin: 16px 18px !important; }
.ch-popup .leaflet-popup-close-button {
  color: rgba(42,24,16,.38) !important; font-size: 19px !important;
  top: 7px !important; right: 9px !important;
  width: 26px !important; height: 26px !important; line-height: 26px !important;
  border-radius: 50% !important; transition: all 130ms !important;
}
.ch-popup .leaflet-popup-close-button:hover { color: #5B1A2A !important; background: rgba(91,26,42,.07) !important; }
.ch-popup .leaflet-popup-tip { background: white !important; box-shadow: none !important; }
.t-i { font-size: 12.5px; }
.t-o { font-size: 10px; opacity: .7; }
