:root {
  --ink: #1A1A1A;
  --ink-soft: #3D4A52;
  --ink-mute: #5C6B73;
  --paper: #EAF4F8;
  --paper-soft: #FFFFFF;
  --stone: #E8EEF0;
  --lake: #1B4D5C;
  --lake-deep: #143940;
  --lake-mist: #D8E4E8;
  --sun: #F0C93A;
  --sun-deep: #E0B020;
  --tile-ink: #3B2A6E;
  --kumkum: #B91C1C;
  --kumkum-deep: #911616;
  --line: rgba(26, 26, 26, 0.12);
  --line-soft: rgba(26, 26, 26, 0.07);
  --shadow: 0 14px 36px rgba(40, 30, 80, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 118px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--lake); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

nav.primary {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(244, 247, 248, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
nav.primary.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 24px rgba(20, 57, 64, 0.06);
}
nav.primary .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark { width: 44px; height: 44px; overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}
.logo-text .sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lake);
  margin-top: 3px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }
.nav-cta {
  background: var(--kumkum) !important;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--kumkum-deep) !important; }
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: auto;
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

/* —— Site header + menu —— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 8px 24px rgba(20, 57, 64, 0.04);
}
.site-top .container {
  padding-left: 16px;
  padding-right: 16px;
}
.site-top-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.site-brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
}
.site-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.15;
}
.site-brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.site-brand-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}

/* legacy class hooks still used on some pages */
.site-logo { display: none; }
.site-org-name { display: none; }

.site-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.site-top-actions .top-book { display: none !important; }
.top-book {
  background: var(--lake);
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 11px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.top-book:hover { background: var(--lake-deep); }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.menu-btn:hover {
  border-color: var(--lake);
  background: var(--paper);
}
.menu-btn-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 16px;
}
.menu-btn-bars i {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
}
.menu-btn-label { letter-spacing: 0.02em; }
.menu-pill { display: none !important; }

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 48, 0.48);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.24s linear;
}
.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 94vw);
  height: 100%;
  background: #fff;
  z-index: 150;
  box-shadow: -16px 0 48px rgba(20, 57, 64, 0.18);
  display: flex;
  flex-direction: column;
  transform: translate3d(104%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s linear;
  will-change: transform;
}
.site-menu.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}
/* Keep [hidden] for a11y/initial state, but allow animated open via .is-open */
.site-menu[hidden]:not(.is-open),
.menu-backdrop[hidden]:not(.is-open) {
  display: none !important;
}
.site-menu.is-open {
  display: flex !important;
}
.menu-backdrop.is-open {
  display: block !important;
}

.menu-btn-bars i {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease;
  transform-origin: center;
}
.menu-btn[aria-expanded="true"] .menu-btn-bars i:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-btn-bars i:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] .menu-btn-bars i:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .menu-backdrop,
  .site-menu,
  .site-menu-nav a,
  .menu-btn-bars i {
    transition: none !important;
  }
  .site-menu { transform: none; }
  .site-menu:not(.is-open) { visibility: hidden; }
  .site-menu-nav a {
    opacity: 1 !important;
    transform: none !important;
  }
}

.site-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #f7fbfc 0%, #fff 100%);
}
.site-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.site-menu-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-menu-brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}
.site-menu-brand span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
}
.menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.menu-close:hover {
  border-color: var(--lake);
  color: var(--lake);
}

