/* ============================================================
   KotiGanapati.org — Shared Stylesheet
   Palette: Spiritual Red (sindoor) · Turmeric (gold) · White space
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Spline+Sans:wght@400;500;600;700&display=swap');

:root {
  --red: #b71c1c; --red-deep: #8e1414; --red-bright: #d62828;
  --turmeric: #e8a31c; --turmeric-soft: #f4c542; --turmeric-pale: #fdf3dc;
  --cream: #fffaf2; --ink: #2a1a14; --ink-soft: #5c4a42; --white: #ffffff;
  --line: #efe2d0;
  --shadow-sm: 0 2px 12px rgba(140,30,20,0.06);
  --shadow-md: 0 12px 40px rgba(140,30,20,0.10);
  --shadow-lg: 0 24px 70px rgba(140,30,20,0.16);
  --maxw: 1180px;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Spline Sans', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.15; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* HEADER / NAV */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,250,242,0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 3px 10px rgba(140,30,20,0.2); border: 2px solid var(--turmeric-soft); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .b1 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--red); }
.brand-text .b2 { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--turmeric); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { display: block; padding: 9px 14px; border-radius: 999px; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); transition: all 0.2s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--red); background: var(--turmeric-pale); }
.nav-links a.active { color: var(--white); background: var(--red); }
.has-drop > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.22s ease; list-style: none; z-index: 210; }
.nav-links > li:last-child .dropdown { left: auto; right: 0; }
.has-drop:hover .dropdown, .has-drop.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { border-radius: 9px; padding: 10px 14px; font-size: 0.9rem; }
.dropdown a:hover { background: var(--turmeric-pale); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--red); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; overflow-y: auto; }
  .nav-links.open { max-height: 80vh; padding: 12px 0; }
  .nav-links a { margin: 2px 16px; padding: 12px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0 16px; min-width: auto; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .has-drop.open .dropdown { max-height: 500px; }
  .has-drop > a::after { float: right; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 30px; border-radius: 999px; font-family: var(--body); font-weight: 600; font-size: 0.96rem; cursor: pointer; border: none; transition: transform 0.2s ease, box-shadow 0.2s ease; text-align: center; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 22px rgba(183,28,28,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(183,28,28,0.42); }
.btn-gold { background: var(--turmeric); color: var(--ink); box-shadow: 0 8px 22px rgba(232,163,28,0.34); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,163,28,0.46); }
.btn-ghost { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-ghost:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* HERO CAROUSEL */
.hero { position: relative; min-height: 84vh; display: flex; background: linear-gradient(135deg,#fff7ea 0%,#fdeede 50%,#fce4d6 100%); overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(183,28,28,0.06) 1px, transparent 0); background-size:28px 28px; pointer-events:none; }
.carousel { position: relative; width: 100%; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; position: relative; }
.slide-inner { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; width: 100%; }
.slide-tag { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--white); color: var(--red); padding: 8px 18px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.slide-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turmeric); }
.slide h1 { font-size: clamp(2.3rem,5vw,3.8rem); font-weight: 700; margin-bottom: 18px; color: var(--red-deep); }
.slide h1 em { font-style: italic; color: var(--turmeric); }
.slide p { font-size: 1.12rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-visual { display: flex; align-items: center; justify-content: center; }
.slide-medallion { width: clamp(220px,30vw,340px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff6e6, #fae3c8); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg), inset 0 0 0 12px rgba(255,255,255,0.6); border: 3px solid var(--turmeric-soft); position: relative; }
.slide-medallion::after { content:''; position:absolute; inset:-16px; border-radius:50%; border:1.5px dashed rgba(232,163,28,0.5); }
.slide-medallion img { width: 78%; height: 78%; object-fit: contain; border-radius: 50%; }
.carousel-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.carousel-dots button { width: 11px; height: 11px; border-radius: 50%; border: none; cursor: pointer; background: rgba(183,28,28,0.25); transition: all 0.3s ease; padding: 0; }
.carousel-dots button.active { background: var(--red); width: 30px; border-radius: 999px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: var(--white); border: none; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-md); color: var(--red); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.carousel-arrow:hover { background: var(--red); color: var(--white); }
.carousel-arrow.prev { left: 18px; } .carousel-arrow.next { right: 18px; }
@media (max-width: 860px) {
  .slide-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .slide-tag, .slide h1 { align-self: center; }
  .slide-actions { justify-content: center; }
  .slide-visual { order: -1; }
  .carousel-arrow { display: none; }
  .hero { min-height: auto; padding: 20px 0 60px; }
}

/* SECTIONS */
.section { padding: 84px 0; }
.section.tint { background: var(--turmeric-pale); }
.section.red-tint { background: linear-gradient(160deg,#fef6ec,#fdeede); }
.section.ink-bg { background: var(--ink); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.eyebrow { display: inline-block; color: var(--turmeric); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem,3.6vw,2.8rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* TWO TOURS */
.tours { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tour-card { background: var(--white); border-radius: 22px; padding: 38px; box-shadow: var(--shadow-md); border: 1px solid var(--line); position: relative; overflow: hidden; }
.tour-card::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; }
.tour-card.done::before { background: linear-gradient(90deg,var(--turmeric),var(--turmeric-soft)); }
.tour-card.live::before { background: linear-gradient(90deg,var(--red),var(--red-bright)); }
.tour-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.tour-badge.done { background: var(--turmeric-pale); color: var(--turmeric); }
.tour-badge.live { background: #fde8e8; color: var(--red); }
.tour-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.tour-card p { color: var(--ink-soft); margin-bottom: 18px; }
.tour-card ul { list-style: none; }
.tour-card li { padding: 7px 0 7px 26px; position: relative; color: var(--ink-soft); font-size: 0.96rem; }
.tour-card li::before { content: '\0950'; position: absolute; left: 0; color: var(--turmeric); font-weight: 700; }

/* LADDER */
.ladder { display: flex; flex-direction: column; gap: 18px; max-width: 880px; margin: 0 auto; }
.rung { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; background: var(--white); border-radius: 18px; padding: 28px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.rung:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.rung-num { font-family: var(--display); font-weight: 700; }
.rung-num .big { display: block; font-size: 2.4rem; color: var(--red); line-height: 1; }
.rung-num .label { font-size: 0.84rem; color: var(--turmeric); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.rung-body h4 { font-size: 1.18rem; margin-bottom: 6px; }
.rung-body p { color: var(--ink-soft); font-size: 0.98rem; }
.rung.tier-1 { border-left: 5px solid var(--turmeric-soft); }
.rung.tier-2 { border-left: 5px solid var(--turmeric); }
.rung.tier-3 { border-left: 5px solid var(--red); }
@media (max-width: 720px) { .tours { grid-template-columns: 1fr; } .rung { grid-template-columns: 1fr; gap: 12px; text-align: center; } .rung:hover { transform: none; } }

/* TIMELINE */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before { content:''; position:absolute; left:8px; top:8px; bottom:8px; width:2px; background: linear-gradient(var(--turmeric),var(--red)); }
.tl-item { position: relative; padding: 0 0 38px 24px; }
.tl-item::before { content:''; position:absolute; left:-34px; top:4px; width:18px; height:18px; border-radius:50%; background:var(--white); border:3px solid var(--turmeric); box-shadow:0 0 0 4px var(--turmeric-pale); }
.tl-item.confirmed::before { border-color: var(--red); box-shadow: 0 0 0 4px #fde8e8; }
.tl-item.finale::before { background: var(--red); border-color: var(--red); }
.tl-date { font-weight: 700; color: var(--red); font-size: 0.92rem; letter-spacing: 0.04em; }
.tl-item h4 { font-size: 1.22rem; margin: 4px 0 6px; }
.tl-item p { color: var(--ink-soft); font-size: 0.97rem; }
.tl-status { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 11px; border-radius: 999px; margin-top: 8px; }
.tl-status.tbd { background: var(--turmeric-pale); color: var(--turmeric); }
.tl-status.set { background: #fde8e8; color: var(--red); }

/* CARDS GRID */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.card { background: var(--white); border-radius: 20px; padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--turmeric-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* GURUJI */
.guruji { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.guruji-photo { aspect-ratio: 3/4; border-radius: 24px; background: linear-gradient(160deg,var(--turmeric-pale),#fae3c8); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); border: 1px solid var(--line); overflow: hidden; position: relative; }
.guruji-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.guruji-photo .placeholder { text-align: center; color: var(--turmeric); padding: 20px; }
.guruji-photo .placeholder span { font-size: 3rem; display: block; margin-bottom: 10px; }
.guruji-body .eyebrow { text-align: left; }
.guruji-body h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); margin-bottom: 8px; }
.guruji-role { color: var(--turmeric); font-weight: 600; margin-bottom: 18px; font-size: 1.05rem; }
.guruji-body p { color: var(--ink-soft); margin-bottom: 14px; }
@media (max-width: 820px) { .guruji { grid-template-columns: 1fr; gap: 30px; } }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg,var(--red),var(--red-deep)); border-radius: 28px; padding: 56px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-band::before { content: '\0950'; position: absolute; font-size: 16rem; opacity: 0.07; top: 50%; right: 6%; transform: translateY(-50%); font-family: var(--display); }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem,3.4vw,2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg,#fff7ea,#fce4d6); padding: 72px 0 64px; text-align: center; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 1px 1px, rgba(183,28,28,0.06) 1px, transparent 0); background-size:28px 28px; }
.page-hero .inner { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem,4.5vw,3.4rem); color: var(--red-deep); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 600px; margin: 0 auto; }

/* PROSE */
.prose { max-width: 760px; margin: 0 auto; }
.prose h3 { font-size: 1.5rem; margin: 36px 0 12px; color: var(--red); }
.prose p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.04rem; }
.prose .lead { font-size: 1.2rem; color: var(--ink); font-family: var(--display); line-height: 1.5; }

/* MANTRA */
.mantra { background: var(--white); border: 2px solid var(--turmeric-soft); border-radius: 20px; padding: 34px; text-align: center; max-width: 620px; margin: 30px auto; box-shadow: var(--shadow-sm); }
.mantra .sanskrit { font-family: var(--display); font-size: 1.7rem; color: var(--red); margin-bottom: 8px; }
.mantra .translit { color: var(--ink-soft); font-style: italic; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ci { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--turmeric-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-row h4 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-row p, .contact-row a { color: var(--ink-soft); font-size: 0.98rem; }
.contact-row a:hover { color: var(--red); }
.invite-box { background: var(--white); border-radius: 22px; padding: 38px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.invite-box h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--red); }
.invite-box p { color: var(--ink-soft); margin-bottom: 22px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== CHANT COUNTER ===== */
.counter-band { background: linear-gradient(135deg,#fff3df,#fde3cb); border-radius: 28px; padding: 54px; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.counter-band::before, .counter-band::after { content:'\0950'; position:absolute; font-family:var(--display); opacity:0.06; font-size:12rem; color:var(--red); }
.counter-band::before { left: 4%; top: 50%; transform: translateY(-50%); }
.counter-band::after { right: 4%; top: 50%; transform: translateY(-50%); }
.counter-band .eyebrow { position: relative; }
.counter-num { position: relative; font-family: var(--display); font-weight: 700; font-size: clamp(3rem,9vw,6rem); color: var(--red); line-height: 1; margin: 6px 0; letter-spacing: -0.02em; }
.counter-sub { position: relative; color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 26px; }
.counter-bar { position: relative; max-width: 620px; height: 16px; margin: 0 auto 14px; background: var(--white); border-radius: 999px; overflow: hidden; box-shadow: inset 0 1px 4px rgba(140,30,20,0.12); border: 1px solid var(--line); }
.counter-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg,var(--turmeric),var(--red)); border-radius: 999px; transition: width 1.6s cubic-bezier(.22,.61,.36,1); }
.counter-goal { position: relative; font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }

/* ===== POOJAS GRID ===== */
.pooja-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.pooja-grid.home-3 { grid-template-columns: repeat(3,1fr); }
.pooja-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; }
.pooja-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pooja-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(160deg,var(--turmeric-pale),#fae3c8); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pooja-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pooja-thumb .ph-icon { font-size: 2.6rem; color: var(--turmeric); }
.pooja-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pooja-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(42,26,20,0.18); transition: background 0.2s ease; }
.pooja-card:hover .pooja-play { background: rgba(42,26,20,0.32); }
.pooja-play .pbtn { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.94); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.pooja-play .pbtn::after { content:''; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--red); margin-left: 4px; }
.pooja-num { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; z-index: 2; }
.pooja-body { padding: 20px 22px 24px; }
.pooja-body h4 { font-size: 1.12rem; margin-bottom: 6px; line-height: 1.3; }
.pooja-date { color: var(--turmeric); font-weight: 600; font-size: 0.84rem; letter-spacing: 0.03em; }
.pooja-empty { grid-column: 1 / -1; text-align: center; padding: 50px; color: var(--ink-soft); background: var(--white); border-radius: 18px; border: 1px dashed var(--line); }
@media (max-width: 900px) { .pooja-grid, .pooja-grid.home-3 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .pooja-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== SCRIPTURE BOX (Devanagari + translit + meaning + explanation) ===== */
.scripture { background: var(--white); border: 1px solid var(--turmeric-soft); border-left: 5px solid var(--turmeric); border-radius: 16px; padding: 28px 32px; margin: 28px auto; max-width: 760px; box-shadow: var(--shadow-sm); }
.scripture .src { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--turmeric); margin-bottom: 14px; }
.scripture .sans { font-family: var(--display); font-size: 1.4rem; line-height: 1.6; color: var(--red); margin-bottom: 10px; }
.scripture .translit { font-style: italic; color: var(--ink-soft); margin-bottom: 10px; font-size: 1rem; }
.scripture .meaning { color: var(--ink); font-weight: 500; margin-bottom: 14px; }
.scripture .explain { color: var(--ink-soft); font-size: 0.98rem; border-top: 1px dashed var(--line); padding-top: 14px; }
.scripture .ref { display: block; margin-top: 12px; font-size: 0.82rem; }
.scripture .ref a { color: var(--turmeric); text-decoration: underline; }

/* ===== JAPA LADDER (counts) ===== */
.japa-ladder { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.japa-step { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px 28px; box-shadow: var(--shadow-sm); }
.japa-step .scale { font-family: var(--display); font-weight: 700; color: var(--red); }
.japa-step .scale .big { display: block; font-size: 1.9rem; line-height: 1; }
.japa-step .scale .sub { font-size: 0.8rem; color: var(--turmeric); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.japa-step p { color: var(--ink-soft); font-size: 0.97rem; }
@media (max-width: 680px) { .japa-step { grid-template-columns: 1fr; gap: 8px; text-align: center; } }

/* ===== POOJA TABS ===== */
.pooja-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.pooja-tab { padding: 11px 28px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); font-family: var(--body); font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); cursor: pointer; transition: all 0.2s ease; }
.pooja-tab:hover { border-color: var(--turmeric); color: var(--red); }
.pooja-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }
.pooja-status { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 30px; }
.pooja-pane { display: none; }
.pooja-pane.active { display: block; }
.load-more-wrap { text-align: center; margin-top: 44px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: linear-gradient(160deg,var(--turmeric-pale),#fae3c8); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; border: 1px solid var(--line); transition: transform 0.25s ease; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .gph { color: var(--turmeric); font-size: 2rem; }
.gallery-item .gcap { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 14px 12px; background: linear-gradient(transparent, rgba(42,26,20,0.7)); color: var(--white); font-size: 0.84rem; opacity: 0; transition: opacity 0.25s ease; }
.gallery-item:hover .gcap { opacity: 1; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(20,10,6,0.9); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-inner .frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; }
.lightbox-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.92); border: none; width: 46px; height: 46px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; color: var(--red); }

/* ===== NEWS ===== */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.news-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-top { aspect-ratio: 16/9; background: linear-gradient(160deg,var(--turmeric-pale),#fae3c8); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--turmeric); }
.news-top img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px 24px 28px; }
.news-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--turmeric); margin-bottom: 8px; }
.news-body h3 { font-size: 1.2rem; margin-bottom: 8px; line-height: 1.3; }
.news-body p { color: var(--ink-soft); font-size: 0.95rem; }
.news-date { display: block; margin-top: 14px; font-size: 0.82rem; color: var(--ink-soft); opacity: 0.8; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card { background: var(--white); border-radius: 20px; padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.testi-card::before { content: '\201C'; font-family: var(--display); font-size: 4rem; color: var(--turmeric-soft); line-height: 1; position: absolute; top: 14px; right: 22px; opacity: 0.6; }
.testi-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 20px; font-size: 1rem; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--turmeric-pale); display: flex; align-items: center; justify-content: center; color: var(--turmeric); font-weight: 700; font-family: var(--display); }
.testi-who h4 { font-size: 1rem; margin-bottom: 1px; }
.testi-who span { font-size: 0.84rem; color: var(--turmeric); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 26px; font-family: var(--body); font-weight: 600; font-size: 1.05rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--turmeric-pale); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: transform 0.25s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ===== FORMS ===== */
.form-card { background: var(--white); border-radius: 22px; padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--line); max-width: 680px; margin: 0 auto; }
.form-row { margin-bottom: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--body); font-size: 0.98rem; color: var(--ink); background: var(--cream); transition: border-color 0.2s ease; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--turmeric); }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.86rem; color: var(--ink-soft); margin-top: 16px; text-align: center; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }

/* NEWSLETTER */
.news-signup { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.news-signup input { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 999px; border: none; font-family: var(--body); font-size: 0.98rem; }

/* FOOTER */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 30px; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--turmeric); }
.footer-brand .b1 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--white); }
.site-footer p { font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; font-family: var(--body); font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--turmeric-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; text-align: center; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 420px) { .footer-grid { grid-template-columns: 1fr; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
