/* =========================================================
   Umiyadham Sidsar — Design tokens
   Palette: ivory stone bg, deep vermillion (kumkum) primary,
   terracotta accent, turmeric gold, dark wood text
========================================================= */
:root{
  --ivory:        #FFF8EC;
  --ivory-deep:   #F7EFDD;
  --stone:        #EFE3C8;
  --maroon:       #7A1B1B;
  --maroon-dark:  #5A1212;
  --terracotta:   #C2410C;
  --gold:         #C8941A;
  --gold-light:   #E8C468;
  --ink:          #2D1B12;
  --ink-soft:     #5B4636;
  --white:        #FFFFFF;

  --font-display: "Lora", "Source Sans 3", Georgia, "Times New Roman", serif;
  --font-body:    "Source Sans 3", system-ui, "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 10px 30px -10px rgba(45,27,18,0.18);
  --shadow-card: 0 4px 18px rgba(45,27,18,0.10);
  --max-w: 1180px;

  /* Bootstrap theme tokens — keep site design */
  --bs-body-font-family: var(--font-body);
  --bs-body-font-weight: 500;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--ivory);
  --bs-heading-font-weight: 700;
  --bs-primary: var(--maroon);
  --bs-primary-rgb: 122, 27, 27;
  --bs-link-color: inherit;
  --bs-link-hover-color: var(--maroon-dark);
  --bs-border-radius: var(--radius);
  --bs-border-color: var(--stone);
  --bs-font-sans-serif: var(--font-body);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon-dark);
  margin:0 0 .5rem;
  line-height:1.25;
}
h1{ font-weight: 700; }
h2{ font-weight: 700; }
h3{ font-weight: 600; }
h4,h5,h6{ font-weight: 600; }
p{ margin:0 0 1rem; color: var(--ink-soft); font-weight: 400; }
strong, b{ font-weight: 700; }
ul{ list-style:none; margin:0; padding:0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

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

.section{ padding: 5rem 1.5rem; }
.section-inner,
.section-inner.container,
.site-header .container,
.footer-inner.container,
.quick-cards-inner.container,
.info-strip-inner.container{
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-inner.container,
.quick-cards-inner.container,
.info-strip-inner.container,
.footer-inner.container{
  padding-left: 0;
  padding-right: 0;
}
.eyebrow{
  font-family: var(--font-body);
  font-weight:700;
  letter-spacing:.06em;
  color: var(--terracotta);
  text-transform: uppercase;
  font-size:.8rem;
  margin-bottom:.5rem;
}
.eyebrow.center{ text-align:center; }
h2.center{ text-align:center; }
.section-lead.center{ text-align:center; max-width:640px; margin:0 auto 2.5rem; }
.center{ text-align:center; }

/* ---------- temple section heading ---------- */
.section-heading{
  text-align:center;
  margin: 0 auto 2.85rem;
  max-width: 720px;
  position: relative;
}
/*.section-heading::before{
  content:"";
  position:absolute;
  inset: -12% 10% auto;
  height: 72%;
  background:
    radial-gradient(ellipse at center, rgba(200,148,26,.12) 0%, transparent 68%);
  pointer-events:none;
  z-index:0;
}*/
.section-heading > *{ position: relative; z-index:1; }
.section-heading-kalash{
  display:inline-flex;
  color: var(--gold);
  margin-bottom: .55rem;
  animation: kalash-glow 3.6s ease-in-out infinite;
}
.section-heading-kalash svg{ width: 28px; height: 34px; }


.section-heading h2{
  display:block;
  margin: 0 auto .15rem;
  color: var(--maroon-dark);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 1.35rem + 2vw, 2.7rem);
  line-height: 1.3;
  text-wrap: balance;
}
.section-heading h2::after{ display:none; }
.section-ornament{
  display:none;
  align-items:center;
  justify-content:center;
  gap: .7rem;
  margin: .85rem auto 1.15rem;
  color: var(--terracotta);
}
.ornament-line{
  display:block;
  width: min(72px, 18vw);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--terracotta), var(--gold), transparent);
  position: relative;
}
.ornament-line::before,
.ornament-line::after{
  content:"";
  position:absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.ornament-line::before{ left: 0; }
.ornament-line::after{ right: 0; }
.ornament-lotus{
  width: 44px;
  height: 30px;
  flex-shrink:0;
  filter: drop-shadow(0 2px 4px rgba(122,27,27,.12));
}
.section-heading .section-lead{
  margin: 0 auto;
  max-width: 540px;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.section-heading--start{
  text-align:left;
  margin-left:0;
  margin-right:0;
  margin-bottom: 1.35rem;
  max-width: none;
}
.section-heading--start::before{
  inset: -18% auto auto 0;
  width: 78%;
  height: 80%;
}
.section-heading--start .eyebrow{
  letter-spacing: .12em;
}
.section-heading--start .section-ornament{ justify-content:flex-start; }
.section-heading--start .section-lead{
  margin-left:0;
  margin-right:0;
  max-width: 36rem;
}
/*.parivar-section .section-heading .eyebrow{ color: var(--gold-light); }*/
.parivar-section .section-heading h2{ color: var(--ivory); }
.parivar-section .section-ornament{ color: var(--gold-light); }
.parivar-section .section-heading::before{
  background: radial-gradient(ellipse at center, rgba(232,196,104,.16) 0%, transparent 70%);
}
@keyframes kalash-glow{
  0%, 100%{ opacity:.85; transform: translateY(0); }
  50%{ opacity:1; transform: translateY(-2px); }
}

h2{ font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem); position:relative; display:inline-block; }
/*h2::after{
  content:"";
  display:block;
  width:64px;
  height:4px;
  margin-top:.6rem;
  margin-left:0;
  margin-right:auto;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  border-radius: 2px;
}*/

/* ---------- decorative top thread ---------- */
.kumkum-thread{
  height:6px;
  background: repeating-linear-gradient(90deg, var(--maroon) 0 24px, var(--gold) 24px 48px);
}

/* ---------- buttons (override Bootstrap .btn) ---------- */
.btn{
  --bs-btn-padding-y: .85rem;
  --bs-btn-padding-x: 1.6rem;
  --bs-btn-font-size: .95rem;
  --bs-btn-font-weight: 600;
  --bs-btn-border-width: 2px;
  --bs-btn-border-radius: 999px;
  --bs-btn-line-height: 1.5;
  display:inline-flex; align-items:center; justify-content:center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight:600;
  font-size: .95rem;
  line-height: 1.5;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn-primary{
  --bs-btn-color: var(--ivory);
  --bs-btn-bg: var(--maroon);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--ivory);
  --bs-btn-hover-bg: var(--maroon-dark);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--ivory);
  --bs-btn-active-bg: var(--maroon-dark);
  --bs-btn-active-border-color: transparent;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active{
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(122,27,27,0.45);
}
.btn-ghost{
  --bs-btn-color: var(--maroon-dark);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--maroon-dark);
  --bs-btn-hover-color: var(--ivory);
  --bs-btn-hover-bg: var(--maroon-dark);
  --bs-btn-hover-border-color: var(--maroon-dark);
  background: transparent;
  color: var(--maroon-dark);
  border-color: var(--maroon-dark);
}
.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-ghost:active{
  background: var(--maroon-dark);
  color: var(--ivory);
  border-color: var(--maroon-dark);
}
.btn-small, .btn-sm{ padding:0.60rem 1rem; font-size:.85rem; line-height:1;}
.btn-large, .btn-lg{ padding:1rem 2rem; font-size:1.05rem; }

/* ---------- forms (Bootstrap form-control, site look) ---------- */
.form-label{
  font-size:.88rem; font-weight:600; color: var(--ink-soft); margin-bottom:.4rem;
}
.form-control{
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem .9rem;
  border: 1.5px solid var(--stone);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: none;
}
.form-control:focus{
  border-color: var(--terracotta);
  box-shadow: none;
  background: var(--ivory);
  color: var(--ink);
}
textarea.form-control{ resize: vertical; }
.form-select{
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem 2.4rem .7rem .9rem;
  border: 1.5px solid var(--stone);
  border-radius: 8px;
  background-color: var(--ivory);
  color: var(--ink);
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%235B4636' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 12px 10px;
}
.form-select:focus{
  border-color: var(--terracotta);
  box-shadow: none;
  background-color: var(--ivory);
  color: var(--ink);
}
.form-optional{
  font-weight: 500;
  color: #8a7460;
  font-size: .82rem;
}

/* ---------- header ---------- */
.site-header{
  z-index:50;
  background:
    linear-gradient(180deg, rgba(255,248,236,.97) 0%, rgba(247,239,221,.94) 100%);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border-bottom: none;
  box-shadow:
    0 1px 0 rgba(200,148,26,.28),
    0 8px 28px -18px rgba(45,27,18,.22);
    /*border-bottom: 1.5px solid var(--maroon-dark);*/
}
@media (max-width: 991.98px){
  /* backdrop-filter creates a containing block and breaks offcanvas fixed positioning */
  .site-header{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  background-size: 280px;
  background-repeat: repeat;
  opacity: .045;
  pointer-events:none;
  mix-blend-mode: multiply;
}
.site-header::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 12%,
    var(--maroon) 50%,
    var(--gold) 88%,
    transparent 100%);
  opacity: .85;
  pointer-events:none;
}
.site-header .navbar{
  position: relative;
  z-index: 1;
  padding-top: .55rem;
  padding-bottom: .55rem;
}
.site-header .header-bar{
  align-items: center;
}
.site-header .navbar-brand{
  padding:0;
  margin-right:1rem;
  transition: transform .25s ease;
}
.site-header .navbar-brand:hover{ transform: scale(1.03); }
.brand{ display:flex; align-items:center; gap:.6rem; }
.brand .logo{
  height:64px;
  width:auto;
  max-height:64px;
  filter: drop-shadow(0 2px 6px rgba(90,18,18,.12));
}
.brand-mark{ color: var(--maroon); width:38px; height:38px; flex-shrink:0; }
.kalash-icon{ width:100%; height:100%; }
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-text strong{
  font-family: var(--font-display);
  font-size:1.15rem;
  font-weight: 700;
  color: var(--maroon-dark);
}
.brand-text small{
  font-size:.7rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing:.03em;
}

.site-header .header-actions{
  flex-shrink: 0;
}
.mobile-nav-footer{ display: none; }

@media (min-width: 992px){
  .site-header .offcanvas{
    flex-grow: 1;
    justify-content: center;
    border: none;
    background: transparent;
    visibility: visible !important;
    transform: none !important;
  }
  .site-header .offcanvas-header,
  .site-header .mobile-nav-footer{ display: none !important; }
  .site-header .offcanvas-body{
    display: flex;
    flex-grow: 1;
    padding: 0;
    overflow: visible;
  }
  .site-header .nav-link.dropdown-toggle.show:not(.active),
  .site-header .nav-item.dropdown:hover > .nav-link.dropdown-toggle:not(.active){
    color: var(--maroon-dark); 
  }
  .site-header .nav-item.dropdown{
    position: relative;
  }
  .site-header .nav-item.dropdown > .dropdown-menu{
    margin-top: 0 !important;
  }
  /* Bridge the gap so the menu stays open while moving the cursor down */
  .site-header .nav-item.dropdown::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:12px;
  }
}
.site-header .navbar-nav{
  --bs-nav-link-color: #5B4636;
  --bs-nav-link-hover-color: var(--maroon-dark);
  gap: .15rem .2rem;
}
.site-header .nav-link{
  font-family: var(--font-body);
  font-size:.9rem;
  font-weight:600;
  letter-spacing: .01em;
  position:relative;
  padding: .25rem .95rem !important;
  border-radius: 999px;
  color: #5B4636;
  outline: none;
  box-shadow: none;
  transition:
    color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}
.site-header .nav-link:not(.nav-cta){
  background: transparent;
}
.site-header .nav-link:focus,
.site-header .nav-link:focus-visible,
.site-header .nav-link.show,
.site-header .dropdown-toggle:focus,
.site-header .dropdown-toggle:focus-visible,
.site-header .dropdown-toggle.show{
  outline: none !important;
  box-shadow: none !important;
}
.site-header .nav-link:not(.nav-cta):hover,
.site-header .nav-link:not(.nav-cta):focus{
  color: var(--maroon-dark);
  background: #F0E6D4;
}
.site-header .nav-link.active:not(.nav-cta),
.site-header .nav-link.active:not(.nav-cta):hover,
.site-header .nav-link.active:not(.nav-cta):focus{
  color: var(--white) !important;
  font-weight: 700;
  background: var(--maroon-dark);
  box-shadow: none;
}