.site-menu-nav {
  overflow: auto;
  padding: 10px 12px 20px;
  flex: 1;
}
.site-menu-label {
  margin: 14px 12px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.site-menu-nav a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  opacity: 0;
  transform: translate3d(10px, 0, 0);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-menu.is-open .site-menu-nav a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.site-menu.is-open .site-menu-nav a:nth-of-type(1) { transition-delay: 0.04s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(2) { transition-delay: 0.06s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(3) { transition-delay: 0.08s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(4) { transition-delay: 0.1s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(5) { transition-delay: 0.12s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(6) { transition-delay: 0.14s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(7) { transition-delay: 0.16s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(8) { transition-delay: 0.18s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(9) { transition-delay: 0.2s; }
.site-menu.is-open .site-menu-nav a:nth-of-type(n+10) { transition-delay: 0.22s; }
.site-menu-nav a:hover {
  background: var(--paper);
  color: var(--lake-deep);
}

.site-menu-foot {
  padding: 16px 18px 22px;
  border-top: 1px solid var(--line-soft);
  background: #f7fbfc;
}
.site-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  background: var(--lake);
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
}
.site-menu-cta:hover { background: var(--lake-deep); }

@media (min-width: 781px) {
  .site-brand-mark { width: 56px; height: 56px; }
  .site-brand-name { font-size: 22px; }
  .site-brand-meta { font-size: 13px; }
  .site-top-inner { min-height: 74px; }
}

@media (max-width: 640px) {
  .top-book { display: none; }
  .site-brand-name { font-size: 17px; }
  .site-brand-meta { font-size: 11px; }
  .site-brand-mark { width: 44px; height: 44px; }
  .site-top-inner { min-height: 60px; }
}

.hub-wireframe {
  padding: 0 !important;
  margin: 0 !important;
  background: var(--paper);
}
.page-wireframe .hub-wireframe {
  padding: 0 !important;
}
.tile-grid-wf {
  max-width: 980px;
  margin: 0 auto;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr) !important;
}
.hub-wireframe .container {
  padding-top: 4px;
  padding-bottom: 10px;
}
.tile-grid-wf .tile {
  border-radius: 18px;
  min-height: 0;
  aspect-ratio: auto;
  height: auto;
  padding: 0;
  display: block;
  text-decoration: none;
  border: 0 !important;
  background: transparent !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.tile-grid-wf .tile-img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.tile-grid-wf .tile-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}


/* Hero banner + carousel/slider + CTA */
.hero-banner {
  position: relative;
  margin: 0;
  background: var(--lake-deep);
}
.hero-slider {
  position: relative;
  min-height: min(72vh, 560px);
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroKen 14s var(--ease) both;
}
.hero-slide.is-active img { animation-name: heroKen; }
@keyframes heroKen {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 22, 0.2) 0%,
    rgba(10, 18, 22, 0.35) 40%,
    rgba(10, 18, 22, 0.72) 72%,
    rgba(10, 18, 22, 0.88) 100%
  );
}
.hero-slide-copy {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 168px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 48px);
  color: #fff;
  max-width: 800px;
  width: 100%;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 8px;
}
.hero-slide-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}
.hero-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px clamp(16px, 4vw, 40px) 22px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kumkum);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 2px;
}
.hero-cta:hover { background: var(--kumkum-deep); }
.hero-cta--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
}
.hero-cta--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  order: 2;
}
.hero-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.hero-nav:hover { background: rgba(0,0,0,0.4); }
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.hero-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}
.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 460px);
  margin: 0;
  order: 1;
}
.hero-thumb {
  border: 2px solid transparent;
  padding: 0;
  margin: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  opacity: 0.72;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-thumb:hover { opacity: 0.95; }
.hero-thumb.is-active {
  opacity: 1;
  border-color: var(--sun);
  transform: translateY(-1px);
}
.connect-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ec0c8;
  margin-bottom: 12px;
}
.articles-more {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.articles-more:hover {
  border-color: var(--lake);
  color: var(--lake);
  background: rgba(20, 57, 64, 0.04);
}
.articles-more.is-done { display: none; }
.article-item.is-extra[hidden],
.article-card.is-extra[hidden] { display: none !important; }
.articles-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.article-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 18px 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.article-card:hover {
  border-color: var(--lake-mist);
  transform: translateY(-2px);
}
.article-card .date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 8px;
}
.article-card h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}
.article-card h4 small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-top: 6px;
  letter-spacing: 0;
}
@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-slider { min-height: min(62vh, 480px); }
  .hero-slide-copy { bottom: 132px; padding: 0 16px; }
  .hero-thumbs { width: min(100%, 300px); gap: 5px; }
  .articles-cards { grid-template-columns: 1fr; }
  .events-list--pair { grid-template-columns: 1fr; }
  .tile-grid-wf {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .container { padding-left: 18px; padding-right: 18px; }
  .sub-hero { padding: 28px 0 36px; }
  .sub-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .sub-hero p { font-size: 16px; }
  .catalog { padding: 40px 0 28px; }
  .catalog-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
  }
  .catalog-tabs::-webkit-scrollbar { display: none; }
  .catalog-tab {
    flex: 0 0 auto;
    padding: 12px 14px;
    white-space: nowrap;
  }
  .booking-form { padding: 24px 18px; }
  .sankalpa-section { padding: 48px 0 64px; }
  .content-block { padding: 40px 0 56px; }
  .temple-facts { gap: 10px; }
  .temple-row .thumb { min-height: 220px; }
  .wf-footer-links { gap: 10px 16px; }
  .menu-btn { min-height: 44px; padding: 0 14px 0 12px; }
  .menu-btn-label { font-size: 13px; }
}

.wf-section-note { margin-bottom: 28px; }

.wf-footer {
  background: linear-gradient(180deg, #16424a 0%, var(--lake-deep) 58%);
  color: rgba(255, 255, 255, 0.92);
  padding: 44px 0 24px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: 8px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.footer-brand img {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.footer-brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}
.footer-brand span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}
.connect-block { margin-bottom: 0; }
.connect-label,
.wf-footer-social .social-tag { display: none !important; }
.wf-footer-map { display: none; }
.wf-footer-social { display: contents; }

.social-btns--icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}
.social-btns--icons > .social-icon-btn,
.social-btns--icons > [role="listitem"] {
  display: inline-flex;
  flex: 0 0 auto;
}
.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(240, 201, 58, 0.65);
  transform: translateY(-1px);
}
.social-icon-btn svg { width: 17px; height: 17px; }

.wf-footer-links {
  list-style: none;
  margin: 18px 0 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 2px;
}
.wf-footer-links a,
.wf-footer-links li a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 7px 11px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.wf-footer-links a:hover,
.wf-footer-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.wf-footer-links li { margin: 0; display: contents; }

.wf-footer-social .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
}


