/* =========================================================
   SARAL POOJA — Stylesheet
   Design language: temple sandstone + sindoor + marigold brass.
   Headings: Marcellus (carved, architectural serif)
   Body: Work Sans (clean, modern, highly legible)
   ========================================================= */

:root{
  /* --- Color tokens --- */
  --ink:        #2B1B1E;   /* deep maroon-black text */
  --ink-soft:   #5B4448;   /* secondary text */
  --maroon:     #7A1F2B;   /* primary brand — sindoor red */
  --maroon-dark:#5C1620;   /* hover / pressed */
  --gold:       #C8922A;   /* marigold / turmeric accent */
  --gold-light: #E8B84B;   /* highlight */
  --brass:      #8A6D3B;   /* secondary line / icon tone */
  --sandstone:  #F6EEE0;   /* page background */
  --sandstone-2:#EFE4D0;   /* slightly deeper background band */
  --card:       #FFFBF3;   /* card / surface background */
  --line:       rgba(122,31,43,0.14);
  --line-soft:  rgba(138,109,59,0.30);
  --shadow:     0 12px 30px -18px rgba(43,27,30,0.35);

  /* --- Type --- */
  --font-display: "Marcellus", "Cormorant Garamond", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-arch: 18px 18px 4px 4px; /* doorway / arch feel on cards */
}

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

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  background: var(--sandstone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--maroon-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}

h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3{ font-size: 1.35rem; }

p{ margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }

.container{
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section{ padding: 88px 0; }

.section-tight{ padding: 56px 0; }

.section-head{
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head p{ font-size: 1.05rem; }

.bg-band{ background: var(--sandstone-2); }
.bg-maroon{ background: var(--maroon); color: #F6EEE0; }
.bg-maroon h1, .bg-maroon h2, .bg-maroon h3{ color: #F9E9C8; }
.bg-maroon p{ color: #E9D3D6; }

/* =========================================================
   SKIP LINK / FOCUS
   ========================================================= */
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--maroon); color:#fff;
  padding:10px 16px; z-index:200; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(246,238,224,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--maroon-dark);
}
.brand svg{ width:30px; height:30px; flex-shrink:0; }
.brand img{ width:38px; height:38px; flex-shrink:0; object-fit:contain; border-radius:6px; }

.nav-links{
  display:flex; align-items:center; gap:30px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  font-size: 0.97rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nav-links a:hover{ color: var(--maroon); }
.nav-links a.active{ color: var(--maroon); border-color: var(--gold); }

.nav-cta{
  background: var(--maroon);
  color: #F9E9C8 !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  border-bottom: none !important;
  transition: background .2s ease;
}
.nav-cta:hover{ background: var(--maroon-dark); }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width: 40px; height:40px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:""; display:block; width:22px; height:2px; background:var(--maroon-dark);
  position:relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle::before{ transform: translateY(-7px); }
.nav-toggle::after{ transform: translateY(5px); }
.nav-toggle.open span{ opacity:0; }
.nav-toggle.open::before{ transform: rotate(45deg); }
.nav-toggle.open::after{ transform: rotate(-45deg) translateY(0); top:-2px; }

@media (max-width: 960px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background: var(--card);
    flex-direction:column; align-items:flex-start;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    display:none;
    gap: 14px;
  }
  .nav-links.open{ display:flex; }
  .nav-cta{ margin-top:6px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-family: var(--font-body);
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{ background: var(--maroon); color: #F9E9C8; }
.btn-primary:hover{ background: var(--maroon-dark); }

.btn-ghost{
  background: transparent; color: var(--maroon-dark);
  border-color: var(--line-soft);
}
.btn-ghost:hover{ border-color: var(--maroon); }

.btn-gold{ background: var(--gold); color: #3B2405; }
.btn-gold:hover{ background: var(--gold-light); }

.btn-row{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 28px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding: 72px 0 0;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:center;
}
.hero-eyebrow{
  color: var(--brass);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero p.lede{ font-size: 1.15rem; max-width: 46ch; }

.hero-art{ display:flex; justify-content:center; }
.hero-art svg{ width: 100%; max-width: 420px; height:auto; }
.hero-art img{ width:100%; max-width:420px; height:auto; border-radius:20px; box-shadow:0 24px 60px -18px rgba(92,22,32,0.35); }

/* App screenshots gallery */
.app-shots{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:10px; }
.app-shots figure{ margin:0; text-align:center; }
.app-shots img{
  width:100%; height:auto; border-radius:18px;
  border:1px solid var(--line);
  box-shadow:0 18px 44px -20px rgba(92,22,32,0.3);
}
.app-shots figcaption{ margin-top:12px; font-size:0.95rem; color:var(--ink); }
@media (max-width: 900px){ .app-shots{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 480px){ .app-shots{ grid-template-columns:1fr; max-width:320px; margin-inline:auto; } }
.footer-brand img{ width:34px; height:34px; vertical-align:middle; margin-right:8px; border-radius:6px; }
.cta-art{ display:flex; justify-content:center; }
.cta-art img{ width:100%; max-width:300px; height:auto; border-radius:16px; box-shadow:0 20px 50px -18px rgba(0,0,0,0.45); }

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; max-width: 280px; margin: 0 auto 12px; }
}

/* Signature temple-skyline divider — used once, deliberately */
.temple-divider{
  width:100%; height: 30px;
  margin-top: 56px;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 60px 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='30' viewBox='0 0 60 30'><path d='M0 30 L0 20 L12 20 L12 14 L22 14 L22 8 L27 8 A3 3 0 0 1 33 8 L38 8 L38 14 L48 14 L48 20 L60 20 L60 30 Z' fill='%238A6D3B' opacity='0.55'/></svg>");
}

/* =========================================================
   CARDS — service cards use an "arch/doorway" silhouette
   ========================================================= */
.grid{
  display:grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grid{ grid-template-columns: 1fr; } }

.grid-3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px){ .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .grid-3{ grid-template-columns: 1fr; } }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-arch);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.card .icon{
  font-size: 1.8rem;
  display:inline-flex;
  width: 52px; height:52px;
  align-items:center; justify-content:center;
  background: var(--sandstone-2);
  border-radius: 14px 14px 4px 4px;
  margin-bottom: 16px;
}

.card h3{ margin-bottom: 8px; font-size: 1.2rem; }
.card p{ font-size: 0.96rem; margin-bottom: 0; }
.card .avail{
  display:block; margin-top:10px; font-size: 0.82rem; color: var(--brass);
  font-style: italic;
}

/* =========================================================
   STEPS (How it works) — numbering is justified: real sequence
   ========================================================= */
.steps{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  counter-reset: step;
}
@media (max-width: 860px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr;} }

.steps.steps-2{ grid-template-columns: 1fr 1fr; margin-top: 8px; }
@media (max-width: 620px){ .steps.steps-2{ grid-template-columns: 1fr; } }

.step{ position:relative; padding-top: 8px; }
.step::before{
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display:block;
  margin-bottom: 6px;
}
.step h3{ margin-bottom:6px; }
.step p{ font-size: 0.95rem; }

/* =========================================================
   WHY / FEATURE LIST
   ========================================================= */
.feature{
  display:flex; gap:16px; align-items:flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child{ border-bottom:none; }
.feature .icon{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  background: var(--maroon); color:#F9E9C8;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.1rem;
}
.feature h3{ font-size: 1.1rem; margin-bottom:4px; }
.feature p{ margin:0; font-size:0.95rem; }

/* =========================================================
   APP / CONTACT CTA BAND
   ========================================================= */
.cta-band{
  background: var(--maroon);
  border-radius: 24px;
  padding: 56px;
  color: #F9E9C8;
  display:grid; grid-template-columns: 1.3fr 0.9fr; gap: 32px; align-items:center;
}
.cta-band h2{ color:#F9E9C8; margin-bottom: 10px; }
.cta-band p{ color:#E9D3D6; }
@media (max-width: 780px){ .cta-band{ grid-template-columns:1fr; padding: 36px 24px; text-align:left;} }

.placeholder-note{
  font-size: 0.8rem; color: var(--brass); font-style: italic; margin-top: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: #E7D9C8;
  padding: 64px 0 28px;
  margin-top: 40px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px;
}
@media (max-width: 780px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-grid h4{
  font-family: var(--font-body); font-weight:600; font-size:0.85rem;
  letter-spacing: 0.03em; color: #C8922A; margin-bottom: 16px;
}
.footer-brand{ font-family: var(--font-display); font-size:1.4rem; color:#F9E9C8; margin-bottom:10px; }
.footer-grid p, .footer-grid a{ color:#C9B9A8; font-size:0.92rem; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-grid a:hover{ color:#F9E9C8; }

.footer-bottom{
  max-width:1160px; margin: 40px auto 0; padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; color:#9C8A79;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

/* =========================================================
   LEGAL / POLICY PAGES
   ========================================================= */
.legal-header{
  background: var(--sandstone-2);
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}
.legal-header .dates{ color: var(--brass); font-size: 0.92rem; }

.legal-body{ padding: 56px 0 96px; }
.legal-layout{ display:grid; grid-template-columns: 260px 1fr; gap: 56px; align-items:start; }
@media (max-width: 900px){ .legal-layout{ grid-template-columns: 1fr; } }

.legal-toc{
  position: sticky; top: 100px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-arch);
  padding: 20px;
  max-height: 70vh;
  overflow-y:auto;
}
.legal-toc h4{ font-size:0.82rem; letter-spacing:0.03em; color:var(--brass); margin-bottom:12px; }
.legal-toc ol{ margin:0; padding-left: 18px; display:flex; flex-direction:column; gap:8px; }
.legal-toc a{ font-size: 0.86rem; color: var(--ink-soft); }
.legal-toc a:hover{ color: var(--maroon); }

.legal-content h2{
  font-size: 1.3rem; margin-top: 40px; padding-top: 6px;
  scroll-margin-top: 100px;
}
.legal-content h2:first-child{ margin-top:0; }
.legal-content p{ max-width: 74ch; font-size:0.98rem; }
.legal-content ul{ max-width:74ch; color:var(--ink-soft); font-size:0.98rem; padding-left: 20px; }
.legal-content li{ margin-bottom:6px; }
.legal-content .addr{
  background: var(--card); border:1px solid var(--line); border-left:3px solid var(--gold);
  padding: 16px 20px; border-radius: 4px 14px 14px 4px; max-width: 46ch;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } }

.form-field{ margin-bottom: 18px; }
.form-field label{ display:block; font-size:0.88rem; margin-bottom:6px; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--line-soft); background: var(--card);
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink);
}
.form-field textarea{ min-height: 120px; resize: vertical; }
.form-field.field-invalid input,
.form-field.field-invalid textarea,
.form-field.field-invalid select{
  border-color: #C0492E;
  box-shadow: 0 0 0 3px rgba(192,73,46,0.12);
}
.form-note{
  font-size:0.85rem; color: var(--brass); font-style: italic; margin-top: 6px;
}
.form-success{
  display:none; background: #EAF3E5; border:1px solid #B9D6A9; color:#33532A;
  padding: 14px 18px; border-radius: 10px; margin-top: 16px; font-size:0.92rem;
}
.form-success.show{ display:block; }

.form-error{
  display:none; background: #F7E6E2; border:1px solid #E3B3A6; color:#7A2B1B;
  padding: 14px 18px; border-radius: 10px; margin-top: 16px; font-size:0.92rem;
}
.form-error.show{ display:block; }

.contact-card{
  background: var(--card); border:1px solid var(--line); border-top:3px solid var(--gold);
  border-radius: var(--radius-arch); padding: 28px;
}
.contact-line{ display:flex; gap:14px; align-items:flex-start; padding: 14px 0; border-bottom:1px solid var(--line); }
.contact-line:last-child{ border-bottom:none; }
.contact-line .icon{ font-size:1.3rem; }
.contact-line h4{ font-family:var(--font-body); font-weight:600; font-size:0.85rem; margin:0 0 2px; color:var(--ink); }
.contact-line p{ margin:0; font-size:0.94rem; }

/* =========================================================
   MISC PAGE HEADERS (about / services / how-it-works / download)
   ========================================================= */
.page-header{
  padding: 70px 0 30px;
}
.page-header .kicker{ color: var(--brass); font-size:0.95rem; margin-bottom: 10px; }

.disclaimer-box{
  background: var(--sandstone-2);
  border-left: 3px solid var(--maroon);
  border-radius: 4px 14px 14px 4px;
  padding: 22px 26px;
  margin-top: 20px;
}
.disclaimer-box p{ margin:0; font-size:0.95rem; }

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center;
}
@media (max-width: 860px){ .split{ grid-template-columns:1fr; } }

.avail-list{ columns: 2; column-gap: 32px; padding-left:18px; color:var(--ink-soft); }
@media (max-width:640px){ .avail-list{ columns:1; } }
.avail-list li{ break-inside: avoid; margin-bottom:8px; }

.badge{
  display:inline-block; font-size:0.78rem; padding:4px 12px; border-radius:999px;
  background: var(--sandstone-2); color: var(--brass); border:1px solid var(--line-soft);
  margin-bottom: 14px;
}

/* =========================================================
   SECTION EYEBROW — small gold-ruled label above headings
   ========================================================= */
.eyebrow{
  display:flex; align-items:center; gap:10px;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width: 34px; height: 1px; background: var(--gold); flex-shrink:0;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }

/* =========================================================
   POOJA CATALOGUE — expandable detail cards (native <details>)
   ========================================================= */
.pooja-group{ margin-bottom: 56px; }
.pooja-group:last-child{ margin-bottom: 0; }
.pooja-group > h2{ margin-bottom: 6px; }
.pooja-group > .group-note{ font-size: 0.95rem; color: var(--brass); margin-bottom: 26px; }

.pooja-list{ display:flex; flex-direction:column; gap: 16px; max-width: 900px; }

.pooja{
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 6px 16px 16px 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pooja[open]{ box-shadow: 0 24px 50px -24px rgba(43,27,30,0.45); }
.pooja:hover{ border-left-color: var(--maroon); }

.pooja > summary{
  display:flex; align-items:center; gap: 18px;
  padding: 16px 20px; cursor: pointer;
  list-style: none;
}
.pooja > summary::-webkit-details-marker{ display:none; }
.pooja > summary:focus-visible{ outline: 2px solid var(--gold); outline-offset: -3px; }

.pooja-thumb{
  width: 84px; height: 84px; flex-shrink:0;
  border-radius: 10px; object-fit: cover; object-position: right center;
  border: 1px solid var(--line);
}
.pooja-sum-text{ flex: 1; min-width: 0; }
.pooja-name{
  display:block; font-family: var(--font-display); color: var(--maroon-dark);
  font-size: 1.15rem; line-height: 1.2; margin-bottom: 3px;
}
.pooja-teaser{
  display:block; font-size: 0.92rem; color: var(--ink-soft);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pooja-chev{
  flex-shrink:0; width: 30px; height: 30px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--sandstone-2); color: var(--maroon);
  font-size: 0.8rem; transition: transform .25s ease, background .2s ease;
}
.pooja[open] .pooja-chev{ transform: rotate(180deg); background: var(--gold-light); }

.pooja-detail{
  display:grid; grid-template-columns: 300px 1fr; gap: 28px;
  padding: 6px 20px 26px; align-items:start;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}
.pooja-detail-media{ margin: 18px 0 0; }
.pooja-detail-media img{
  width: 100%; border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 14px 30px -18px rgba(43,27,30,0.4);
}
.pooja-detail-body{ padding-top: 18px; }
.pooja-detail-body > p:first-child{ margin-top: 0; }
.pooja-detail-body h4{
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass);
  margin: 20px 0 10px;
}
.pooja-benefits{
  list-style: none; margin: 0 0 6px; padding: 0;
  display:grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
.pooja-benefits li{
  position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--ink-soft);
}
.pooja-benefits li::before{
  content:"✦"; position:absolute; left: 0; top: 1px; color: var(--gold); font-size: 0.85rem;
}
.pooja-detail .btn-row{ margin-top: 22px; }
.pooja-detail .avail{
  display:block; margin-top: 14px; font-size: 0.82rem; color: var(--brass); font-style: italic;
}

@media (max-width: 820px){
  .pooja-detail{ grid-template-columns: 1fr; gap: 4px; }
  .pooja-detail-media{ max-width: 420px; }
}
@media (max-width: 680px){
  .pooja-detail{ padding: 4px 16px 22px; }
  .pooja-detail-media{ margin-top: 14px; }
  .pooja-detail-body{ padding-top: 14px; }
  .pooja-benefits{ grid-template-columns: 1fr; }
  .pooja > summary{ gap: 14px; padding: 14px 16px; }
  .pooja-thumb{ width: 64px; height: 64px; }
  .pooja-name{ font-size: 1.05rem; }
  .svc > summary{ padding: 18px; }
  .svc-body{ padding: 0 18px 18px; }
}

/* =========================================================
   POOJA SHOWCASE — homepage visual gallery
   ========================================================= */
.showcase-grid{
  display:grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px){ .showcase-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .showcase-grid{ grid-template-columns: 1fr; } }

.showcase-card{
  display:block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.showcase-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(43,27,30,0.45);
}
.showcase-frame{ overflow: hidden; background: var(--sandstone-2); }
.showcase-frame img{
  width: 100%; height: auto; display: block;
  transition: transform .5s ease;
}
.showcase-card:hover .showcase-frame img{ transform: scale(1.03); }
.showcase-label{ padding: 15px 18px 17px; }
.showcase-label b{
  display:block; font-family: var(--font-display); color: var(--maroon-dark);
  font-size: 1.08rem; line-height: 1.2; margin-bottom: 3px;
}
.showcase-label span{ font-size: 0.86rem; color: var(--ink-soft); }

/* =========================================================
   SHOP / POOJA KITS
   ========================================================= */
.shop-grid{
  display:grid; gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 760px){ .shop-grid{ grid-template-columns: 1fr; } }

.kit-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  display:flex; flex-direction: column;
}
.kit-card .kit-media{ background: var(--sandstone-2); }
.kit-card .kit-media img{ width: 100%; height: auto; }
.kit-body{ padding: 24px; display:flex; flex-direction:column; flex:1; }
.kit-body h3{ margin-bottom: 8px; }
.kit-body p{ font-size: 0.95rem; }
.kit-body h4{
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass);
  margin: 14px 0 8px;
}
.kit-includes{ list-style:none; margin:0 0 18px; padding:0; }
.kit-includes li{
  position:relative; padding-left: 20px; font-size: 0.9rem; color: var(--ink-soft);
  margin-bottom: 5px;
}
.kit-includes li::before{
  content:"✓"; position:absolute; left:0; color: var(--gold); font-weight:700;
}
.kit-body .btn-row{ margin-top: auto; }

/* =========================================================
   SERVICE CARDS — expandable (native <details>) in a grid
   ========================================================= */
.svc-grid{
  display:grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}
@media (max-width: 720px){ .svc-grid{ grid-template-columns: 1fr; } }

.svc{
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.svc[open]{ box-shadow: 0 22px 46px -24px rgba(43,27,30,0.45); }

.svc > summary{
  display:flex; align-items:flex-start; gap: 14px;
  padding: 22px; cursor: pointer; list-style: none;
}
.svc > summary::-webkit-details-marker{ display:none; }
.svc > summary:focus-visible{ outline: 2px solid var(--gold); outline-offset: -3px; }

.svc-icon{
  flex-shrink:0; font-size: 1.5rem;
  width: 48px; height: 48px;
  display:flex; align-items:center; justify-content:center;
  background: var(--sandstone-2);
  border-radius: 14px 14px 4px 4px;
}
.svc-head{ flex: 1; min-width: 0; }
.svc-name{
  display:block; font-family: var(--font-display); color: var(--maroon-dark);
  font-size: 1.15rem; line-height: 1.2; margin-bottom: 3px;
}
.svc-teaser{ display:block; font-size: 0.9rem; color: var(--ink-soft); }
.svc-chev{
  flex-shrink:0; width: 28px; height: 28px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--sandstone-2); color: var(--maroon);
  font-size: 0.75rem; margin-top: 4px;
  transition: transform .25s ease, background .2s ease;
}
.svc[open] .svc-chev{ transform: rotate(180deg); background: var(--gold-light); }

.svc-body{ padding: 0 22px 22px; }
.svc-body > p:first-child{ margin-top: 0; }
.svc-body p{ font-size: 0.95rem; }
.svc-body .btn-row{ margin-top: 14px; }
.svc-body .avail{
  display:block; margin-top: 10px; font-size: 0.82rem; color: var(--brass); font-style: italic;
}

/* =========================================================
   SCROLL REVEAL — subtle, opt-in via JS, motion-safe
   ========================================================= */
html.js-reveal .reveal{
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
html.js-reveal .reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  html.js-reveal .reveal{ opacity: 1; transform: none; transition: none; }
}