.site-header .nav-link.dropdown-toggle{
  padding-right: .95rem !important;
}
.site-header .nav-link.dropdown-toggle::after{
  margin-left: .35rem;
  vertical-align: .15em;
  border-top-width: .32em;
  border-right-width: .32em;
  border-left-width: .32em;
  border-top-color: currentColor;
  opacity: .7;
  transition: transform .22s ease, opacity .22s ease;
}
.site-header .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after,
.site-header .nav-link.dropdown-toggle.show::after{
  transform: rotate(180deg);
  opacity: 1;
}
.site-header .navbar-toggler{
  border: 1.5px solid rgba(90,18,18,.28);
  border-radius: 10px;
  padding: .45rem .6rem;
  background: var(--white);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header .navbar-toggler:hover{
  border-color: var(--maroon-dark);
  background: #F0E6D4;
}
.site-header .navbar-toggler:focus{
  box-shadow: 0 0 0 .2rem rgba(242,163,60,.35);
}
.site-header .navbar-toggler[aria-expanded="true"]{
  border-color: var(--maroon-dark);
  background: #F0E6D4;
}

/* ---------- Mobile offcanvas drawer ---------- */
@media (max-width: 991.98px){
  .offcanvas-backdrop.show{
    background: rgba(90, 18, 18, .55);
    opacity: 1;
  }

  .site-header .offcanvas.offcanvas-end{
    width: min(86vw, 360px);
    border: none;
    border-left: 4px solid var(--maroon-dark);
    background: #FBF6EC;
    box-shadow: -18px 0 48px -16px rgba(45, 27, 18, .35);
  }

  .site-header .offcanvas-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(200, 148, 26, .28);
  }

  .site-header .offcanvas-brand{
    margin: 0;
  }

  .site-header .offcanvas-brand .logo{
    height: 52px;
    max-height: 52px;
  }

  .site-header .mobile-nav-close{
    width: 2rem;
    height: 2rem;
    padding: 0;
    margin: 0;
    opacity: .75;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232D1B12'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1rem auto no-repeat;
    border: none;
    box-shadow: none;
  }
  .site-header .mobile-nav-close:hover{
    opacity: 1;
  }
  .site-header .mobile-nav-close:focus{
    box-shadow: none;
    opacity: 1;
  }

  .site-header .offcanvas-body{
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0 1.5rem;
    overflow-y: auto;
  }

  .site-header .navbar-nav{
    gap: .2rem;
    padding: .5rem 1rem 1rem;
    flex-grow: 1;
  }

  .site-header .nav-item{
    width: 100%;
  }

  .site-header .nav-link:not(.nav-cta){
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .8rem 1.15rem !important;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #3d2a1f;
    background: transparent;
  }

  .site-header .nav-link:not(.nav-cta):hover,
  .site-header .nav-link:not(.nav-cta):focus{
    color: var(--maroon-dark);
    background: rgba(239, 227, 200, .45);
  }

  .site-header .nav-link.active:not(.nav-cta),
  .site-header .nav-link.active:not(.nav-cta):hover,
  .site-header .nav-link.active:not(.nav-cta):focus{
    color: #fff !important;
    font-weight: 700;
    background: var(--maroon-dark);
    box-shadow: none;
  }

  .site-header .nav-link.dropdown-toggle{
    padding-right: 1.15rem !important;
  }

  .site-header .nav-link.dropdown-toggle::after{
    margin-left: auto;
    border: none;
    width: .7rem;
    height: .7rem;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d2a1f'%3e%3cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3e%3c/svg%3e") center/contain no-repeat;
    opacity: .7;
    transform: none;
    transition: transform .22s ease, opacity .22s ease;
  }

  .site-header .nav-link.dropdown-toggle.active::after,
  .site-header .nav-link.dropdown-toggle.active.show::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3e%3c/svg%3e");
    opacity: 1;
  }

  .site-header .nav-link.dropdown-toggle.show::after{
    transform: rotate(180deg);
    opacity: 1;
  }

  .site-header .dropdown-menu{
    position: static !important;
    transform: none !important;
    float: none;
    margin: .1rem 0 .2rem .9rem !important;
    padding: .2rem 0 .35rem 1.15rem;
    border: none;
    border-radius: 0;
    border-left: 2px solid rgba(200, 168, 100, .7);
    box-shadow: none;
    background: transparent;
    min-width: 0;
    overflow: visible;
  }

  .site-header .dropdown-menu::before{ display: none; }

  .site-header .dropdown-item{
    padding: .55rem .85rem .55rem .35rem;
    border-radius: 0;
    font-size: .95rem;
    font-weight: 500;
    color: #5B4636;
  }

  .site-header .dropdown-item:hover,
  .site-header .dropdown-item:focus{
    background: transparent;
    color: var(--maroon-dark);
    padding-left: .5rem;
  }

  .site-header .dropdown-item.active{
    background: transparent;
    color: var(--maroon);
    font-weight: 700;
  }

  .mobile-nav-footer{
    display: block;
    margin-top: auto;
    padding: .75rem 1.4rem 0;
  }

  .mobile-nav-cta,
  .site-header .mobile-nav-cta{
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: .85rem 1.25rem !important;
    border-radius: 14px;
    font-size: 1.05rem;
    margin: 0;
  }

  .mobile-nav-location{
    margin: 1rem 0 0;
    text-align: center;
    font-size: .88rem;
    font-weight: 500;
    color: #8a7360;
  }
}
.site-header .nav-cta,
.nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E8942A;
  color: var(--maroon-dark) !important;
  padding: .3rem 1.35rem !important;
  border-radius: 999px;
  text-align:center;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(194,118,20,.28);
  border: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.site-header .nav-cta:hover,
.site-header .nav-cta:focus,
.nav-cta:hover,
.nav-cta:focus{
  background: #D9841F;
  color: var(--maroon-dark) !important;
  box-shadow: 0 6px 16px rgba(194,118,20,.36);
  transform: translateY(-1px);
}
.site-header .nav-cta.active,
.nav-cta.active{
  background: #E8942A;
  box-shadow:
    0 4px 12px rgba(194,118,20,.28),
    0 0 0 2px rgba(90,18,18,.18);
}
.site-header .header-actions .nav-cta{
  margin-left: .35rem;
}

/* ---------- live badge ---------- */
.live-badge{
  display:inline-flex !important; align-items:center; gap:.4rem;
  background: #C41E1E; color: var(--ivory) !important;
  font-size:.72rem; font-weight:800; letter-spacing:.06em;
  padding:.35rem .75rem !important; border-radius:999px;
  width: fit-content;
}
.live-badge:hover{ color: var(--ivory) !important; opacity:.92; }
.live-badge.active::after{ display:none; }
.live-dot{
  width:8px; height:8px; border-radius:50%;
  background: #fff;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.5; transform:scale(.85); }
}

/* ---------- hero slider ---------- */
.hero-slider{
  position:relative;
  overflow:hidden;
  background: var(--maroon-dark);
  line-height:0;
}
.slider-track{ position:relative; }
.slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition: opacity .6s ease, visibility .6s ease;
}
.slide.active{
  position:relative;
  inset:auto;
  opacity:1; visibility:visible; z-index:2;
}
.slide-img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.slider-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:10; width:44px; height:44px;
  border:none; border-radius:50%;
  background: rgba(255,248,236,0.3);
  color: var(--maroon-dark);
  font-size:1.6rem; line-height:1;
  cursor:pointer;
  box-shadow: var(--shadow-card);
  transition: background .2s ease;
}
.slider-btn:hover{ background: var(--ivory); }
.slider-prev{ left:1rem; }
.slider-next{ right:1rem; }
.slider-dots{
  position:absolute; bottom:1.2rem; left:50%; transform:translateX(-50%);
  z-index:10; display:flex; gap:.5rem;
}
.slider-dot{
  width:10px; height:10px; border-radius:50%;
  border:2px solid var(--ivory);
  background: transparent; cursor:pointer; padding:0;
}
.slider-dot.active{ background: var(--ivory); }
.slider-counter{
  position:absolute; bottom:1.2rem; right:1.2rem; z-index:10;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  min-width:48px;
  height:26px;
  text-align:center;
  color: var(--ivory);
  font-size:.85rem;
  font-weight:700;
  line-height:normal;
  background: rgba(45,27,18,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding:0 .75rem;
  border-radius:999px;
}

/* ---------- quick cards ---------- */
.quick-cards{
  position:relative;
  padding: 2.5rem;
  background:
    linear-gradient(180deg, rgba(90,18,18,0.04) 0%, transparent 28%),
    linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--stone);
}
/*.quick-cards::before{
  content:"";
  display:block;
  height:3px;
  margin: -2.5rem -2.5rem 2rem;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 50%, var(--maroon) 100%);
}*/
.quick-cards-inner{
  max-width: var(--max-w); margin:0 auto;
}
.quick-card{
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.5rem 1.4rem 1.35rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display:flex;
  flex-direction:column;
  height: 100%;
  position:relative;
  overflow:hidden;
}
.quick-card::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height:3px;
  background: linear-gradient(90deg, var(--maroon), var(--terracotta));
}
.quick-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: #e2d2b0;
}
.quick-icon{
  width:2.75rem; height:2.75rem;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1.35rem;
  margin-bottom:.85rem;
  background: var(--ivory-deep);
  border:1px solid var(--stone);
  border-radius: 12px;
  color: var(--maroon);
}
.quick-icon .bi{ font-size:1.25rem; line-height:1; }
.quick-card h3{ font-size:1.12rem; margin-bottom:.35rem; }
.quick-card p{ font-size:.88rem; margin-bottom:1rem; flex:1; }
.quick-link{
  font-weight:700; color: var(--terracotta); font-size:.88rem;
  display:inline-flex; align-items:center; gap:.25rem;
  margin-top:auto;
}
.quick-card:hover .quick-link{ color: var(--maroon-dark); }

/* ---------- hero (legacy - removed) ---------- */
.hero{
  position:relative;
  background: radial-gradient(ellipse at top, #fff 0%, var(--ivory) 45%, var(--stone) 100%);
  overflow:hidden;
  padding: 4.5rem 1.5rem 0;
}
.hero-bg{ position:absolute; left:0; right:0; bottom:0; height:160px; color: var(--maroon); opacity:.08; }
.shikhara-skyline{ width:100%; height:100%; }
.hero-inner{
  max-width: 760px; margin: 0 auto; text-align:center; position:relative; z-index:2;
  padding-bottom: 5.5rem;
}
.hero-eyebrow{
  color: var(--terracotta); font-weight:700; letter-spacing:.08em;
  font-size:.85rem; margin-bottom:1rem;
}
.hero h1{
  font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem);
  margin-bottom:.4rem;
}
.hero-sub{
  display:block;
  font-family: var(--font-body);
  font-weight:600;
  font-size: clamp(1rem, .8rem + .8vw, 1.3rem);
  color: var(--ink-soft);
  margin-top:.5rem;
}
.hero-desc{ max-width:580px; margin:1.2rem auto 1.8rem; font-size:1.02rem; }
.hero-actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.hero-edge{
  height: 28px;
  background: var(--ivory);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-top:-28px;
  position:relative; z-index:3;
}