.promo-popup {
  border: 0;
  padding: 0;
  max-width: min(440px, calc(100vw - 32px));
  background: transparent;
}
.promo-popup::backdrop { background: rgba(20, 57, 64, 0.72); }
.promo-card {
  background: #fff;
  padding: 28px 24px 24px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.promo-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tile-ink);
  margin-bottom: 10px;
}
.promo-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.promo-card p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.promo-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

nav.primary { display: none; }
.page-wireframe nav.primary { display: none; }

/* keep secondary pages usable with classic nav when present */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s;
  font-family: inherit;
  border-radius: 2px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--kumkum); color: #fff; }
.btn-primary:hover { background: var(--kumkum-deep); }
.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--lake);
}
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5.5vw, 58px); margin-bottom: 16px; }
h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
h3 { font-size: 24px; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--lake); }
.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 38rem;
}

/* —— Hub tiles (customer wireframe) —— */
.hub {
  padding: 28px 0 20px;
  background:
    radial-gradient(ellipse at 50% 0%, #dceef5 0%, transparent 55%),
    linear-gradient(180deg, #e8f3f7 0%, var(--paper) 100%);
}
.hub-intro {
  text-align: center;
  margin-bottom: 28px;
}
.hub-intro .brand-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 10px;
}
.hub-intro h1 {
  font-size: clamp(28px, 4vw, 40px);
  max-width: 18ch;
  margin: 0 auto 10px;
}
.hub-intro p {
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 auto;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.tile {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: var(--lake);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  padding: 20px;
  text-align: center;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(20, 57, 64, 0.12);
}
.tile.is-active {
  background: var(--sun);
  border-color: transparent;
  color: var(--lake-deep);
}
.tile-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.tile-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}
.tile-label {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
}

.hub-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 28px auto 0;
  max-width: 920px;
  padding-top: 8px;
}
.hub-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lake);
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
}
.hub-links a:hover {
  border-bottom-color: var(--sun);
  color: var(--ink);
}

.promo-banner {
  background: var(--lake-deep);
  color: #fff;
  padding: 14px 0;
}
.promo-banner.is-hidden { display: none; }
.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-banner strong {
  display: inline-block;
  margin-right: 10px;
  color: var(--sun);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.promo-banner span { color: rgba(255,255,255,0.9); font-size: 15px; }
.promo-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-dismiss {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  border-radius: 2px;
}

/* —— Home sections —— */
.home-section {
  padding: 72px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--line-soft);
}
.home-section--tint { background: var(--stone); }
.section-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.section-split h2 { margin-bottom: 0; }
.text-link {
  color: var(--kumkum);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link:hover { text-decoration: underline; }

.temples-stack { display: grid; gap: 36px; }
.temple-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}
.temple-row:nth-child(even) { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.temple-row:nth-child(even) .temple-copy { order: -1; }
.temple-row .thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--stone);
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
}
.temple-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.temple-row .thumb:hover img { transform: scale(1.03); }
.temple-copy .loc {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lake);
  margin: 10px 0 14px;
}
.temple-copy p { color: var(--ink-soft); max-width: 34rem; }
.temple-facts {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  max-width: 36rem;
}
.temple-facts li {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.temple-facts strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 4px;
}
@media (min-width: 901px) {
  .temple-facts {
    grid-template-columns: 1fr;
  }
}

.events-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.events-list--pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}
.event-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.event-card:hover {
  border-color: var(--lake-mist);
  transform: translateY(-2px);
}
.event-date {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: var(--lake);
  margin-bottom: 10px;
}
.event-date small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.event-card h3 { font-size: 22px; margin-bottom: 8px; }
.event-card p { color: var(--ink-soft); font-size: 15px; }

.worship-brief {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.worship-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 213, 168, 0.35) 0%, transparent 55%),
    var(--paper);
}
.worship-heading {
  text-align: center;
  margin: 8px auto 10px;
}
.worship-lede {
  text-align: center;
  margin: 0 auto 32px;
}
.worship-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* Client ref: almost no gutter between columns; icons nearly fill each cell */
  gap: 20px 6px;
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}
.worship-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 2px 1px 8px;
  border-radius: 12px;
  transition: transform 0.28s var(--ease);
  min-width: 0;
}
.worship-item:hover {
  transform: translateY(-4px);
}
.worship-item:hover .worship-item-name {
  color: var(--kumkum);
}
.worship-item:hover .worship-item-media {
  border-color: rgba(185, 28, 28, 0.55);
  box-shadow:
    0 0 0 3px rgba(185, 28, 28, 0.08),
    0 12px 24px rgba(20, 57, 64, 0.14);
}
.worship-item:focus-visible {
  outline: 2px solid var(--lake);
  outline-offset: 4px;
}
.worship-item-media {
  /* ~90% of column — matches "very little gap" reference photo */
  width: 90%;
  max-width: 168px;
  aspect-ratio: 1;
  height: auto;
  margin: 0 0 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff 0%, #F7F1E6 55%, #EDE3D0 100%);
  border: 1.5px solid rgba(184, 140, 60, 0.45);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.7),
    0 6px 14px rgba(20, 57, 64, 0.1);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition:
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.worship-item-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.worship-item-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  width: 100%;
  padding: 0 2px;
}
.worship-item-blurb {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-mute);
  margin: 0;
  max-width: none;
  width: 100%;
  padding: 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.worship-grid-more {
  text-align: center;
  margin: 32px 0 0;
}
.worship-grid-more a {
  color: var(--lake);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.worship-grid-more a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .worship-grid {
    gap: 16px 4px;
    max-width: 100%;
  }
  .worship-item-media {
    width: 92%;
    max-width: 140px;
    height: auto;
  }
  .worship-item-name { font-size: 13.5px; }
  .worship-item-blurb { font-size: 11.5px; }
}
@media (max-width: 520px) {
  .worship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 8px;
  }
  .worship-item {
    padding: 2px 2px 8px;
  }
  .worship-item-media {
    width: 88%;
    max-width: 132px;
    height: auto;
    margin-bottom: 8px;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.65),
      0 6px 14px rgba(20, 57, 64, 0.1);
  }
  .worship-item-name { font-size: 13.5px; }
  .worship-item-blurb {
    font-size: 11.5px;
    line-height: 1.3;
  }
}

.articles-list { display: grid; gap: 0; }
.article-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}
.article-item:first-child { border-top: 1px solid var(--line-soft); }
.article-item .date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lake);
}
.article-item h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}
.article-item h4 small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0;
}
.article-item .arrow { color: var(--lake); font-size: 18px; }

.sub-hero {
  /* site-top is sticky (in flow) — do not offset for old fixed --nav-h */
  padding: 28px 0 36px;
  background:
    radial-gradient(ellipse at 10% 0%, var(--lake-mist) 0%, transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.sub-hero p { color: var(--ink-soft); max-width: 40rem; font-size: 18px; }
@media (max-width: 780px) {
  .sub-hero { padding: 20px 0 28px; }
}

.catalog { padding: 72px 0 40px; background: var(--paper-soft); }
.catalog-intro { max-width: 42rem; margin-bottom: 40px; }
.catalog-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.catalog-tab {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-mute);
  cursor: pointer;
  margin-bottom: -1px;
}
.catalog-tab .count { margin-left: 6px; opacity: 0.7; }
.catalog-tab.active { color: var(--lake); border-bottom-color: var(--lake); }
.catalog-list { display: none; gap: 14px; }
.catalog-list.active { display: grid; }
.puja-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px 22px;
  align-items: center;
  padding: 20px 24px;
  min-height: 112px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.puja-card--noicon {
  grid-template-columns: 1fr auto;
}
.puja-card:hover { background: #fff; border-color: var(--lake-mist); }
.puja-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 28%, #fff 0%, #F7F1E6 55%, #EDE3D0 100%);
  border: 1.5px solid rgba(184, 140, 60, 0.4);
  box-shadow: 0 4px 12px rgba(20, 57, 64, 0.08);
  display: grid;
  place-items: center;
}
.puja-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.puja-body { min-width: 0; }
.puja-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 6px;
}
.puja-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.puja-purpose {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  max-width: 52ch;
}
.puja-book {
  color: var(--kumkum);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.sankalpa-section {
  padding: 72px 0 100px;
  background: var(--stone);
  border-top: 1px solid var(--line-soft);
}
.sankalpa-header { max-width: 42rem; margin-bottom: 36px; }
.sankalpa-definition { color: var(--ink-soft); }
.sankalpa-definition em { font-style: italic; color: var(--lake); }
.booking-wrapper { max-width: 760px; }
.booking-form {
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.booking-step-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: var(--lake);
}
.booking-step-text { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 18px; }
.form-group label,
.intention-head label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-group label.required::after,
.intention-head label.required::after { content: " *"; color: var(--kumkum); }
.form-group input,
.form-group select,
.form-group textarea,
.intention-field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 2px;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.intention-field textarea:focus {
  border-color: var(--lake);
  box-shadow: 0 0 0 3px rgba(27, 77, 92, 0.12);
}
.form-hint { font-size: 13px; color: var(--ink-mute); }
.intention-field { margin-bottom: 18px; }
.intention-prompt { font-size: 14px; color: var(--ink-soft); margin: 8px 0 12px; }
.intention-field textarea { width: 100%; min-height: 160px; resize: vertical; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.form-note { font-size: 14px; color: var(--ink-mute); max-width: 28rem; }
.form-submit button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--kumkum);
  color: #fff;
  border: 0;
  padding: 14px 26px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.form-submit button:disabled { opacity: 0.6; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.form-success.show { display: block; }
.booking-wrapper.submitted .booking-form { display: none; }
.form-success svg { width: 48px; height: 48px; color: var(--lake); margin: 0 auto 18px; }
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); max-width: 34rem; margin: 0 auto; }