/* ---------- info strip ---------- */
.info-strip{ background: var(--maroon-dark); padding: 1.05rem 0; }
.info-strip-inner{
  max-width: var(--max-w); margin:0 auto;
}
.info-strip-track{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  padding: 0 1.5rem;
}
.info-pill{
  display:flex; align-items:center; gap:.7rem;
  color: var(--ivory);
  min-width: 0;
}
.info-icon{
  display:inline-flex; align-items:center; justify-content:center;
  flex-shrink:0;
  font-size:1.35rem;
  color: var(--gold-light);
  width:1.75rem;
}
.info-icon .bi{ line-height:1; }
.info-pill strong{ display:block; font-size:.88rem; font-weight:700; }
.info-pill small{ display:block; font-size:.78rem; color: #E8C9C9; }

/* ---------- about ---------- */
.about-grid{ align-items:center; }
.about-media{
  display:flex;
  justify-content:center;
  width:100%;
}
.about-frame{
  width:100%;
  max-width: 420px;
  margin-inline: auto;
}
.about-frame img{
  width:100%;
  height:auto;
  display:block;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}
.temple-illustration{ width:100%; height:auto; color: var(--maroon-dark); }
.about-stats{
  display:flex; gap:2rem; margin-top:1.6rem; flex-wrap:wrap;
}
.about-stats strong{ display:block; font-family: var(--font-display); font-size:1.5rem; font-weight:700; color: var(--maroon); }
.about-stats span{ font-size:.82rem; color: var(--ink-soft); }

/* ---------- daily darshan ---------- */
.darshan-section{ background: var(--ivory-deep); }
.darshan-card{
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  border: 1px solid var(--stone);
}
.darshan-image-wrap{ position:relative; }
.darshan-image{ width:100%; height: 380px; object-fit:cover; }
.darshan-placeholder{
  width:100%; height:380px;
  background: linear-gradient(180deg, var(--ivory-deep), var(--stone));
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
}
.darshan-temple-svg{ width:180px; height:auto; color: var(--maroon); opacity:.7; }
.darshan-placeholder-text{ font-size:.9rem; color: var(--ink-soft); font-weight:600; margin:0; }
.darshan-live-btn{
  position:absolute; top:1rem; right:1rem;
  display:inline-flex; align-items:center; gap:.4rem;
  background: #C41E1E; color: var(--ivory);
  font-size:.8rem; font-weight:700;
  padding:.45rem .9rem; border-radius:999px;
}
.darshan-live-btn:hover{ background: #9e1818; }
.darshan-date-badge{
  position:absolute; bottom:1rem; left:1rem;
  background: rgba(45,27,18,0.78);
  color: var(--ivory);
  padding:.5rem 1rem;
  border-radius: 999px;
  font-size:.85rem;
  font-weight:600;
}
.darshan-meta{
  display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  padding: 1.4rem 1.6rem;
  background: var(--ivory);
}
.darshan-meta-item{ display:flex; flex-direction:column; }
.meta-label{ font-size:.76rem; color: var(--terracotta); font-weight:700; text-transform:uppercase; letter-spacing:.04em; }
.meta-value{ font-weight:700; color: var(--maroon-dark); }

/* ---------- services ---------- */
.services-section{ background: var(--white); }
.service-card{
  background: var(--ivory);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
  height: 100%;
}
.service-card:hover{ transform: translateY(-3px); }
.service-icon{ font-size:2.2rem; display:block; margin-bottom:.8rem; }
.service-card h3{ font-size:1.1rem; }
.service-card p{ font-size:.9rem; }
.service-link{
  display:inline-block; margin-top:.6rem;
  font-weight:700; color: var(--terracotta); font-size:.88rem;
}
.service-link:hover{ text-decoration:underline; }

/* ---------- weekly circular ---------- */
.circular-list{ display:flex; flex-direction:column; gap:1rem; }
.circular-item{
  display:flex; align-items:center; gap:1.4rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-card);
  flex-wrap:wrap;
}
.circular-date{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: 10px;
  width:64px; height:64px; flex-shrink:0;
}
.d-day{ font-size:1.4rem; font-weight:700; font-family: var(--font-display); line-height:normal;}
.d-mon{ font-size:.72rem; letter-spacing:.04em; }
.circular-info{ flex:1; min-width:200px; }
.circular-info h3{ font-family: var(--font-body); font-size:1.05rem; color: var(--maroon-dark); margin:0 0 .2rem; }
.circular-info p{ margin:0; font-size:.9rem; }
.circular-link{
  font-weight:700; color: var(--terracotta); white-space:nowrap;
  padding:.5rem .9rem; border-radius:999px; border:2px solid var(--terracotta);
  transition: background .2s ease, color .2s ease;
}
.circular-link:hover{ background: var(--terracotta); color: var(--ivory); }

/* ---------- monthly umiya parivar ---------- */
.parivar-section{ background: linear-gradient(165deg, var(--maroon-dark), var(--maroon) 60%); }
.parivar-section .eyebrow{ color: var(--gold-light); }
.parivar-section h2{ color: var(--ivory); }
.parivar-section h2::after{ background: linear-gradient(90deg, var(--gold-light), var(--ivory)); }
.parivar-section p{ color: #EAD9D9; }
.parivar-grid{
  align-items:center;
}

/* Issue meta + CTA — one composed action row */
.parivar-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  gap:.85rem;
  margin-top:1.75rem;
}
.parivar-issue{
  display:flex;
  align-items:center;
  gap:.9rem;
  padding:.7rem 1.15rem .7rem .85rem;
  min-height:3.5rem;
  background: rgba(255,248,236,0.08);
  border: 1px solid rgba(232,196,104,0.28);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.parivar-issue-icon{
  flex-shrink:0;
  width:2.4rem;
  height:2.4rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(232,196,104,0.28), rgba(232,196,104,0.1));
  color: var(--gold-light);
  font-size:1.15rem;
  line-height:1;
}
.parivar-issue-text{
  display:flex;
  flex-direction:column;
  gap:.1rem;
  line-height:1.2;
}
.parivar-issue-label{
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--gold-light);
}
.parivar-issue-date{
  font-family: var(--font-display);
  font-size:1.2rem;
  font-weight:700;
  color: var(--ivory);
  letter-spacing:.01em;
}
.btn-parivar{
  --bs-btn-color: var(--maroon-dark);
  --bs-btn-bg: var(--gold-light);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--maroon-dark);
  --bs-btn-hover-bg: var(--ivory);
  --bs-btn-hover-border-color: transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  min-height:3.5rem;
  padding:.7rem 1.35rem;
  background: linear-gradient(135deg, var(--gold-light), #d4a84a);
  color: var(--maroon-dark);
  border-color: transparent;
  border-radius: 999px;
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.02em;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.35);
}
.btn-parivar i{
  font-size:.95rem;
  transition: transform .2s ease;
}
.btn-parivar:hover,
.btn-parivar:focus-visible,
.btn-parivar:active{
  background: var(--ivory);
  color: var(--maroon-dark);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.4);
}
.btn-parivar:hover i,
.btn-parivar:focus-visible i{
  transform: translateX(3px);
}

/* Legacy release-box (kept for umiya-parivar page if reused) */
.parivar-release{ display:flex; gap:1rem; margin: 1.6rem 0; flex-wrap:wrap; }
.release-box{
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  min-width:200px;
}
.release-box.ghost{
  background: rgba(255,248,236,0.08);
  border: 1px solid rgba(255,248,236,0.35);
}
.release-box.ghost .release-label{ color: var(--gold-light); }
.release-box.ghost .release-date{ color: var(--ivory); }
.release-label{ display:block; font-size:.76rem; font-weight:700; color: var(--terracotta); text-transform:uppercase; }
.release-date{ display:block; font-family: var(--font-display); font-size:1.25rem; color: var(--maroon-dark); font-weight:700; }