.festivals { padding: 64px 0 100px; background: var(--paper-soft); }
.festivals-header { max-width: 40rem; margin-bottom: 36px; }
.festivals-grid { display: grid; gap: 12px; }
.festival-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
}
.festival-row:hover { background: #fff; border-color: var(--lake-mist); }
.festival-date {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: var(--lake);
}
.festival-date small {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.festival-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  margin-bottom: 6px;
}
.festival-desc { color: var(--ink-soft); font-size: 15px; }
.festival-link {
  color: var(--kumkum);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  align-self: center;
}
.festivals-past {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line-soft);
}
.festivals-fb-link { margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.festivals-fb-link a { color: var(--lake); text-decoration: none; }
.fest-note {
  margin-top: 40px;
  padding: 28px 30px;
  background: var(--lake);
  color: #fff;
  display: grid;
  gap: 10px;
  max-width: 52rem;
}
.fest-note h3 { color: #fff; font-size: 28px; }
.fest-note p { color: rgba(255,255,255,0.88); }

.hmsai-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.hmsai-purpose {
  background: var(--stone);
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
}
.hmsai-purpose h3 { margin-bottom: 12px; }
.hmsai-purpose p { color: var(--ink-soft); margin-top: 10px; }
.hmsai-purpose strong { color: var(--ink); font-weight: 600; }

/* HMSAI page: less vertical air between hero / body / history */
body:has(.hmsai-body) .sub-hero { padding-bottom: 36px; }
body:has(.hmsai-body) .content-block { padding: 40px 0 48px; }
body:has(.hmsai-body) .content-block + .content-block { padding-top: 36px; }
body:has(.hmsai-body) .hmsai-body .lede + .lede { margin-top: 14px !important; }
body:has(.hmsai-body) .hmsai-body .btn { margin-top: 22px !important; }

footer {
  background: var(--lake-deep);
  color: rgba(255,255,255,0.88);
  padding: 56px 0 32px;
}
.footer-inner { display: grid; gap: 28px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer .logo { color: #fff; }
footer .logo-text .sub { color: #9ec0c8; }
.footer-blessing {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  margin-top: 14px;
  max-width: 28rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-cols h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ec0c8;
  margin-bottom: 14px;
}
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer-cols a:hover { color: #fff; }
.footer-mega {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 8px;
}
.footer-mega h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ec0c8;
  margin-bottom: 14px;
}
.footer-mega ul { list-style: none; }
.footer-mega li { margin-bottom: 10px; }
.footer-mega a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer-mega a:hover { color: #fff; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  list-style: none;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer-nav a:hover { color: #fff; }

.content-block { padding: 56px 0 100px; background: var(--paper-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--stone);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
  position: relative;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap {
  display: block;
  padding: 10px 12px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
}
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.narrow { max-width: 720px; }

/* —— About page —— */
.about-hero-photo {
  margin: 0;
  max-height: min(48vh, 420px);
  overflow: hidden;
  background: var(--lake-deep);
}
.about-hero-photo img {
  width: 100%;
  height: min(48vh, 420px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.about-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-mosaic-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--stone);
  border-radius: 2px;
  min-height: 180px;
}
.about-mosaic-item--wide { grid-column: 1 / -1; min-height: 240px; }
.about-mosaic-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.about-mosaic-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(10, 18, 22, 0.78));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.about-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}
.about-map {
  position: relative;
  border: 1px solid var(--line-soft);
  background: var(--stone);
  min-height: 320px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(20, 57, 64, 0.08);
}
.about-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
}
.btn-ghost:hover {
  border-color: var(--lake);
  color: var(--lake);
}
@media (max-width: 900px) {
  .about-visit { grid-template-columns: 1fr; }
  .about-map { min-height: 280px; }
}
@media (max-width: 520px) {
  .about-hero-photo,
  .about-hero-photo img { height: 200px; max-height: 200px; }
  .about-mosaic { gap: 10px; }
  .about-mosaic-item { min-height: 140px; }
  .about-mosaic-item--wide { min-height: 180px; }
}

.heritage-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}
.heritage-split--flip { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.heritage-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--stone);
  border: 1px solid var(--line-soft);
  min-height: 280px;
}
.heritage-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.heritage-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(10, 18, 22, 0.78));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .heritage-split,
  .heritage-split--flip { grid-template-columns: 1fr; }
  .heritage-split--flip .heritage-photo { order: -1; }
  .heritage-photo,
  .heritage-photo img { min-height: 220px; }
}

/* —— Support page —— */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.support-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 22px 18px;
}
.support-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.support-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.support-ways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}
.support-way h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  margin-bottom: 10px;
}
.support-way p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 980px) {
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .support-grid,
  .support-ways { grid-template-columns: 1fr; }
}

.content-card {
  background: var(--stone);
  border: 1px solid var(--line-soft);
  padding: 24px 22px;
}
.content-card h3 { margin-bottom: 14px; font-size: 22px; }
.detail-list { list-style: none; }
.detail-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 15px;
}
.detail-list.large li { font-size: 17px; padding: 14px 0; }
.detail-list strong {
  display: inline-block;
  min-width: 110px;
  color: var(--ink);
  font-weight: 700;
}
.detail-list a { color: var(--lake); text-decoration: none; font-weight: 600; }
.detail-list a:hover { text-decoration: underline; }
.note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}
.donation-box {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--stone);
  border: 1px solid var(--line-soft);
}
.donation-qr {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px dashed var(--line);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: var(--ink-mute);
}
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.committee-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 22px 20px;
}
.committee-card h3 { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lake); margin-bottom: 8px; font-family: "Source Sans 3", sans-serif; font-weight: 700; }
.committee-card p { font-family: "Fraunces", Georgia, serif; font-size: 22px; margin-bottom: 6px; }
.committee-card span { font-size: 13px; color: var(--ink-mute); }
.timeline { list-style: none; margin-top: 28px; }
.timeline li {
  padding: 14px 0 14px 20px;
  border-left: 2px solid var(--lake-mist);
  color: var(--ink-soft);
}
.timeline strong { color: var(--lake); margin-right: 10px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}
.social-icon svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}
.footer-bottom .version-tag {
  opacity: 0.75;
}
.footer-mantra em,
.footer-bottom em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}
.version-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.photo-lightbox {
  border: 0;
  padding: 0;
  max-width: min(920px, calc(100vw - 32px));
  width: 100%;
  background: transparent;
}
.photo-lightbox::backdrop { background: rgba(20, 57, 64, 0.78); }
.photo-lightbox-inner { position: relative; background: #fff; }
.photo-lightbox-inner img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--stone);
}
.photo-lightbox-meta { padding: 16px 20px 20px; display: grid; gap: 4px; }
.photo-lightbox-meta strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
}
.photo-lightbox-meta span { font-size: 14px; color: var(--ink-soft); }
.photo-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(255,255,255,0.9);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .temple-row,
  .temple-row:nth-child(even) { grid-template-columns: 1fr; }
  .temple-row:nth-child(even) .temple-copy { order: 0; }
  .events-list { grid-template-columns: 1fr; }
  .worship-brief,
  .hmsai-body { grid-template-columns: 1fr; }
  .festival-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-mega { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .committee-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .donation-box { grid-template-columns: 1fr; }
  .booking-steps,
  .form-row { grid-template-columns: 1fr; }
  .puja-card {
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
    padding: 18px 16px;
    min-height: 0;
  }
  .puja-card--noicon {
    grid-template-columns: 1fr;
  }
  .puja-icon {
    width: 64px;
    height: 64px;
    grid-row: 1 / span 2;
  }
  .puja-book {
    grid-column: 2;
    justify-self: start;
  }
  .puja-card--noicon .puja-book {
    grid-column: 1;
  }
  .puja-name { font-size: 20px; }
  .puja-purpose { font-size: 14px; }
}

@media (max-width: 780px) {
  .mobile-toggle { display: inline-grid; place-items: center; }
  .wf-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 0 12px;
  }
  .wf-nav.mobile-open { display: flex; }
  .wf-nav a { display: block; padding: 12px 0; font-size: 20px; }
  .wf-footer-map { grid-template-columns: 1fr 1fr; }
  .wf-name { display: none; }
  .tile-grid-wf .tile { border-radius: 14px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li a { display: block; padding: 14px 28px; }
  .nav-cta { margin: 8px 28px 16px; text-align: center; }
  .tile { border-radius: 22px; }
  .article-item { grid-template-columns: 1fr auto; }
  .article-item .date { grid-column: 1 / -1; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-mega { grid-template-columns: 1fr; }
  .committee-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tile, .btn, .event-card, .temple-row .thumb img { transition: none !important; }
}


@media (max-width: 480px) {
  .site-org strong { font-size: 11px; max-width: 88px; }
  .site-org span { display: none; }
  .site-org-name .org-line--brand { font-size: 18px; }
  .site-org-name .org-line--sub { font-size: 12px; }
  .site-org-name .org-line--meta { font-size: 10px; }
  .top-book { padding: 8px 10px; font-size: 10px; }
  .menu-pill { min-width: 48px; min-height: 42px; padding: 5px 8px; }
}

/* —— Festival month calendar (pro) —— */
.cal-shell { margin-bottom: 56px; }

.cal-frame {
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px rgba(20, 57, 64, 0.06);
  overflow: hidden;
}

.cal-frame.is-updating {
  animation: cal-fade 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cal-fade {
  from { opacity: 0.92; transform: translateY(2px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cal-frame.is-updating { animation: none; }
}

.cal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.cal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cal-month-block { min-width: 10rem; }
.cal-eyebrow {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cal-month-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.cal-nav-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--lake-deep);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.cal-nav-btn:hover {
  border-color: var(--lake);
  color: var(--lake);
  background: var(--paper);
}
.cal-today-btn {
  margin-left: 4px;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--ink-soft);
  font-family: "Source Sans 3", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.cal-today-btn:hover {
  border-color: var(--lake);
  color: var(--lake);
  background: var(--paper);
}

.cal-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cal-seg {
  display: inline-flex;
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 3px;
  gap: 2px;
}
.cal-seg-btn {
  border: 0;
  background: transparent;
  padding: 7px 14px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.cal-seg-btn.is-active {
  background: var(--lake);
  color: #fff;
}
.cal-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
.cal-toggle input {
  accent-color: var(--lake);
  width: 15px;
  height: 15px;
}

.cal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.85fr);
  align-items: stretch;
  min-height: 520px;
}
.cal-board {
  padding: 0;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--line-soft);
  background: #f4f8fa;
}
.cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 12px 4px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  flex: 1;
}
.cal-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 102px;
  padding: 10px 8px 8px;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  transition: background 0.15s ease;
}
.cal-cell:nth-child(7n) { border-right: 0; }
.cal-cell.is-blank {
  background: #fafcfd;
  cursor: default;
}
.cal-cell:not(.is-blank):hover { background: #f7fbfc; }
.cal-cell.is-today .cal-daynum {
  background: var(--lake);
  color: #fff;
}
.cal-cell.has-event { background: #fff; }
.cal-cell.is-past { opacity: 0.55; }
.cal-cell.is-selected {
  background: #eef6f8;
  box-shadow: inset 0 0 0 2px var(--lake);
  z-index: 1;
}
.cal-cell.is-lunar-special .cal-moon { color: var(--sun-deep); }

.cal-cell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.cal-daynum {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.cal-moon {
  font-size: 9px;
  line-height: 1;
  color: var(--sun-deep);
}
.cal-tithi {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.cal-frame:not(.show-panchang) .cal-leg-lunar { display: none; }

.cal-event-stack {
  margin-top: auto;
  display: grid;
  gap: 3px;
}
.cal-event-pill {
  display: block;
  padding: 3px 6px;
  background: rgba(27, 77, 92, 0.1);
  color: var(--lake-deep);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-left: 2px solid var(--lake);
}
.cal-event-more {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-mute);
  padding-left: 2px;
}

.cal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  background: #f7fbfc;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cal-leg {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfd8dc;
}
.cal-leg--today { background: var(--lake); }
.cal-leg--event {
  border-radius: 2px;
  background: rgba(27, 77, 92, 0.35);
  box-shadow: inset 2px 0 0 var(--lake);
}
.cal-leg--lunar { background: var(--sun-deep); }
.cal-footnote {
  margin: 0;
  font-size: 12px;
  color: var(--ink-mute);
}

.cal-panel {
  padding: 24px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  min-height: 100%;
}
.cal-panel-placeholder { padding-top: 8px; }
.cal-panel-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cal-panel-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 22rem;
}
.cal-panel-empty-box {
  margin-top: 8px;
  padding: 16px;
  border: 1px dashed var(--line-soft);
  background: rgba(255,255,255,0.7);
}
.cal-panel-head { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); }
.cal-panel-date {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.cal-panel-lunar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}
.cal-panel-lunar span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: rgba(27, 77, 92, 0.08);
  color: var(--lake-deep);
  font-size: 12px;
  font-weight: 700;
}
.cal-panel-lunar-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--ink-mute);
}
.cal-panel-events {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.cal-panel-card {
  padding: 16px;
  border: 1px solid var(--line-soft);
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 57, 64, 0.04);
}
.cal-panel-card h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cal-panel-meta {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lake);
}
.cal-panel-desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  background: var(--lake);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.cal-btn:hover { background: var(--lake-deep); }
.cal-btn:active { transform: translateY(1px); }