.parivar-media{ display:flex; justify-content:center; }
.magazine-stack{ position:relative; width:220px; height:280px; }
.mag{
  position:absolute; width:200px; height:260px; border-radius:10px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.mag-1{ background: var(--gold-light); top:24px; left:24px; transform: rotate(-8deg); }
.mag-2{ background: var(--terracotta); top:12px; left:12px; transform: rotate(4deg); }
.mag-3{
  background: var(--ivory); top:0; left:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.6rem;
  border: 6px solid var(--gold);
}
.mag-title{ font-family: var(--font-display); font-size:1.5rem; font-weight:700; color: var(--maroon-dark); text-align:center; }
.mag-issue{ font-size:.8rem; color: var(--terracotta); font-weight:700; }

/* ---------- events ---------- */
.event-card{
  background: var(--white); border:1px solid var(--stone); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.event-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.event-date{
  display:inline-flex; flex-direction:column; align-items:center;
  background: var(--ivory-deep); color: var(--maroon-dark);
  border-radius: 10px; padding:.5rem .9rem; margin-bottom:1rem; font-weight:700;
}
.event-date span{ font-size:1.4rem; font-family: var(--font-display); line-height:1; }
.event-card h3{ font-size:1.05rem; }
.event-card p{ font-size:.9rem; margin:0; }

/* ---------- schemes & activities (pravrutio) ---------- */
.pravrutio-section{ background: var(--white); }
.scheme-card{
  background: var(--ivory);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  height:100%;
}
.scheme-card h3{
  font-size:1.08rem;
  margin-bottom:1rem;
  padding-bottom:.6rem;
  border-bottom:2px solid var(--gold);
}
.scheme-list{
  display:flex;
  flex-direction:column;
  gap:.55rem;
}
.scheme-list li{
  font-size:.9rem;
  color: var(--ink-soft);
  padding-left:1.1rem;
  position:relative;
}
.scheme-list li::before{
  content:"";
  position:absolute;
  left:0; top:.55rem;
  width:6px; height:6px;
  border-radius:50%;
  background: var(--terracotta);
}
.scheme-list--amounts li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding-left:1.1rem;
}
.scheme-list--amounts strong{
  color: var(--maroon);
  font-family: var(--font-display);
  font-weight: 700;
  white-space:nowrap;
}
.scheme-list--cols{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:.5rem .8rem;
}
.scheme-card--donation{
  background: linear-gradient(160deg, var(--ivory), var(--ivory-deep));
}

.kalash-feature{
  margin-top:3rem;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-radius: var(--radius);
  padding:2.2rem 2rem;
  color: var(--ivory);
  box-shadow: var(--shadow-soft);
}
.kalash-feature .eyebrow{ color: var(--gold-light); }
.kalash-feature h3{
  color: var(--ivory);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  margin-bottom:.3rem;
}
.kalash-feature h3::after{ display:none; }
.kalash-tagline{
  font-family: var(--font-display);
  font-size:1.1rem;
  color: var(--gold-light);
  margin-bottom:1rem !important;
}
.kalash-feature p{ color: #EAD9D9; }
.kalash-funds{
  margin:1.4rem 0;
  background: rgba(255,248,236,0.08);
  border:1px solid rgba(255,248,236,0.2);
  border-radius: 10px;
  padding:1.2rem 1.4rem;
}
.kalash-funds h4{
  font-size:.95rem;
  color: var(--gold-light);
  margin-bottom:.8rem;
}
.kalash-funds .scheme-list li{ color: #E8D4D4; }
.kalash-funds .scheme-list li::before{ background: var(--gold-light); }
.kalash-purpose{
  font-size:1rem !important;
  color: var(--ivory) !important;
  margin:1.2rem 0 1.4rem !important;
}

.activity-card{
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.5rem;
  box-shadow: var(--shadow-card);
  height:100%;
}
.activity-card h3{
  font-size:1rem;
  margin-bottom:.9rem;
  color: var(--maroon);
}
/*.activity-card h3{
  color: var(--maroon);
  font-size:1.08rem;
  margin-bottom:1rem;
  padding-bottom:.6rem;
  border-bottom:2px solid var(--gold);
}*/

/* ---------- Our Seva pillars (home) ---------- */
.seva-pillars{
  /*background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 148, 26, 0.12), transparent 55%),
    var(--white);*/
  border-block: 1px solid rgba(239, 227, 200, 0.9);
}
.seva-pillars-heading{
  max-width: 640px;
}
.seva-pillars-heading .section-lead{
  margin-top: .85rem;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.seva-pillar-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  height: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.seva-pillar-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--maroon));
  opacity: 0;
  transition: opacity .25s ease;
}
.seva-pillar-card:hover{
  transform: translateY(-5px);
  border-color: rgba(122, 27, 27, 0.22);
  box-shadow: 0 18px 40px -22px rgba(90, 18, 18, 0.35);
  color: inherit;
}
.seva-pillar-card:hover::before{ opacity: 1; }
.seva-pillar-icon{
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  box-shadow: 0 8px 18px -8px rgba(90, 18, 18, 0.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.seva-pillar-icon .bi{
  font-size: 1.35rem;
  line-height: 1;
}
.seva-pillar-card:hover .seva-pillar-icon{
  transform: scale(1.06);
  box-shadow: 0 12px 22px -8px rgba(90, 18, 18, 0.6);
}
.seva-pillar-card h3{
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--maroon-dark);
  margin: 0;
  line-height: 1.3;
}
.seva-pillar-card p{
  margin: 0;
  flex: 1;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}
.seva-pillar-link{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: .02em;
}
.seva-pillar-link .bi{
  font-size: .95rem;
  transition: transform .25s ease;
}
.seva-pillar-card:hover .seva-pillar-link .bi{
  transform: translateX(4px);
}
@media (max-width: 767.98px){
  .seva-pillar-card{ padding: 1.45rem 1.25rem 1.3rem; }
}

.ritual-pricing h3{
  font-size:1.1rem;
  text-align:center;
  margin-bottom:1.2rem;
}

.achievements-block{
  background: var(--ivory-deep);
  border-radius: var(--radius);
  padding:2rem 1.5rem;
  border:1px solid var(--stone);
}
.achievement-item{
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.2rem;
  height:100%;
  box-shadow: var(--shadow-card);
}
.achievement-item h4{
  font-size:.95rem;
  color: var(--maroon);
  margin-bottom:.4rem;
}
.achievement-item p{
  font-size:.85rem;
  margin:0;
}
.achievement-totals{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:center;
  margin:2rem 0 1.2rem;
}
.total-card{
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1rem 1.4rem;
  text-align:center;
  min-width:140px;
  box-shadow: var(--shadow-card);
}
.total-card span{
  display:block;
  font-size:.78rem;
  font-weight:700;
  color: var(--terracotta);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:.3rem;
}
.total-card strong{
  font-family: var(--font-display);
  font-size:1.35rem;
  color: var(--maroon-dark);
}
.total-card--highlight{
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-color: var(--maroon-dark);
}
.total-card--highlight span{ color: var(--gold-light); }
.total-card--highlight strong{ color: var(--ivory); font-size:1.5rem; }
.samruddhi-pledge{
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: var(--radius);
  padding:1rem 1.4rem;
  text-align:center;
}
.samruddhi-pledge p{
  margin:0;
  color: var(--maroon-dark);
  font-size:.95rem;
}

/* ---------- blog ---------- */
.blog-section{ background: var(--white); }
.blog-card{
  background: var(--ivory);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.blog-thumb{
  width:100%; aspect-ratio: 16/9;
  background-size:cover; background-position:center;
}
.blog-img-1{ background: linear-gradient(135deg, var(--maroon), var(--terracotta)); }
.blog-img-2{ background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.blog-img-3{ background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
.blog-img-4{ background: linear-gradient(135deg, var(--terracotta), var(--stone)); }
.blog-img-5{ background: linear-gradient(135deg, #4a1515, var(--gold)); }
.blog-body{ padding:1.4rem; display:flex; flex-direction:column; flex:1; }
.blog-meta{
  display:flex; align-items:center; gap:.6rem; flex-wrap:wrap;
  margin-bottom:.6rem;
}
.blog-date{
  font-size:.78rem; font-weight:700; color: var(--terracotta);
}
.blog-category{
  font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  background: var(--stone); color: var(--maroon-dark);
  padding:.2rem .55rem; border-radius:999px;
}
.blog-card h3{
  font-family: var(--font-body);
  font-size:1.05rem;
  margin-bottom:.5rem;
  line-height:1.4;
}
.blog-card h3 a:hover{ color: var(--terracotta); }
.blog-excerpt{ font-size:.88rem; margin:0 0 1rem; flex:1; }
.blog-read{
  font-weight:700; color: var(--terracotta); font-size:.88rem;
  align-self:flex-start;
}
.blog-read:hover{ text-decoration:underline; }
.blog-more{ margin-top:2rem; }

/* ---------- seva ---------- */
.seva-section{ background: var(--stone); }
.seva-inner{
  align-items:start;
}
.seva-text{ min-width:0; }
.donation-form{
  background: var(--white); border:1px solid var(--stone); border-radius: var(--radius);
  padding:1.8rem; box-shadow: var(--shadow-card);
}
.donation-form .form-label{ display:block; }
.donation-amounts{ display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1rem; }
.amount-btn{
  padding:.5rem 1rem; border-radius:999px;
  border:2px solid var(--maroon-dark);
  background: transparent; color: var(--maroon-dark);
  font-weight:700; font-size:.88rem; cursor:pointer;
  font-family: var(--font-body);
  transition: background .2s ease, color .2s ease;
}
.amount-btn:hover, .amount-btn.active{
  background: var(--maroon-dark); color: var(--ivory);
}

/* ---------- timings ---------- */
.daily-programme{
  margin-bottom:2.5rem;
}
.programme-card{
  background: var(--white); border:1px solid var(--stone);
  border-radius: var(--radius); padding:1.2rem; text-align:center;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.prog-time{ display:block; font-family: var(--font-display); font-size:1.4rem; color: var(--terracotta); font-weight:700; }
.prog-label{ display:block; font-size:.82rem; color: var(--ink-soft); margin-top:.3rem; }
.timings-tables{ display:flex; flex-direction:column; gap:2rem; }
.timing-table-wrap h3{ font-size:1.1rem; margin-bottom:1rem; text-align:center; }
.table-scroll{ overflow-x:auto; }
.timing-table{
  width:100%;
  margin-bottom:0;
  background: var(--white); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow-card);
  font-size:.88rem;
  --bs-table-bg: var(--white);
  --bs-table-border-color: var(--stone);
  --bs-table-color: var(--ink);
}
.timing-table th, .timing-table td{
  padding:.75rem .9rem; border:1px solid var(--stone); text-align:center;
  vertical-align: middle;
}
.timing-table th{
  background: var(--maroon-dark); color: var(--ivory);
  font-weight:700; font-size:.8rem;
  border-color: var(--maroon-dark);
}
.timing-table td:first-child{ font-weight:600; text-align:left; background: var(--ivory-deep); }
.timing-note{ font-style:italic; color: var(--ink-soft); font-size:.85rem; text-align:center !important; background: var(--ivory) !important; }

/* ---------- gallery ---------- */
.gallery-section, .circular-section{ background: var(--ivory-deep); }
.gallery-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:1rem;
  grid-template-rows: auto auto;
}
.gallery-item{ margin:0; }
.gallery-item-lg{ grid-column: span 2; grid-row: span 2; }
.gallery-placeholder{
  width:100%; aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--stone), var(--gold-light));
}
.gallery-item-lg .gallery-placeholder{ aspect-ratio: auto; height:100%; min-height:280px; }
.gp-1{ background: linear-gradient(135deg, var(--maroon), var(--terracotta)); }
.gp-2{ background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.gp-3{ background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
.gp-4{ background: linear-gradient(135deg, var(--terracotta), var(--stone)); }
.gallery-item figcaption{
  margin-top:.5rem; font-size:.85rem; font-weight:600; color: var(--ink-soft); text-align:center;
}

/* ---------- how to reach ---------- */
.reach-section{ background: var(--white); }
.reach-grid{ align-items:center; }
.reach-list{ margin:1.2rem 0 1.6rem; display:flex; flex-direction:column; gap:.7rem; }
.reach-list li{ color: var(--ink-soft); font-size:.95rem; }
.reach-list strong{ color: var(--maroon-dark); }
.map-placeholder{
  background: linear-gradient(160deg, var(--ivory-deep), var(--stone));
  border:1px solid var(--stone); border-radius: var(--radius);
  min-height:280px; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:.8rem;
  box-shadow: var(--shadow-card);
}
.map-pin{ font-size:2.5rem; }
.map-placeholder p{ text-align:center; color: var(--ink-soft); font-weight:600; margin:0; }

/* ---------- support programs ---------- */
.support-grid{ margin-top:1.5rem; }
.support-card{
  background: var(--white); border:1px solid var(--stone);
  border-radius: var(--radius); padding:1.6rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.support-card h3{ font-size:1rem; }
.support-card p{ font-size:.87rem; }

/* ---------- timings (legacy cards removed) ---------- */
.timings-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:1.2rem; }
.timing-card{
  background: var(--white); border:1px solid var(--stone); border-radius: var(--radius);
  padding: 1.4rem; text-align:center; box-shadow: var(--shadow-card);
}
.timing-card h3{ font-size:1rem; margin-bottom:.4rem; }
.timing-card .time{ color: var(--terracotta); font-weight:700; font-size:1.1rem; margin:0; }

/* ---------- trust ---------- */
.trust-section{ background: var(--ivory-deep); }
.trust-card{
  background: var(--white); border-radius: var(--radius); padding: 1.6rem;
  text-align:center; box-shadow: var(--shadow-card); border:1px solid var(--stone);
  height: 100%;
}
.trust-icon{ font-size:2rem; display:block; margin-bottom:.7rem; }
.trust-card h3{ font-size:1rem; }
.trust-card p{ font-size:.87rem; margin:0; }

/* ---------- contact ---------- */
.contact-list{ display:flex; flex-direction:column; gap:.9rem; margin: 1.2rem 0 1.4rem; }
.contact-list li{ display:flex; align-items:flex-start; gap:.7rem; color: var(--ink-soft); font-size:.95rem; }
.c-icon{
  font-size:1.1rem;
  flex-shrink:0;
  color: var(--maroon);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.35rem;
}
.social-row{ display:flex; gap:1rem; }
.social-row a{
  border: 2px solid var(--maroon-dark); color: var(--maroon-dark);
  padding:.4rem .9rem; border-radius:999px; font-size:.82rem; font-weight:700;
}
.social-row a:hover{ background: var(--maroon-dark); color: var(--ivory); }

.contact-touch-lead{
  max-width: 34rem;
  margin-bottom: 1.35rem;
  font-size: .98rem;
  line-height: 1.7;
}

.contact-detail-panel{
  background:
    linear-gradient(180deg, rgba(255,248,236,.55) 0%, transparent 28%),
    var(--white);
  border: 1px solid var(--stone);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}
.contact-detail-panel::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height:3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}
.contact-detail-row{
  display:flex;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid rgba(239,227,200,.95);
}
.contact-detail-row--last{ border-bottom: 0; }
.contact-detail-icon{
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 12px;
  flex-shrink: 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(160deg, rgba(200,148,26,.14), rgba(122,27,27,.08));
  color: var(--maroon);
  font-size: 1.05rem;
  margin-top: .1rem;
}
.contact-detail-body{ min-width: 0; flex: 1; }
.contact-detail-label{
  margin: 0 0 .2rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.contact-detail-value{
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.55;
}
.contact-detail-value a{
  color: var(--maroon-dark);
  font-weight: 700;
}
.contact-detail-value a:hover{ color: var(--terracotta); }
.contact-detail-sep{
  margin: 0 .35rem;
  color: #b39a7d;
  font-weight: 500;
}
.contact-detail-note{
  margin: .28rem 0 0;
  font-size: .84rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.contact-detail-link{
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .45rem;
  font-size: .86rem;
  font-weight: 700;
  color: var(--terracotta);
}
.contact-detail-link:hover{ color: var(--maroon-dark); }
.contact-detail-link i{ font-size: .78rem; }

.contact-forms-shell{
  max-width: 820px;
  margin: 0 auto;
}
.contact-form-tabs{
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin: 0 0 1.25rem;
  padding: .35rem;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--stone);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-card);
}
.contact-form-tab{
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  padding: .7rem 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.contact-form-tab i{ font-size: 1rem; opacity: .85; }
.contact-form-tab:hover{ color: var(--maroon-dark); }
.contact-form-tab.active{
  background: linear-gradient(165deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--ivory);
  box-shadow: 0 8px 18px -10px rgba(90,18,18,.55);
}
.contact-form-tab.active i{ opacity: 1; }
.contact-form-tab:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.contact-form{
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem 1.7rem;
  box-shadow: var(--shadow-card);
}
.contact-form-intro{
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone);
}
.contact-form-intro h3{
  font-size: 1.2rem;
  margin-bottom: .35rem;
}
.contact-form-intro p{
  margin: 0;
  font-size: .92rem;
  max-width: 38rem;
}
.contact-form .form-label{ display:block; }
.contact-form-actions{
  display: flex;
  justify-content: flex-start;
  padding-top: .35rem;
}
.contact-map-wrap{
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--stone);
}
.contact-map-wrap .map-embed{
  display: block;
  border-radius: 0;
  box-shadow: none;
  min-height: 380px;
}

@media (max-width: 767.98px){
  .contact-detail-row{
    padding: 1rem 1.05rem;
    gap: .85rem;
  }
  .contact-detail-icon{
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
  }
  .contact-form-tabs{
    width: 100%;
    border-radius: 16px;
  }
  .contact-form-tabs .nav-item{ flex: 1; }
  .contact-form-tab{
    width: 100%;
    justify-content: center;
    padding: .7rem .85rem;
    font-size: .88rem;
  }
  .contact-form{ padding: 1.35rem 1.15rem 1.25rem; }
  .contact-map-wrap .map-embed{ min-height: 280px; }
}

/* ---------- footer ---------- */
.site-footer{
  --footer-muted: #C9B89A;
  --footer-dim: #9C8B70;
  --footer-line: rgba(232, 196, 104, 0.22);
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(122, 27, 27, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgba(200, 148, 26, 0.12), transparent 50%),
    var(--ink);
  color: #E8DCC8;
  padding: 3.25rem 1.5rem 0;
  border-top: 3px solid var(--gold);
}
.footer-inner{
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 2.5rem 3.5rem;
  align-items: end;
  padding-bottom: 2.25rem;
}
.footer-brand{
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.footer-logo{
  display: inline-block;
  margin-bottom: 1.1rem;
  line-height: 0;
}
.footer-logo img{
  display: block;
  width: min(200px, 55vw);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.footer-about{
  margin: 0 0 1.35rem;
  max-width: 28rem;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--footer-muted);
}
.footer-brand .footer-social{
  margin: 0;
  justify-content: flex-start;
}
.footer-heading{
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 700;
  position: relative;
  padding-bottom: .65rem;
}
.footer-heading::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-contact{
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: .5rem;
  justify-items: stretch;
}
.footer-contact li,
.footer-meta-card{
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  text-align: left;
}
.footer-ico{
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 196, 104, 0.12);
  border: 1px solid var(--footer-line);
  color: var(--gold-light);
  font-size: .95rem;
  flex-shrink: 0;
}
.footer-contact strong,
.footer-meta-card strong{
  display: block;
  margin: 0 0 .2rem;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--footer-dim);
  font-weight: 700;
}
.footer-contact p,
.footer-meta-card p{
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--footer-muted);
}
.footer-contact a{
  color: #E8DCC8;
  text-decoration: none;
  font-size: .9rem;
  line-height: 1.5;
}
.footer-contact a:hover{ color: var(--gold-light); }
.footer-meta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.35rem;
}
.footer-meta-card{
  padding: .85rem .9rem;
  border: 1px solid var(--footer-line);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.03);
}
.footer-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.footer-btn-ghost{
  color: var(--gold-light);
  border-color: rgba(232, 196, 104, 0.45);
  background: transparent;
}
.footer-btn-ghost:hover,
.footer-btn-ghost:focus-visible,
.footer-btn-ghost:active{
  color: var(--ivory);
  border-color: var(--gold-light);
  background: rgba(232, 196, 104, 0.12);
}
.footer-bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.05rem 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.25rem;
}
.footer-copy{
  margin: 0;
  font-size: .78rem;
  color: var(--footer-dim);
}
.footer-blessing{
  margin: 0;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px){
  .site-header .navbar-nav{ gap: .08rem .12rem; }
  .site-header .nav-link{ font-size:.82rem; padding: .45rem .7rem !important; }
  .brand-text strong{ font-size:1rem; }
  .brand .logo{ height:48px; max-height:48px; }
  .nav-cta{ padding: .48rem 1.05rem !important; font-size: .82rem; }
}

@media (max-width: 991.98px){
  .parivar-grid > [class*="col-"]:last-child{ order:-1; }
  .parivar-actions{ justify-content:center; }
  .parivar-section .section-heading--start{ text-align:center; }
  .parivar-section .section-heading--start h2::after{ margin-left:auto; margin-right:auto; }
  .parivar-section .col-lg-7 > p{ text-align:center; }
  .about-frame{ max-width: 340px; }
  .about-content{ text-align:center; }
  .about-content .section-heading--start{
    text-align:center;
    margin-inline: auto;
  }
  .about-content .section-heading--start::before{
    inset: -12% 10% auto;
    width: auto;
  }
  .about-content .section-ornament{ justify-content:center; }
  .about-stats{ justify-content:center; }
  .info-strip-track{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-cards{ padding-top:2rem; padding-bottom:1.75rem; }
  .quick-cards::before{ margin-top:-2rem; margin-bottom:1.5rem; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-item-lg{ grid-column: span 2; grid-row: span 1; }
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px){
  .section{ padding: 3.2rem 1.2rem; }
  .section-heading{ margin-bottom: 2.1rem; }
  .section-heading .eyebrow{ letter-spacing: .1em; gap: .5rem; }
  .section-heading .eyebrow::before,
  .section-heading .eyebrow::after{ width: 18px; }
  .ornament-line{ width: min(52px, 16vw); }
  .hero{ padding-top: 3rem; }
  .hero-inner{ padding-bottom: 3.5rem; }
  .hero-actions, .seva-actions{ flex-direction:column; width:100%; }
  .hero-actions .btn, .seva-actions .btn{ width:100%; }
  .slider-btn{ width:36px; height:36px; font-size:1.3rem; }
  .slider-dots{ bottom:.8rem; }
  .slider-counter{ bottom:.8rem; right:.8rem; }
  .info-strip{ padding: .65rem 0; }
  .info-strip-track{
    display:flex;
    grid-template-columns: none;
    gap: .55rem;
    padding: 0 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .info-strip-track::-webkit-scrollbar{ display:none; }
  .info-pill{
    flex: 0 0 auto;
    scroll-snap-align: start;
    gap: .45rem;
    padding: .35rem .7rem .35rem .55rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(232,201,201,.18);
    border-radius: 999px;
    white-space: nowrap;
  }
  .info-icon{ font-size:1rem; width:1.15rem; }
  .info-pill strong{ font-size:.72rem; line-height:1.2; }
  .info-pill small{ font-size:.68rem; line-height:1.2; }
  .darshan-image, .darshan-placeholder{ height: 230px; }
  .darshan-meta{ flex-direction:column; align-items:flex-start; }
  .circular-item{ flex-direction:column; align-items:flex-start; }
  .circular-link{ width:100%; text-align:center; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item-lg{ grid-column: span 1; }
  .about-stats{ gap:1.2rem; justify-content:center; }
  
  .magazine-stack{ width:180px; height:230px; }
  .mag{ width:160px; height:210px; }
  .seva-inner{ text-align:center; justify-content:center; }
  .seva-inner .section-heading--start{
    text-align:center;
    margin-inline:auto;
  }
  .seva-inner .section-heading--start::before{
    inset: -12% 10% auto;
    width:auto;
  }
  .seva-inner .section-ornament{ justify-content:center; }
  .scheme-list--cols{ grid-template-columns: 1fr; }
  .achievement-totals{ flex-direction:column; align-items:stretch; }
  .total-card{ min-width:0; }
  .kalash-feature{ padding:1.6rem 1.2rem; }
  .page-hero{ padding: 2.5rem 1.2rem 2rem; }
  .site-footer{ padding: 2.4rem 1.2rem 0; }
  .footer-grid{ padding-bottom: 1.75rem; }
  .footer-meta{ grid-template-columns: 1fr; }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    padding: .95rem 0 1.15rem;
  }
  .filter-bar{ justify-content:flex-start; }
  .video-frame{ aspect-ratio: 16/10; }
}

/* =========================================================
   MULTI-PAGE
========================================================= */
.site-header .dropdown-menu{
  border: 1px solid rgba(200,148,26,.28);
  border-radius: 14px;
  box-shadow:
    0 14px 36px -16px rgba(45,27,18,.28),
    0 1px 0 rgba(255,248,236,.8) inset;
  padding: .5rem;
  margin-top: .55rem !important;
  background:
    linear-gradient(180deg, #FFFBF2 0%, var(--ivory) 100%);
  --bs-dropdown-link-active-bg: rgba(122,27,27,.08);
  --bs-dropdown-link-active-color: var(--maroon-dark);
  --bs-dropdown-link-hover-bg: rgba(200,148,26,.12);
  --bs-dropdown-link-hover-color: var(--maroon-dark);
  --bs-dropdown-min-width: 11.5rem;
  overflow: hidden;
}
.site-header .dropdown-menu::before{
  content:"";
  display:block;
  height: 3px;
  margin: -.5rem -.5rem .45rem;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}
.site-header .dropdown-item{
  font-weight:600;
  font-size:.88rem;
  border-radius: 10px;
  padding: .6rem .9rem;
  color: var(--ink-soft);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.site-header .dropdown-item:hover{
  padding-left: 1.05rem;
}
.site-header .dropdown-item.active{
  color: var(--maroon);
  font-weight: 700;
  background: rgba(200,148,26,.12);
}

@media (min-width: 992px) and (max-width: 1199.98px){
  .site-header .navbar-nav{ gap: .05rem .1rem; }
  .site-header .nav-link{ font-size:.8rem; padding: .45rem .6rem !important; }
  .nav-cta{ padding:.48rem .95rem !important; font-size:.8rem; }
  .brand .logo{ height:46px; max-height:46px; }
}

/* Page hero (inner pages) */
.page-hero{
  position:relative;
  height:300px;
  display:flex;
  align-items:center;
  padding: 3.5rem 1.5rem 2.8rem;
  /*background:
    radial-gradient(ellipse at 20% 0%, rgba(200,148,26,.18), transparent 55%),
    linear-gradient(165deg, var(--maroon-dark) 0%, var(--maroon) 70%);*/
  background: linear-gradient(90deg, var(--maroon-dark) 0%, rgba(90,18,18,.9) 40%, rgba(122,27,27,.8) 100%),
  radial-gradient(ellipse at 20% 0%, rgba(200,148,26,.18), transparent 55%),
  url("../images/temple-hero.png") right / contain no-repeat,
  linear-gradient(165deg, var(--maroon-dark) 0%, var(--maroon) 70%);
  color: var(--ivory);
  overflow:hidden;
}
/*.page-hero{
  position:relative;
  height:300px;
  display:flex;
  align-items:center;
  padding: 3.5rem 1.5rem 2.8rem;  
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(45, 12, 12, 0.55), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgba(200, 148, 26, 0.28), transparent 50%),
    linear-gradient(165deg, var(--maroon-dark) 0%, var(--maroon) 70%);
  color: var(--ivory);
  overflow:hidden;
}*/
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle, rgba(232,196,104,.62) 1.2px, transparent 1.4px),
    linear-gradient(45deg, transparent 47%, rgba(232,196,104,.1) 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(232,196,104,.1) 48% 52%, transparent 53%);
  background-size: 24px 24px, 24px 24px, 24px 24px;
  background-position: 6px 6px, 6px 6px, 6px 6px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity:.42;
  pointer-events:none;
}
.page-hero::after{
  content:"";
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:8px;
  background-color:var(--ivory);
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6' preserveAspectRatio='none'%3E%3Cpolygon points='0,6 6,0 12,6' fill='%23000'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6' preserveAspectRatio='none'%3E%3Cpolygon points='0,6 6,0 12,6' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat:repeat-x;
  mask-repeat:repeat-x;
  -webkit-mask-size:12px 100%;
  mask-size:12px 100%;
  -webkit-mask-position:bottom;
  mask-position:bottom;
  pointer-events:none;
  z-index:2;
}
.page-hero .container{ position:relative; z-index:1; width:100%; max-width: var(--max-w); }
.page-hero .eyebrow{ color: var(--gold-light); }
.page-hero h1{
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.3rem + 2vw, 2.6rem);
  font-weight: 700;
  margin:.2rem 0 .6rem;
}
.page-hero p{
  color:#EAD9D9;
  max-width: 36rem;
  margin:0;
  font-weight: 400;
}
.breadcrumb-nav{
  display:flex; flex-wrap:wrap; gap:.4rem; align-items:center;
  font-size:.82rem; margin-bottom:1rem; color:#E8C9C9;
}
.breadcrumb-nav a{ color: var(--gold-light); font-weight:600; }
.breadcrumb-nav a:hover{ text-decoration:underline; }
.breadcrumb-nav span{ opacity:.7; }

.page-main{ background: var(--ivory); }

/* Welcome band */
.welcome-band{
  padding: 3.5rem 1.5rem;
  background:
    linear-gradient(180deg, var(--ivory-deep), var(--ivory));
}
.welcome-band .welcome-title{ margin-bottom:.8rem; }
.welcome-actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-top:1.4rem; }

/* Filter chips */
.filter-bar{
  display:flex; flex-wrap:wrap; gap:.55rem;
  justify-content:center; margin-bottom:2rem;
}
.filter-chip{
  border:2px solid var(--maroon-dark);
  background:transparent;
  color: var(--maroon-dark);
  font-weight:700; font-size:.85rem;
  padding:.4rem 1rem; border-radius:999px;
  cursor:pointer; font-family: var(--font-body);
  transition: background .2s ease, color .2s ease;
}
.filter-chip:hover, .filter-chip.active{
  background: var(--maroon-dark); color: var(--ivory);
}

/* Notice board */
.notice-board{
  display:flex; flex-direction:column; gap:1rem;
}
.notice-item{
  display:flex; gap:1.2rem; align-items:flex-start;
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.15rem 1.35rem;
  box-shadow: var(--shadow-card);
  flex-wrap:wrap;
}
.notice-item.is-urgent{
  border-color: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(194,65,12,.15), var(--shadow-card);
}
.notice-tag{
  font-size:.72rem; font-weight:800; letter-spacing:.04em;
  text-transform:uppercase;
  background: var(--stone); color: var(--maroon-dark);
  padding:.25rem .55rem; border-radius:999px;
}

/* Trustees — managing trustee message */
.trustee-message{
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.7fr);
  margin-bottom: 2.75rem;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background: var(--white);
  /* border via ring shadow — avoids corner flicker with overflow + hover */
  border: 0;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--stone) 75%, transparent),
    var(--shadow-soft);
  transition: box-shadow .35s ease;
}
.trustee-message:hover{
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--stone) 75%, transparent),
    0 18px 40px -16px rgba(45,27,18,0.22);
}
.trustee-message-aside{
  position: relative;
  min-height: 100%;
  padding: 0;
  display: flex;
}
.trustee-message-portrait{
  position: relative;
  margin: 0;
  width: 100%;
  flex: 1;
  min-height: 420px;
  overflow: hidden;
}
.trustee-message-portrait img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .7s ease;
}
.trustee-message:hover .trustee-message-portrait img{
  transform: scale(1.03);
}
.trustee-message-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 1.15rem 1.55rem;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 40%,
      rgba(0,0,0,0.28) 58%,
      rgba(0,0,0,0.72) 82%,
      rgba(0,0,0,0.88) 100%
    );
  pointer-events: none;
  z-index: 1;
}
.trustee-message-identity{
  max-width: 16rem;
}
.trustee-message-name{
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.trustee-message-role{
  display: inline-block;
  margin: 0;
  padding: .38rem .95rem;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px -8px rgba(0,0,0,0.4);
}
.trustee-message-body{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.85rem, 3.8vw, 2.85rem) clamp(1.6rem, 3.8vw, 3rem);
  background:
    linear-gradient(180deg, var(--white) 0%, color-mix(in srgb, var(--ivory) 55%, white) 100%);
}
.trustee-message-eyebrow{
  margin: 0 0 .55rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.trustee-message-title{
  margin: 0 0 1.25rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  color: var(--maroon-dark);
  max-width: 18ch;
}
.trustee-message-quote{
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 1;
}
.trustee-message-mark{
  position: absolute;
  top: -0.55em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 12vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--maroon) 10%, transparent);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.trustee-message-quote p{
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.8;
}
.trustee-message-quote p::before{ content: "“"; }
.trustee-message-quote p::after{ content: "”"; }
.trustee-message-signoff{
  margin: 1.35rem 0 0;
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.01em;
}

.trustee-grid{ margin-top: .75rem; }

.person-card{
  text-align:center;
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.5rem 1rem;
  box-shadow: var(--shadow-card);
  height:100%;
}
.person-avatar{
  width:88px; height:88px; margin:0 auto 1rem;
  border-radius:50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  display:flex; align-items:center; justify-content:center;
  color: var(--ivory); font-family: var(--font-display);
  font-size:1.6rem; font-weight:700;
}
.person-photo-wrap{
  width: 140px;
  height: 175px;
  margin: 0 auto 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--gold-light);
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--maroon), var(--gold));
}
.person-photo-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card h3{ font-size:1.05rem; margin-bottom:.2rem; }
.person-role{ font-size:.82rem; color: var(--terracotta); font-weight:700; margin:0; }