.cal-list-view { padding: 24px 20px 28px; }

@media (max-width: 980px) {
  .cal-layout { grid-template-columns: 1fr; min-height: 0; }
  .cal-board { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .cal-cell { min-height: 88px; }
  .cal-month-title { font-size: 24px; }
}

@media (max-width: 640px) {
  .cal-toolbar { padding: 14px; }
  .cal-nav { width: 100%; }
  .cal-month-block { flex: 1; min-width: 0; }
  .cal-cell { min-height: 74px; padding: 8px 6px; }
  .cal-daynum { min-width: 24px; height: 24px; font-size: 13px; }
  .cal-event-pill { font-size: 9px; padding: 2px 4px; }
  .cal-tithi { display: none; }
  .cal-panel { padding: 18px 16px; }
  .cal-panel-date { font-size: 22px; }
  .cal-footer { flex-direction: column; align-items: flex-start; }
}

/* —— Mobile polish (phones) —— */
@media (max-width: 520px) {
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body {
    font-size: 16px;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .container { padding-left: 16px; padding-right: 16px; }
  .site-top {
    padding-top: env(safe-area-inset-top);
  }
  .site-brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-slider { min-height: min(58vh, 420px); }
  .hero-slide-copy { bottom: 118px; }
  .hero-slide-copy h2 { font-size: clamp(24px, 7vw, 32px); }
  .hero-kicker { font-size: 11px; }
  .hero-ui { padding: 12px 12px 16px; gap: 10px; }
  .hero-thumbs { display: none; }
  .hero-nav {
    width: 44px;
    height: 44px;
  }
  .hero-dots button {
    width: 11px;
    height: 11px;
  }
  .tile-grid-wf .tile {
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }
  .puja-card {
    grid-template-columns: 56px 1fr;
    gap: 12px 14px;
    padding: 16px 14px;
  }
  .puja-icon { width: 56px; height: 56px; }
  .puja-name { font-size: 18px; margin-bottom: 4px; }
  .puja-purpose { font-size: 13.5px; }
  .puja-book {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
    padding: 12px 14px;
    border: 1px solid rgba(185, 28, 28, 0.25);
    background: rgba(185, 28, 28, 0.04);
    border-radius: 8px;
  }
  .puja-card--noicon { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea,
  .intention-field textarea {
    font-size: 16px; /* avoid iOS zoom on focus */
    min-height: 44px;
  }
  .booking-form { padding: 20px 14px; }
  .btn {
    min-height: 44px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .donation-box { gap: 16px; }
  .donation-qr {
    width: min(180px, 100%);
    margin: 0 auto;
  }
  .site-menu {
    width: min(100vw, 100%);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .wf-footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cal-dow span { font-size: 10px; }
  .cal-cell { min-height: 64px; }
  h1 { margin-bottom: 12px; }
  h2 { font-size: clamp(24px, 7vw, 34px); }
}

/* —— Back to top (mobile + desktop) —— */
.back-to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 160;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--lake);
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 57, 64, 0.28);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.22s linear,
    background 0.15s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.back-to-top:hover { background: var(--lake-deep); }
.back-to-top:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}
@media (min-width: 781px) {
  .back-to-top {
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
  }
  .back-to-top svg {
    width: 24px;
    height: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

/* —— HMSAI / About & Information (client heritage) —— */
.quote-block {
  background: #fff;
  border-left: 3px solid var(--kumkum, #b91c1c);
  padding: 18px 20px 20px;
  margin: 0 0 18px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 8px 24px rgba(20, 57, 64, 0.06);
}
.quote-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lake);
  margin: 0 0 10px;
  line-height: 1.4;
}
.quote-block p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.hmsai-subhead {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 14px;
}
.compact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.compact-list li {
  font-size: 14.5px;
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.compact-list li span {
  color: var(--ink-mute);
  font-size: 13px;
  margin-left: 6px;
}
.presidents-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.presidents-list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  align-items: baseline;
}
.presidents-list li span {
  color: var(--lake);
  font-weight: 700;
  font-size: 13px;
}
.presidents-list li strong { font-weight: 600; color: var(--ink); }
.decade { margin: 0 0 22px; }
.decade h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.decade ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.5;
}
.decade li { margin: 0 0 6px; }
.decade--open {
  padding: 16px 18px;
  background: rgba(232, 213, 168, 0.35);
  border-radius: 12px;
}
.decade--open .lede { margin: 0; font-size: 14.5px; }
.article-body h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  margin: 28px 0 10px;
}
.year-festivals {
  margin-top: 48px;
  padding-top: 8px;
}
/* Month-by-month Tyohar list — 2 columns like Port Louis */
.year-festivals-plain {
  margin-top: 24px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.yf-month-block {
  margin: 0;
  padding: 18px 18px 14px;
  border: 0;
  border-radius: 12px;
  background: #e6f0f3;
}
.yf-month-block:nth-child(1)  { background: #e3eef2; }
.yf-month-block:nth-child(2)  { background: #e8f1f4; }
.yf-month-block:nth-child(3)  { background: #eaf3ea; }
.yf-month-block:nth-child(4)  { background: #f0f4e8; }
.yf-month-block:nth-child(5)  { background: #f3f1e6; }
.yf-month-block:nth-child(6)  { background: #eef2e9; }
.yf-month-block:nth-child(7)  { background: #e7f0ed; }
.yf-month-block:nth-child(8)  { background: #ebeff4; }
.yf-month-block:nth-child(9)  { background: #f2efe8; }
.yf-month-block:nth-child(10) { background: #f1ebe6; }
.yf-month-block:nth-child(11) { background: #ebe8f0; }
.yf-month-block:nth-child(12) { background: #e6eef3; }
.yf-month-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--lake-deep);
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(20, 57, 64, 0.12);
  letter-spacing: 0;
  text-transform: none;
}
.yf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 16px;
}
.yf-row {
  margin: 0;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  min-width: 0;
}
.yf-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px;
  line-height: 1.3;
}
.yf-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 57, 64, 0.25);
}
.yf-name a:hover { color: var(--kumkum); border-color: var(--kumkum); }
.yf-date {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.35;
}
.yf-tithi {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 3px 0 0;
  line-height: 1.35;
}
@media (min-width: 700px) {
  .yf-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .presidents-list li { grid-template-columns: 1fr; gap: 2px; }
  .yf-month-block { padding: 14px 12px 12px; }
  .yf-row { padding: 11px 12px; }
  .yf-month-title { font-size: 18px; }
}

/* ===== Sponsors logo grid ===== */
.sponsors-page .sponsors-section-title {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--lake-deep);
  letter-spacing: 0.01em;
}
.sponsors-section-title--spaced {
  margin-top: 48px;
}
.sponsor-logo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.sponsor-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line-soft);
  box-sizing: border-box;
}
.sponsor-logo-cell--ink {
  background: #0f172a;
  border-color: rgba(15, 23, 42, 0.35);
}
.sponsor-logo-cell img {
  display: block;
  width: auto;
  height: auto;
  max-width: 76%;
  max-height: 84px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.sponsor-logo-cell--ink img {
  max-width: 58%;
  max-height: 56px;
}
.sponsor-name-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.sponsor-name-list li {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  line-height: 1.35;
  color: var(--lake-deep);
  text-align: center;
}
.sponsors-note {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 820px) {
  .sponsor-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sponsor-logo-cell { min-height: 132px; padding: 22px 20px; }
  .sponsor-logo-cell img { max-height: 64px; }
}
@media (max-width: 480px) {
  .sponsor-logo-grid { grid-template-columns: 1fr; }
  .sponsor-name-list { grid-template-columns: 1fr; }
  .sponsor-logo-cell { min-height: 120px; }
}