/* Trustee portrait cards — photo-led, site palette */
.person-card--photo{
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.85rem 1.25rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--stone) 85%, transparent);
  background:
    linear-gradient(180deg, var(--white) 0%, color-mix(in srgb, var(--ivory) 40%, white) 100%);
  box-shadow: 0 8px 28px -14px rgba(45,27,18,0.18);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.person-card--photo:hover{
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold-light) 55%, var(--stone));
  box-shadow: 0 16px 36px -14px rgba(45,27,18,0.22);
}
.person-card--photo .person-photo-wrap{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0 0 1rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--stone) 80%, transparent);
  box-shadow: none;
  background: var(--ivory-deep);
}
.person-card--photo .person-photo-wrap img{
  transition: transform .5s ease;
}
.person-card--photo:hover .person-photo-wrap img{
  transform: scale(1.04);
}
.person-card-body{
  padding: 0 .35rem;
}
.person-card--photo h3{
  margin: 0 0 .3rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1.3;
}
.person-card--photo .person-role{
  margin: 0;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}

@media (max-width: 991.98px){
  .trustee-message{
    grid-template-columns: 1fr;
  }
  .trustee-message-portrait{
    min-height: 0;
    aspect-ratio: 3 / 4;
    max-height: 480px;
  }
  .trustee-message-body{
    padding: 1.65rem 1.4rem 1.85rem;
  }
  .trustee-message-title{ max-width: none; }
}

@media (max-width: 575.98px){
  .trustee-message-portrait{
    max-height: 400px;
  }
  .trustee-message-overlay{
    padding: 1.25rem 1rem 1.35rem;
  }
  .parivar-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .parivar-issue,
  .btn-parivar{
    width:100%;
    justify-content:center;
  }
}

@media (max-width: 575.98px){
  .person-card--photo{
    padding: 0.65rem 0.65rem 1rem;
    border-radius: 14px;
  }
  .person-card--photo .person-photo-wrap{
    border-radius: 10px;
    margin-bottom: .85rem;
  }
  .person-card--photo h3{ font-size: .98rem; }
  .person-card--photo .person-role{ font-size: .82rem; }
}

/* Mission / vision */
.mv-card{
  display: flex;
  flex-direction: column;
  gap: .7rem;
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.8rem;
  height:100%;
  box-shadow: var(--shadow-card);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.mv-card:hover{
  transform: translateY(-5px);
  border-color: rgba(122, 27, 27, 0.22);
  box-shadow: 0 18px 40px -22px rgba(90, 18, 18, 0.35);
}
.mv-card:hover .seva-pillar-icon{
  transform: scale(1.06);
  box-shadow: 0 12px 22px -8px rgba(90, 18, 18, 0.6);
}
.mv-card h3{
  font-size:1.28rem;
  font-weight: 600;
  color: var(--maroon-dark);
  margin: 0;
  line-height: 1.3;
}
.mv-card p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Milestone timeline */
.timeline{ position:relative; padding-left:1.5rem; }
.timeline::before{
  content:""; position:absolute; left:.60rem; top:.5rem; bottom:.3rem;
  width:2px; background: linear-gradient(180deg, var(--gold), var(--maroon));
}
.timeline-item{ position:relative; padding:0 0 1.6rem 1rem; }
.timeline-item::before{
  content:""; position:absolute; left:-1.22rem; top:.35rem;
  width:12px; height:12px; border-radius:50%;
  background: var(--maroon); border:2px solid var(--gold-light);
}
.timeline-year{ font-weight:800; color: var(--terracotta); font-size:.85rem; }

/* Video gallery */
.video-card{
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  height:100%;
}
.video-frame{
  aspect-ratio: 16/9;
  background: var(--ink);
}
.video-frame iframe{ width:100%; height:100%; border:0; display:block; }
.video-body{ padding:1.1rem 1.25rem; }
.video-body h3{
  font-family: var(--font-display);
  font-size:1rem;
  font-weight: 600;
  margin-bottom:0;
}
.video-body p{ font-size:.85rem; margin:0; }

/* Kalash CTA portal */
.portal-cta{
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--ivory);
  border-radius: var(--radius);
  padding:2.2rem 2rem;
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.portal-cta h3{ color: var(--ivory); font-size:1.5rem; }
.portal-cta p{ color:#EAD9D9; max-width:32rem; margin:0 auto 1.4rem; }
.portal-cta .btn-primary{
  background: var(--gold);
  color: var(--maroon-dark);
  box-shadow: none;
}
.portal-cta .btn-primary:hover{
  background: var(--gold-light);
  color: var(--maroon-dark);
}

/* Maps */
.map-embed{
  border:0; border-radius: var(--radius);
  width:100%; min-height:320px;
  box-shadow: var(--shadow-card);
}

/* Social */
.footer-social{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.social-share-btn{
  border:1.5px solid rgba(232,220,200,.35);
  color:#D9CBB0;
  padding:.4rem .9rem .2rem .9rem; border-radius:999px;
  font-size:.8rem; font-weight:700;
}
.social-btn{
  box-sizing: border-box;
  border: 1.5px solid rgba(232,220,200,.35);
  color: #D9CBB0;
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.social-btn i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 1.05rem;
  line-height: 1;
  margin: 0;
}
.social-btn i::before{
  display: block;
  line-height: 1;
}
.social-btn:hover{
  color: var(--ivory);
  border-color: var(--gold-light);
  background: rgba(232,220,200,.12);
}
.social-share-inline{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1rem; }
.social-share-inline .social-btn, .social-share-inline .social-share-btn{
  border-color: var(--maroon-dark);
  color: var(--maroon-dark);
}
.social-share-inline .social-btn:hover, .social-share-inline .social-share-btn:hover{
  background: var(--maroon-dark);
  color: var(--ivory);
  border-color: var(--maroon-dark);
}
.video-placeholder{ background: linear-gradient(160deg, #2a0a0a, var(--maroon-dark)); }

/* ---------- home page extras ---------- */
.home-media-frame{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  max-width:420px;
  margin-inline:auto;
}
.home-media-visual{
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(232,196,104,.35), transparent 55%),
    linear-gradient(165deg, var(--maroon-dark), var(--terracotta) 55%, var(--gold));
}
.home-media-badge{
  position:absolute; left:1rem; bottom:1rem;
  background: rgba(45,27,18,.78);
  color: var(--ivory);
  font-weight:700; font-size:.88rem;
  padding:.45rem .9rem; border-radius:999px;
}
.home-timing-stack{
  display:flex; flex-direction:column; gap:.75rem;
  height:100%;
}
.home-timing-stack .programme-card{
  text-align:left;
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.2rem;
}
.home-timing-stack .prog-time{
  font-size:1.15rem; min-width:5.5rem;
}
.home-scheme-card{
  background: var(--ivory);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.8rem 1.6rem;
  box-shadow: var(--shadow-card);
  height:100%;
  display:flex;
  flex-direction:column;
}
.home-scheme-card h3{ font-size:1.25rem; margin-bottom:.7rem; }
.home-scheme-card--kalash{
  background: linear-gradient(145deg, var(--maroon-dark), var(--maroon));
  border-color: transparent;
  color: var(--ivory);
}
.home-scheme-card--kalash .eyebrow{ color: var(--gold-light); }
.home-scheme-card--kalash h3{ color: var(--ivory); }
.home-scheme-card--kalash h3::after{ display:none; }
.home-scheme-card--kalash p{ color:#EAD9D9; }
.home-scheme-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:auto;
}
.home-impact{
  background:
    radial-gradient(ellipse at top, rgba(200,148,26,.1), transparent 50%),
    var(--ivory);
}
.home-donate-cta{ margin:0; }
@media (max-width: 991.98px){
  .home-media-frame{ max-width:320px; margin-bottom:.5rem; }
}
@media (max-width: 640px){
  .home-timing-stack .programme-card{ flex-direction:column; align-items:flex-start; gap:.25rem; }
  .home-timing-stack .prog-time{ min-width:0; }
}

/* Home announcement list reuse circular */
.announce-list .circular-item{ margin:0; }

/* Donate ways */
.donate-way{
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  padding:1.5rem;
  height:100%;
  box-shadow: var(--shadow-card);
}
.donate-way h3{ font-size:1.05rem; }

/* Album cards */
.album-card{
  display:block;
  background: var(--white);
  border:1px solid var(--stone);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  height:100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.album-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.album-thumb{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--maroon), var(--terracotta));
}
.album-thumb.t2{ background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.album-thumb.t3{ background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
.album-thumb.t4{ background: linear-gradient(135deg, var(--terracotta), var(--stone)); }
.album-thumb.t5{ background: linear-gradient(135deg, #4a1515, var(--gold)); }
.album-body{ padding:1.1rem 1.2rem; }
.album-body h3{
  font-family: var(--font-display);
  font-size:1rem;
  font-weight: 600;
  margin-bottom:0;
}
.album-body p{
  font-family: var(--font-body);
  font-size:.84rem;
  font-weight: 400;
  margin:.35rem 0 0;
}
a.album-card{
  text-decoration: none;
  color: inherit;
}
a.album-card:hover,
a.album-card:focus-visible{
  color: inherit;
  text-decoration: none;
}

/* Album photo grid */
.photo-tile{
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone);
  cursor: zoom-in;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.photo-tile:hover,
.photo-tile:focus-visible{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  outline: none;
}
.photo-tile:focus-visible{
  box-shadow: var(--shadow-soft), 0 0 0 3px rgba(139, 37, 37, .35);
}
.photo-tile img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fullscreen photo lightbox */
body.lightbox-open{ overflow: hidden; }
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden]{ display: none !important; }
.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 8, .92);
  border: 0;
  padding: 0;
  cursor: zoom-out;
}
.lightbox-dialog{
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-figure{
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image{
  display: block;
  max-width: min(92vw, 1100px);
  max-height: min(84vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: .35rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.lightbox-close,
.lightbox-nav{
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible{
  background: rgba(255,255,255,.22);
  outline: none;
}
.lightbox-close{
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
.lightbox-prev{ left: .5rem; }
.lightbox-next{ right: .5rem; }
.lightbox-counter{
  position: absolute;
  left: 50%;
  bottom: .35rem;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .04em;
}
@media (max-width: 767.98px){
  .lightbox-nav{
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.05rem;
  }
  .lightbox-prev{ left: .15rem; }
  .lightbox-next{ right: .15rem; }
  .lightbox-image{
    max-width: 88vw;
    max-height: 78vh;
  }
}

.hero-fallback{
  min-height: clamp(200px, 32vw, 360px);
  background:
    radial-gradient(ellipse at 30% 40%, rgba(232,196,104,.25), transparent 50%),
    linear-gradient(160deg, #3a0e0e, var(--maroon-dark) 45%, #7a2a1a);
  display:flex; align-items:center; justify-content:center;
  color: var(--ivory);
  text-align:center;
  padding:2rem;
}
.hero-fallback h2{
  color: var(--ivory);
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  margin:0;
}
.hero-fallback h2::after{ background: var(--gold-light); margin-inline:auto; }

.section-alt{ background: var(--ivory-deep); }
.section-white{ background: var(--white); }

.header-rail{
  height:3px;
  background:
    repeating-linear-gradient(90deg,
      var(--maroon) 0 18px,
      var(--gold) 18px 28px,
      var(--terracotta) 28px 36px,
      var(--gold) 36px 46px);
}

/* ---------- image-led events and notices ---------- */
.post-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  background:var(--white);
  border:1px solid var(--stone);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  transition:transform .22s ease, box-shadow .22s ease;
}
.post-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-soft);
}
.post-card--urgent{ border-color:var(--terracotta); }
.post-card-image{
  position:relative;
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
  background:var(--stone);
}
.post-card-image::after{
  content:"";
  position:absolute;
  inset:50% 0 0;
  background:linear-gradient(transparent, rgba(45,27,18,.28));
  pointer-events:none;
}
.post-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.post-card:hover .post-card-image img{ transform:scale(1.045); }
.post-card-image .event-date,
.post-date{
  position:absolute;
  z-index:1;
  left:1rem;
  bottom:1rem;
  margin:0;
  box-shadow:0 7px 18px rgba(45,27,18,.22);
}
.post-date{
  min-width:58px;
  padding:.45rem .7rem;
  text-align:center;
  background:var(--ivory);
  color:var(--maroon-dark);
  border-radius:10px;
  line-height:1;
}
.post-date strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.35rem;
}
.post-date span{ font-size:.68rem; font-weight:800; text-transform:uppercase; }
.post-card-body{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  flex:1;
  padding:1.25rem 1.3rem 1.35rem;
}
.post-card-body h3{
  font-family:var(--font-body);
  font-size:1.08rem;
  line-height:1.45;
  margin:.7rem 0 .45rem;
}
.post-card-body h3 a{ color:var(--maroon-dark); }
.post-card-body h3 a:hover{ color:var(--terracotta); }
.post-card-body p{
  flex:1;
  font-size:.88rem;
  line-height:1.7;
  margin:0 0 1rem;
}
.post-card-link{
  color:var(--terracotta);
  font-size:.86rem;
  font-weight:800;
}
.post-card-link:hover{ color:var(--maroon-dark); }

.home-post-list{ display:flex; flex-direction:column; gap:1rem; }
.mini-post-card{
  display:grid;
  grid-template-columns:138px minmax(0, 1fr);
  height:120px;
  min-height:120px;
  overflow:hidden;
  background:var(--ivory);
  border:1px solid var(--stone);
  border-radius:var(--radius);
  box-shadow:var(--shadow-card);
  transition:transform .2s ease, box-shadow .2s ease;
}
.mini-post-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow-soft); }
.mini-post-image{ display:block; overflow:hidden; background:var(--stone); }
.mini-post-image img{
  display:block;
  width:100%;
  height:100%;
  min-height:120px;
  object-fit:cover;
  transition:transform .4s ease;
}
.mini-post-card:hover img{ transform:scale(1.05); }
.mini-post-body{ padding:.85rem 1rem; align-self:center; }
.mini-post-meta{
  display:block;
  margin-bottom:.25rem;
  color:var(--terracotta);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.025em;
  text-transform:uppercase;
}
.mini-post-body h3{
  font-family:var(--font-body);
  font-size:.97rem;
  line-height:1.4;
  margin:0 0 .25rem;
}
.mini-post-body h3 a:hover{ color:var(--terracotta); }
.mini-post-body p{ margin:0; font-size:.8rem; line-height:1.55; }

/* ---------- post detail ---------- */
.post-detail-section{ background:var(--ivory); }
.post-detail{
  max-width:900px;
  margin:0 auto;
}
.post-detail-header{
  max-width:760px;
  margin:0 auto 1.8rem;
  text-align:center;
}
.post-detail-header h1{
  font-size:clamp(1.8rem, 1.25rem + 2vw, 2.7rem);
  margin:.75rem 0 .65rem;
}
.post-detail-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:.55rem;
  color:var(--ink-soft);
  font-size:.83rem;
}
.post-detail-image{
  width:100%;
  max-height:520px;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  border-radius:calc(var(--radius) + 3px);
  box-shadow:var(--shadow-soft);
}
.post-detail-content{
  max-width:740px;
  margin:2rem auto 0;
  font-size:1rem;
  line-height:1.9;
}
.post-detail-content .post-lead{
  color:var(--maroon-dark);
  font-size:1.14rem;
  font-weight:600;
}
.post-detail-content h2{ margin:2rem 0 .7rem; font-size:1.35rem; }
.post-detail-content ul{
  display:grid;
  gap:.55rem;
  margin:1rem 0 1.5rem;
  padding-left:1.2rem;
  color:var(--ink-soft);
}
.post-detail-back{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
  max-width:740px;
  margin:2.2rem auto 0;
  padding-top:1.5rem;
  border-top:1px solid var(--stone);
}

@media (max-width:640px){
  .mini-post-card{ grid-template-columns:108px minmax(0, 1fr); }
  .mini-post-body{ padding:.7rem .8rem; }
  .mini-post-body p{ display:none; }
  .post-card-body{ padding:1.1rem; }
  .post-detail-header{ text-align:left; }
  .post-detail-meta{ justify-content:flex-start; }
  .post-detail-content{ font-size:.94rem; }
}

.section-heading .eyebrow{
  display:inline-flex;  
  gap:.55rem;
  margin:0 0 .95rem;
  padding:0.5rem .82rem .30rem .82rem;
  border-radius:999px;
  border:1px solid rgba(200,148,26,.42);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(247,239,221,.96) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 6px 18px rgba(122,27,27,.07);
  color: var(--terracotta);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.2em;
  line-height:1;
}

.section-heading .eyebrow > span{
  position:relative;
  top:1px;
}

.section-heading .eyebrow::before, .section-heading .eyebrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 2px rgba(200, 148, 26, .22);
}

/* ---------- Floating actions (bottom-right) ---------- */
.floating-actions{
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
  pointer-events: none;
}
.floating-actions > *{
  pointer-events: auto;
}
.floating-top{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--maroon-dark);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(45, 27, 18, .18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease,
    background .2s ease,
    box-shadow .2s ease;
}
.floating-top.is-visible{
  opacity: 1;
  transform: none;
  visibility: visible;
}
.floating-top:hover{
  background: #FFF8EC;
  box-shadow: 0 8px 22px rgba(45, 27, 18, .22);
}
.floating-top:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.floating-donate{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 2.85rem;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  background: #E8942A;
  color: var(--maroon-dark) !important;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(194, 118, 20, .35);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.floating-donate i{
  font-size: 1.05rem;
  line-height: 1;
}
.floating-donate:hover{
  background: #D9841F;
  color: var(--maroon-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(194, 118, 20, .42);
}
.floating-donate:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.floating-donate.is-current{
  display: none;
}

@media (max-width: 640px){
  .floating-actions{
    right: .85rem;
    bottom: 1rem;
    gap: .65rem;
  }
  .floating-top{
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.1rem;
  }
  .floating-donate{
    min-height: 2.65rem;
    padding: .6rem 1.05rem;
    font-size: .9rem;
  }
}

.donate-btn{
  --bs-btn-color: var(--maroon-dark);
  --bs-btn-bg: var(--gold-light);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--maroon-dark);
  --bs-btn-hover-bg: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3.35rem;
  padding: .85rem 1.85rem;
  background: linear-gradient(135deg, #F0D078, var(--gold-light) 45%, #D4A84A);
  color: var(--maroon-dark);
  border-color: transparent;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow:
    0 0 0 1px rgba(255,248,236,.15),
    0 12px 32px -8px rgba(0,0,0,.2),
    0 0 40px -8px rgba(232,196,104,.2);
  animation: donate-cta-breathe 3.8s ease-in-out infinite;
}

/* ---------- About: Journey path (numbered chapters) ---------- */
.about-journey{
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(200,148,26,.1), transparent 60%),
    var(--ivory);
}
.journey-path{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  counter-reset: none;
}
.journey-step{
  position: relative;
  padding: 0 0 0 .15rem;
}
.journey-step-num{
  display: block;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(122, 27, 27, .14);
  letter-spacing: -.02em;
  margin-bottom: .55rem;
}
.journey-step-icon{
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: .85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  box-shadow: 0 8px 16px -8px rgba(90, 18, 18, .5);
}
.journey-step-icon .bi{
  font-size: 1.15rem;
  line-height: 1;
}
.journey-step h3{
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--maroon-dark);
  line-height: 1.3;
}
.journey-step p{
  margin: 0;
  max-width: 18rem;
  font-size: .93rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- About: Spirit / Tradition / Seva ---------- */
.about-spirit-grid{
  position: relative;
}
.spirit-item{
  height: 100%;
  padding-top: .15rem;
}
.spirit-icon{
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(200, 148, 26, .35);
  background:
    linear-gradient(160deg, rgba(255,248,236,.95), rgba(239,227,200,.55));
  color: var(--maroon);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.spirit-icon .bi{
  font-size: 1.3rem;
  line-height: 1;
}
.spirit-label{
  margin: 0 0 .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.spirit-item h3{
  margin: 0 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--maroon-dark);
  line-height: 1.3;
  text-wrap: balance;
}
.spirit-item p{
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (min-width: 768px){
  .journey-path{
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.75rem;
    position: relative;
  }
  .journey-path::before{
    content: "";
    position: absolute;
    top: 4.55rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--terracotta), var(--gold), transparent);
    opacity: .65;
    pointer-events: none;
  }
  .journey-step{
    text-align: center;
  }
  .journey-step-num{
    font-size: 2.6rem;
  }
  .journey-step-icon{
    position: relative;
    z-index: 1;
    margin-inline: auto;
    box-shadow:
      0 0 0 6px var(--ivory),
      0 8px 16px -8px rgba(90, 18, 18, .5);
  }
  .journey-step p{
    margin-inline: auto;
  }
}

@media (min-width: 992px){
  .spirit-item{
    padding-inline: .35rem;
  }
  .about-spirit-grid > [class*="col-"]:not(:last-child) .spirit-item{
    border-right: 1px solid var(--stone);
    padding-right: 1.5rem;
  }
}

@media (max-width: 767.98px){
  .journey-step{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    align-items: start;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--stone);
  }
  .journey-step:last-child{
    padding-bottom: 0;
    border-bottom: 0;
  }
  .journey-step-num{
    grid-row: 1 / span 3;
    font-size: 2rem;
    margin: .15rem 0 0;
    color: rgba(122, 27, 27, .18);
  }
  .journey-step-icon{
    grid-column: 2;
    margin-bottom: .55rem;
  }
  .journey-step h3,
  .journey-step p{ grid-column: 2; }
  .journey-step p{ max-width: none; }
}

/* ---------- Mandir: Sacred history chronicle ---------- */
.history-prologue{
  background:
    radial-gradient(ellipse 55% 40% at 8% 20%, rgba(200,148,26,.08), transparent 55%),
    var(--ivory);
}
.history-portrait{
  position: relative;
}
.history-portrait::after{
  content: "";
  position: absolute;
  inset: auto -8% -6% auto;
  width: 42%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,26,.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.history-place{
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--stone);
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: .02em;
}
.history-intro-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.25rem 0 0;
}
.page-hero-jumps{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .75rem;
  margin-top: 1.25rem;
}
.page-hero-jumps a{
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(232,196,104,.45);
  background: rgba(255,248,236,.08);
  color: var(--ivory);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.page-hero-jumps a:hover{
  background: rgba(232,196,104,.18);
  border-color: var(--gold-light);
  color: var(--white);
}
#timings,
#special-puja,
#history{
  scroll-margin-top: 5.5rem;
}

.history-path-band{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.history-path{
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.history-path-item{
  display: flex;
  align-items: baseline;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--stone);
  color: inherit;
  transition: color .25s ease;
}
.history-path-item:last-child{ border-bottom: 0; }
.history-path-item:hover{ color: var(--maroon-dark); }
.history-path-num{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(122, 27, 27, .28);
  letter-spacing: -.02em;
  flex-shrink: 0;
  min-width: 1.75rem;
  transition: color .25s ease;
}
.history-path-item:hover .history-path-num{ color: var(--terracotta); }
.history-path-label{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--maroon-dark);
  line-height: 1.35;
}

.history-chronicle{
  padding-top: 4rem;
  padding-bottom: 2rem;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 48%, var(--ivory) 100%);
}
.history-chapter{
  display: grid;
  gap: 1.25rem;
  padding: 0 0 3.5rem;
  margin: 0 0 3.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--stone) 85%, transparent);
  scroll-margin-top: 6rem;
  animation: history-rise .7s ease both;
}
.history-chapter:nth-child(2){ animation-delay: .06s; }
.history-chapter:nth-child(3){ animation-delay: .1s; }
.history-chapter:nth-child(4){ animation-delay: .14s; }
.history-chapter:nth-child(5){ animation-delay: .18s; }
.history-chapter--last{
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 0;
}
.history-chapter-meta{
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.history-chapter-num{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: .9;
  color: rgba(122, 27, 27, .12);
  letter-spacing: -.03em;
}
.history-chapter-meta .eyebrow{ margin: 0; }
.history-chapter-body{
  max-width: 42rem;
}
.history-chapter-body h2{
  margin: 0 0 1.15rem;
  font-size: clamp(1.45rem, 1.15rem + 1.1vw, 1.85rem);
  color: var(--maroon-dark);
  text-wrap: balance;
}
.history-chapter-body p{
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.8;
}
.history-chapter-body p:last-child{ margin-bottom: 0; }

.history-quote{
  position: relative;
  margin: 1.6rem 0 1.75rem;
  padding: 1.35rem 0 1.35rem 1.35rem;
  border: 0;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(200,148,26,.08), transparent 70%);
}
.history-quote p{
  margin: 0;
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.75;
  color: var(--maroon-dark);
}
.history-quote p::before{ content: "“"; }
.history-quote p::after{ content: "”"; }
.history-quote--divine{
  border-left-color: var(--maroon);
  background:
    linear-gradient(90deg, rgba(122,27,27,.07), transparent 72%);
}

.history-milestone{
  margin: 2rem 0 0;
  padding: 1.5rem 1.4rem 1.55rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--stone));
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(200,148,26,.14), transparent 55%),
    linear-gradient(165deg, var(--white), var(--ivory));
  box-shadow: var(--shadow-card);  
}
.history-milestone-label{
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.history-milestone-title{
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1.25;
}
.history-milestone-meta{
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  color: var(--maroon);
}
.history-milestone-note{
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.history-closing{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(122,27,27,.08), transparent 60%),
    linear-gradient(180deg, var(--ivory-deep), var(--ivory));
}
.history-closing-actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem 1rem;
}

@keyframes history-rise{
  from{
    opacity: 0;
    transform: translateY(14px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px){
  .history-path{
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
  }
  .history-path::before{
    content: "";
    position: absolute;
    top: 1.05rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--terracotta), var(--gold), transparent);
    opacity: .55;
    pointer-events: none;
  }
  .history-path-item{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .55rem;
    padding: 0;
    border-bottom: 0;
  }
  .history-path-num{
    position: relative;
    z-index: 1;
    font-size: 1.55rem;
    min-width: 0;
    padding: 0 .35rem;
    background: var(--ivory-deep);
  }
  .history-path-label{
    font-size: .98rem;
    max-width: 9.5rem;
  }
}

@media (min-width: 992px){
  .history-chapter{
    grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
    column-gap: 2.75rem;
    align-items: start;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
  .history-chapter-meta{
    position: sticky;
    top: 6.5rem;
    padding-top: .2rem;
  }
  .history-chapter-body{
    max-width: 44rem;
    padding-left: 2rem;
    border-left: 1px solid var(--stone);
  }
  .history-quote{
    margin-left: -.15rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .history-chapter{ animation: none; }
}

/* =========================================================
   Home notice popup (events / important notices)
========================================================= */
body.notice-popup-open{ overflow: hidden; }

.notice-popup{
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.notice-popup[hidden]{ display: none !important; }
.notice-popup.is-visible{
  opacity: 1;
  visibility: visible;
}

.notice-popup-backdrop{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200,148,26,.18), transparent 55%),
    rgba(45, 15, 12, .72);
  backdrop-filter: blur(2px);
}

.notice-popup-dialog{
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 0 0 1px rgba(200,148,26,.28),
    0 24px 60px -20px rgba(45,27,18,.45);
  transform: translateY(14px) scale(.97);
  transition: transform .28s ease;
}
.notice-popup.is-visible .notice-popup-dialog{
  transform: translateY(0) scale(1);
}

.notice-popup-close{
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,27,18,.55);
  color: var(--ivory);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.notice-popup-close:hover,
.notice-popup-close:focus-visible{
  background: var(--maroon);
  outline: none;
  transform: scale(1.05);
}

.notice-popup-media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--maroon-dark), #7a2a1a 55%, var(--maroon));
}
.notice-popup-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice-popup-body{
  padding: 1.35rem 1.5rem 1.5rem;
  text-align: center;
}
.notice-popup-eyebrow{
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.notice-popup-body h2{
  margin: 0 0 .65rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem);
  line-height: 1.3;
  color: var(--maroon-dark);
}
.notice-popup-body h2::after{ display: none; }
.notice-popup-body > p{
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.65;
}
.notice-popup-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}

@media (max-width: 480px){
  .notice-popup{ padding: .85rem; }
  .notice-popup-body{ padding: 1.15rem 1.1rem 1.25rem; }
  .notice-popup-actions{ flex-direction: column; }
  .notice-popup-actions .btn{ width: 100%; }
}

@media (prefers-reduced-motion: reduce){
  .notice-popup,
  .notice-popup-dialog,
  .notice-popup-close{
    transition: none;
  }
  .notice-popup-dialog{ transform: none; }
}

/* =========================================================
   Donation wizard (Support Our Seva)
========================================================= */
.donate-wizard-section{
  padding-top: 3.25rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 55% 40% at 8% 0%, rgba(200,148,26,.12), transparent 60%),
    radial-gradient(ellipse 45% 35% at 100% 20%, rgba(122,27,27,.06), transparent 55%),
    var(--ivory);
}

.donate-wizard-shell{
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.55fr);
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(200,148,26,.28);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,248,236,.4) inset,
    var(--shadow-soft);
}

.donate-wizard-aside{
  position: relative;
  padding: 2rem 1.65rem 1.85rem;
  background:
    linear-gradient(165deg, rgba(90,18,18,.97) 0%, rgba(122,27,27,.94) 55%, rgba(74,16,16,.98) 100%);
  color: var(--ivory);
  overflow: hidden;
}

.donate-aside-glow{
  position: absolute;
  inset: auto -20% -30% -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(232,196,104,.28), transparent 65%);
  pointer-events: none;
}

.donate-aside-kicker{
  position: relative;
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.donate-wizard-aside h2{
  position: relative;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2rem);
  margin: 0 0 .75rem;
  line-height: 1.25;
}

.donate-aside-lead{
  position: relative;
  color: rgba(255,248,236,.82);
  font-size: .95rem;
  margin: 0 0 1.6rem;
}

.donate-summary{
  position: relative;
  margin: 0 0 1.5rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: rgba(255,248,236,.08);
  border: 1px solid rgba(232,196,104,.22);
  display: grid;
  gap: .85rem;
}

.donate-summary > div{
  display: grid;
  gap: .15rem;
}

.donate-summary dt{
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232,196,104,.9);
}

.donate-summary dd{
  margin: 0;
  color: var(--ivory);
  font-weight: 600;
  font-size: .98rem;
  word-break: break-word;
}

.donate-trust-list{
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.donate-trust-list li{
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255,248,236,.78);
}

.donate-trust-list i{
  color: var(--gold-light);
  margin-top: .12rem;
  flex-shrink: 0;
}

.donate-wizard-main{
  padding: 1.65rem 1.55rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255,248,236,.65), transparent 120px),
    var(--white);
}

.donate-steps{
  margin: 0 0 1.15rem;
}

.donate-steps ol{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.donate-steps li{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .65rem .35rem .35rem;
  border-radius: 999px;
  background: var(--ivory-deep);
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.donate-step-num{
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.donate-steps li.is-active{
  background: rgba(122,27,27,.08);
  border-color: rgba(122,27,27,.2);
  color: var(--maroon-dark);
  box-shadow: 0 4px 14px -8px rgba(122,27,27,.35);
}

.donate-steps li.is-active .donate-step-num{
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
}

.donate-steps li.is-done{
  background: rgba(200,148,26,.12);
  border-color: rgba(200,148,26,.28);
  color: var(--maroon-dark);
}

.donate-steps li.is-done .donate-step-num{
  background: var(--gold);
  color: var(--maroon-dark);
}

.donate-secure-note{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 1.25rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: var(--ivory-deep);
  border: 1px solid var(--stone);
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
}

.donate-secure-note i{ color: var(--gold); }

.donate-panel{
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  animation: donate-panel-in .28s ease;
}

.donate-panel[hidden]{ display: none !important; }

@keyframes donate-panel-in{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

.donate-panel-title{
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.55rem);
  font-weight: 600;
  color: var(--maroon-dark);
  margin: 0 0 .35rem;
  float: none;
  width: auto;
  padding: 0;
}

.donate-panel-sub{
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: .95rem;
}

.donate-field{ margin-bottom: 1.35rem; }

.donate-category-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.donate-category{ margin: 0; cursor: pointer; }
.donate-category input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donate-category-card{
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .7rem;
  row-gap: .1rem;
  align-items: center;
  min-height: 100%;
  padding: .85rem .9rem;
  border-radius: 12px;
  border: 1.5px solid var(--stone);
  background: var(--ivory);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .15s ease;
}

.donate-category-card i{
  grid-row: 1 / span 2;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122,27,27,.08);
  color: var(--maroon);
  font-size: 1.05rem;
}

.donate-category-card strong{
  font-size: .9rem;
  color: var(--maroon-dark);
  font-weight: 700;
  line-height: 1.25;
}

.donate-category-card small{
  grid-column: 2;
  color: var(--ink-soft);
  font-size: .75rem;
  line-height: 1.3;
}

.donate-category:hover .donate-category-card{
  border-color: rgba(194,65,12,.35);
  transform: translateY(-1px);
}



.donate-category input:checked + .donate-category-card{
  border-color: var(--maroon);
  background: linear-gradient(180deg, rgba(122,27,27,.06), rgba(255,248,236,.9));
  box-shadow: 0 8px 20px -12px rgba(122,27,27,.4);
}

.donate-category input:checked + .donate-category-card i{
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
}

.donate-amount-grid{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .85rem;
}

.donate-amount-btn{
  min-width: 5.4rem;
  padding: .55rem .9rem;
  border-radius: 10px;
  border: 1.5px solid var(--stone);
  background: var(--ivory);
  color: var(--maroon-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}

.donate-amount-btn:hover{
  border-color: var(--maroon);
  transform: translateY(-1px);
}

.donate-amount-btn.is-active{
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-color: transparent;
  color: var(--ivory);
  box-shadow: 0 8px 18px -10px rgba(122,27,27,.5);
}

.donate-rupee-input{
  display: flex;
  align-items: stretch;
  max-width: 280px;
  border: 1.5px solid var(--stone);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ivory);
}

.donate-rupee-input > span{
  display: inline-flex;
  align-items: center;
  padding: 0 .85rem;
  background: var(--ivory-deep);
  color: var(--maroon-dark);
  font-weight: 700;
  border-right: 1.5px solid var(--stone);
}

.donate-rupee-input .form-control{
  border: 0;
  border-radius: 0;
  background: transparent;
}

.donate-rupee-input:focus-within{
  border-color: var(--terracotta);
}

.donate-freq{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.donate-freq-option{
  margin: 0;
  cursor: pointer;
}

.donate-freq-option input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donate-freq-option > span{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--stone);
  background: var(--ivory);
  color: var(--maroon-dark);
  font-weight: 600;
  font-size: .88rem;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.donate-freq-option > span em{
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.donate-freq-option.is-disabled{
  cursor: not-allowed;
  opacity: .65;
}

.donate-freq-option input:checked + span{
  background: rgba(122,27,27,.08);
  border-color: var(--maroon);
  color: var(--maroon-dark);
}

.donate-freq-option input:focus-visible + span{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.donate-check{
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: 0;
  font-size: .9rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.donate-check input{
  margin-top: .25rem;
  accent-color: var(--maroon);
  flex-shrink: 0;
}

.donate-field-error{
  margin: .4rem 0 0;
  color: var(--terracotta);
  font-size: .8rem;
  font-weight: 600;
}

.donate-field-hint{
  margin: .35rem 0 0;
  font-size: .78rem;
  color: var(--ink-soft);
}

.donate-review-card{
  border: 1.5px solid var(--stone);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,248,236,.9), var(--white));
  padding: .35rem 1.15rem;
  box-shadow: var(--shadow-card);
}

.donate-review-row{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--stone);
  font-size: .92rem;
}

.donate-review-row:last-child{ border-bottom: 0; }

.donate-review-row > span{
  color: var(--ink-soft);
  font-weight: 600;
}

.donate-review-row > strong{
  color: var(--maroon-dark);
  text-align: right;
  font-weight: 700;
}

.donate-review-note > strong{
  max-width: 65%;
  font-weight: 600;
}

.donate-online-pay{
  display: grid;
  gap: 1rem;
}

.donate-online-pay-amount{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  border: 1.5px solid rgba(200,148,26,.35);
  background:
    linear-gradient(135deg, rgba(122,27,27,.06), rgba(255,248,236,.95));
}

.donate-online-pay-amount span{
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.donate-online-pay-amount strong{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem);
  color: var(--maroon-dark);
  font-weight: 700;
}

.donate-online-methods{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.donate-online-methods li{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: var(--ivory-deep);
  border: 1px solid var(--stone);
  color: var(--maroon-dark);
  font-size: .85rem;
  font-weight: 600;
}

.donate-online-methods i{ color: var(--gold); }

.donate-pay-hint{
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(200,148,26,.1);
  border: 1px solid rgba(200,148,26,.28);
}

.donate-pay-hint i{
  color: var(--gold);
  margin-top: .15rem;
}

.donate-pay-hint p{
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
}

.donate-pay-hint a{
  color: var(--maroon);
  font-weight: 700;
  text-decoration: underline;
}

.donate-complete{
  text-align: center;
  padding: .5rem 0 0.25rem;
}

.donate-complete-icon{
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  font-size: 1.85rem;
  box-shadow: 0 12px 28px -12px rgba(200,148,26,.65);
}

.donate-complete .donate-panel-title{ margin-bottom: .5rem; }
.donate-complete .donate-panel-sub{
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.donate-complete-ref{
  display: inline-flex;
  flex-direction: column;
  gap: .2rem;
  margin: .25rem auto 1.35rem;
  padding: .85rem 1.35rem;
  border-radius: 12px;
  background: var(--ivory-deep);
  border: 1px solid var(--stone);
  min-width: min(100%, 220px);
}

.donate-complete-ref span{
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.donate-complete-ref strong{
  color: var(--maroon-dark);
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.donate-complete-actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
}

.donate-wizard-actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--stone);
}

.donate-wizard-actions .btn{ min-width: 7.5rem; }

.donate-wizard-actions[data-step="5"]{ display: none; }

@media (max-width: 991.98px){
  .donate-wizard-shell{
    grid-template-columns: 1fr;
  }
  .donate-wizard-aside{
    padding: 1.5rem 1.35rem 1.4rem;
  }
  .donate-trust-list{
    display: none;
  }
}

@media (max-width: 640px){
  .donate-wizard-section{ padding-top: 2.25rem; }
  .donate-wizard-main{ padding: 1.25rem 1rem 1.15rem; }
  .donate-category-grid{ grid-template-columns: 1fr; }
  .donate-step-label{ display: none; }
  .donate-steps li{
    padding: .3rem;
  }
  .donate-wizard-actions{
    flex-direction: column-reverse;
  }
  .donate-wizard-actions .btn{ width: 100%; }
}

@media (prefers-reduced-motion: reduce){
  .donate-panel{ animation: none; }
  .donate-category-card,
  .donate-amount-btn{
    transition: none;
  }
}