:root {
  --maroon: #7a1c28;
  --maroon-dark: #5a121c;
  --maroon-deep: #4a0e16;
  --gold: #c9a44c;
  --gold-light: #e8d48b;
  --saffron: #c45c26;
  --cream: #fbf7f0;
  --cream-2: #f3ead8;
  --paper: #fffdf8;
  --text: #3a2a24;
  --muted: #6b5348;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(90, 18, 28, 0.08);
  --radius: 14px;
  --header-h: 78px;
  --font-en-head: "Cormorant Garamond", Georgia, serif;
  --font-en-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-gu-head: "Noto Serif Gujarati", "Noto Sans Gujarati", serif;
  --font-gu-body: "Noto Sans Gujarati", "Source Sans 3", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  color: var(--text);
  background: var(--cream);
  font-family: var(--font-en-body);
  line-height: 1.6;
  overflow-x: hidden;
}

[data-i18n],
.events-list,
.news-list {
  transition: opacity 0.18s ease;
}

body.lang-switching [data-i18n],
body.lang-switching .events-list,
body.lang-switching .news-list {
  opacity: 0.4;
}

html[data-lang="gu"] body,
html[data-lang="gu"] .nav a,
html[data-lang="gu"] .btn,
html[data-lang="gu"] .info-card p,
html[data-lang="gu"] .news-list,
html[data-lang="gu"] .contact-list,
html[data-lang="gu"] .footer {
  font-family: var(--font-gu-body);
}

h1, h2, h3, .logo strong, .hero-tagline, .hero-welcome {
  font-family: var(--font-en-head);
  font-weight: 600;
}

html[data-lang="gu"] h1,
html[data-lang="gu"] h2,
html[data-lang="gu"] h3,
html[data-lang="gu"] .logo strong,
html[data-lang="gu"] .hero-tagline,
html[data-lang="gu"] .hero-welcome,
html[data-lang="gu"] .mantra {
  font-family: var(--font-gu-head);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.pre-line {
  white-space: pre-line;
}

.kicker {
  color: var(--saffron);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

html[data-lang="gu"] .kicker {
  letter-spacing: 0.04em;
  text-transform: none;
}

.kicker.gold {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.btn-primary,
.btn-donate {
  background: var(--maroon);
  color: var(--white);
}

.btn-primary:hover,
.btn-donate:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--maroon-deep);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-donate {
  white-space: nowrap;
  padding: 10px 18px;
}

.text-link {
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.92rem;
  background: none;
}

.text-link:hover {
  color: var(--saffron);
}

.topbar {
  background: var(--paper);
  border-bottom: 1px solid rgba(122, 28, 40, 0.08);
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
}

.mantra {
  color: var(--maroon);
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.lang-btn {
  color: var(--muted);
  font-weight: 600;
}

.lang-btn.is-active {
  color: var(--maroon);
}

.lang-sep {
  opacity: 0.5;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: grid;
  place-items: center;
}

.social a:hover {
  background: var(--saffron);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 28, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.logo strong {
  display: block;
  color: var(--maroon);
  font-size: 1.05rem;
  line-height: 1.2;
}

.logo small {
  display: block;
  color: var(--saffron);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav a,
.nav-more-btn {
  padding: 8px 9px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

html[data-lang="gu"] .nav a,
html[data-lang="gu"] .nav-more-btn {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.86rem;
}

.nav a.is-active,
.nav a:hover,
.nav-more-btn:hover {
  color: var(--maroon);
}

.nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--maroon);
}

.nav-more {
  position: relative;
}

.nav-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid rgba(122, 28, 40, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}

.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-dropdown a:hover {
  background: var(--cream);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1.5px solid rgba(122, 28, 40, 0.18);
  border-radius: 10px;
  background: var(--paper);
  color: var(--maroon);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] {
  border-color: var(--maroon);
  background: var(--cream-2);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(40, 18, 22, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.nav-drawer-head {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--maroon-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.18) 0%, rgba(251, 247, 240, 0.82) 38%, rgba(251, 247, 240, 0.82) 62%, rgba(251, 247, 240, 0.22) 100%),
    linear-gradient(180deg, rgba(90, 18, 28, 0.08), rgba(251, 247, 240, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(760px, calc(100% - 32px));
  padding: 70px 16px 90px;
}

.hero-welcome {
  font-size: 1.2rem;
  color: var(--saffron);
}

.hero h1 {
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.2;
  margin: 6px 0 10px;
}

.hero-place {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--maroon);
  font-weight: 700;
}

html[data-lang="gu"] .hero-place {
  letter-spacing: 0.08em;
  text-transform: none;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0;
}

.gold-divider span {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--maroon);
}

.hero-mantra {
  margin-top: 4px;
  color: var(--saffron);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

.cards-section {
  padding: 36px 0 40px;
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--paper);
  border: 1px solid rgba(122, 28, 40, 0.14);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--maroon);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 3.2em;
  margin-bottom: 12px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--saffron);
  background: rgba(196, 92, 38, 0.1);
  margin-bottom: 12px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.about-section {
  padding: 36px 0 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-copy h2 {
  color: var(--maroon);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-copy p {
  margin-bottom: 12px;
  color: var(--muted);
}

.about-copy .btn {
  margin-top: 10px;
}

.video-card {
  background: linear-gradient(#c9a44c, #8b6a1f);
  padding: 8px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--maroon);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-card figcaption {
  text-align: center;
  color: var(--maroon-deep);
  background: var(--gold-light);
  padding: 10px;
  font-weight: 700;
}

.choth-section {
  padding: 10px 0 50px;
}

.choth-banner {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 164, 76, 0.18), transparent 30%),
    linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  border: 3px solid var(--gold);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 0 6px var(--maroon-deep);
}

.choth-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--gold);
}

.choth-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--gold-light);
  line-height: 1.2;
}

.choth-sub {
  color: var(--gold);
  font-weight: 700;
  margin: 6px 0 10px;
}

.choth-copy p {
  color: rgba(255, 247, 232, 0.9);
  margin-bottom: 16px;
}

.choth-box {
  background: var(--cream);
  color: var(--text);
  border-radius: 14px;
  padding: 18px;
}

.choth-box h3 {
  color: var(--maroon);
  margin-bottom: 12px;
}

.choth-box li {
  list-style: none;
  border-bottom: 1px dashed rgba(122, 28, 40, 0.2);
  padding: 8px 0;
  display: grid;
}

.choth-box li span {
  font-size: 0.8rem;
  color: var(--muted);
}

.choth-box .btn {
  width: 100%;
  margin-top: 14px;
}

.updates-section {
  padding: 10px 0 50px;
}

.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(122, 28, 40, 0.12);
  padding-bottom: 8px;
}

.section-head h2 {
  color: var(--maroon);
  font-size: 1.45rem;
}

.event-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(122, 28, 40, 0.08);
}

.event-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.event-item h4 {
  color: var(--maroon);
  font-size: 1rem;
}

.event-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.news-list {
  list-style: none;
}

.news-list li {
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid rgba(122, 28, 40, 0.08);
  position: relative;
}

.news-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  position: absolute;
  left: 0;
  top: 18px;
}

.news-list time {
  display: block;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
}

.facilities-section {
  background: var(--cream-2);
  padding: 28px 0;
  border-top: 1px solid rgba(122, 28, 40, 0.08);
  border-bottom: 1px solid rgba(122, 28, 40, 0.08);
}

.facilities-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 10px;
  text-align: center;
}

.facility {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
  padding: 4px;
}

.facility span {
  max-width: 9.5em;
}

.facility-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--paper);
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 1000px) {
  .facilities-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
  }
}

@media (max-width: 560px) {
  .facilities-section {
    padding: 22px 0;
  }

  .facilities-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .facility {
    font-size: 0.8rem;
  }

  .facility span {
    max-width: none;
  }

  .facility-icon {
    width: 52px;
    height: 52px;
  }
}

.footer {
  background: var(--maroon-dark);
  color: #f7eadc;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer p,
.footer a,
.footer li {
  color: rgba(247, 234, 220, 0.88);
  font-size: 0.94rem;
}

.footer-cta {
  margin: 12px 0 10px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.footer-links a:hover,
.contact-list a:hover {
  color: var(--gold-light);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
  height: 150px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-light) !important;
  font-weight: 600;
}

.footer-bottom {
  background: var(--maroon-deep);
  padding: 12px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(40, 10, 14, 0.55);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  background: var(--paper);
  width: min(520px, 100%);
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(201, 164, 76, 0.5);
}

.modal-card h3 {
  color: var(--maroon);
  margin-bottom: 12px;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(122, 28, 40, 0.1);
}

.modal-note {
  margin: 12px 0;
  color: var(--muted);
}

.video-frame {
  width: min(860px, 100%);
  padding: 0;
  position: relative;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.close-x {
  position: absolute;
  top: 8px;
  right: 12px;
  color: white;
  font-size: 28px;
  z-index: 2;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px 8px;
}

.modal-card > .close-x {
  color: var(--maroon);
  top: 6px;
  right: 8px;
}

@media (max-width: 1200px) {
  .header {
    z-index: 40;
  }

  .header-inner {
    position: relative;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(310px, 86vw);
    margin: 0;
    padding: 20px 16px 28px;
    background: var(--paper);
    border-left: 1px solid rgba(122, 28, 40, 0.1);
    box-shadow: -16px 0 40px rgba(90, 18, 28, 0.22);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    pointer-events: none;
    flex: none;
  }

  .nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -4px 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(122, 28, 40, 0.1);
  }

  .nav-drawer-title {
    color: var(--maroon);
    font-size: 1.05rem;
    font-weight: 700;
  }

  .nav-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid rgba(122, 28, 40, 0.18);
    background: var(--cream-2);
    color: var(--maroon);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav > a {
    width: 100%;
    padding: 13px 12px;
    text-align: left;
    white-space: normal;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.35;
    box-shadow: none;
  }

  .nav > a:active,
  .nav .nav-dropdown a:active {
    background: var(--cream-2);
  }

  .nav > a.is-active {
    box-shadow: none;
    background: rgba(122, 28, 40, 0.08);
    color: var(--maroon);
    font-weight: 700;
  }

  .nav .nav-more {
    display: grid;
    gap: 2px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(122, 28, 40, 0.1);
  }

  .nav .nav-more-btn {
    display: none;
  }

  .nav .nav-dropdown {
    position: static;
    display: grid;
    gap: 2px;
    box-shadow: none;
    border: 0;
    padding: 0;
    min-width: 0;
    background: transparent;
    border-radius: 0;
  }

  .nav .nav-dropdown a {
    padding: 13px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 41;
  }

  .btn-donate {
    margin-left: auto;
    flex-shrink: 0;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo span {
    min-width: 0;
  }

  .logo strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(52vw, 280px);
  }

  .cards-grid,
  .updates-grid,
  .footer-grid,
  .choth-banner,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choth-banner,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  html {
    scroll-padding-top: 84px;
  }

  .topbar {
    font-size: 0.78rem;
  }

  .topbar-inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 36px;
    padding: 4px 0;
  }

  .mantra {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar-right {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .lang-switch {
    gap: 4px;
  }

  .header-inner {
    gap: 8px;
    min-height: 64px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo strong {
    font-size: 0.92rem;
    max-width: min(48vw, 200px);
  }

  .logo small {
    display: block;
    font-size: 0.65rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(48vw, 200px);
  }

  .btn-donate {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
  }

  .btn-donate span {
    display: none;
  }

  .btn-donate svg {
    width: 18px;
    height: 18px;
  }

  .live-top-link span:last-child {
    display: none;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .cards-grid,
  .updates-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 48px;
  }

  .gallery-grid img {
    height: 110px;
  }
}

@media (max-width: 480px) {
  .topbar .social {
    display: none;
  }

  .lang-btn {
    font-size: 0.78rem;
  }

  .logo strong {
    max-width: 42vw;
    font-size: 0.86rem;
  }
}

/* ========== About Page ========== */
.page-banner {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--cream);
}

.page-banner-media,
.page-banner-overlay {
  position: absolute;
  inset: 0;
}

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  background:
    linear-gradient(100deg, rgba(74, 14, 22, 0.82) 10%, rgba(74, 14, 22, 0.55) 55%, rgba(74, 14, 22, 0.35) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 56px 0 42px;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(251, 247, 240, 0.8);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-banner p {
  color: rgba(251, 247, 240, 0.92);
  max-width: 560px;
}

.section-intro {
  text-align: center;
  margin-bottom: 28px;
}

.section-intro h2 {
  color: var(--maroon);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-intro-section,
.about-story-section {
  padding: 56px 0;
}

.about-intro-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-story-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-intro-copy h2,
.about-story-copy h2 {
  color: var(--maroon);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-intro-copy p,
.about-story-copy p {
  color: var(--muted);
  margin-bottom: 12px;
}

.about-intro-media,
.about-story-media {
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-intro-media img,
.about-story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-highlights-section {
  padding: 20px 0 56px;
  background: linear-gradient(180deg, transparent, rgba(243, 234, 216, 0.45));
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-highlight-card {
  background: var(--paper);
  border: 1px solid rgba(122, 28, 40, 0.12);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
}

.about-highlight-card h3 {
  color: var(--maroon);
  margin: 4px 0 8px;
  font-size: 1.15rem;
}

.about-highlight-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-places-section {
  padding: 20px 0 56px;
}

.about-places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-places-grid article {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 16px;
  box-shadow: var(--shadow);
}

.about-places-grid h3 {
  color: var(--maroon);
  margin-bottom: 6px;
}

.about-places-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.about-trust-section {
  padding: 0 0 56px;
}

.about-trust-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  border: 3px solid var(--gold);
  border-radius: 18px;
  padding: 28px 30px;
}

.about-trust-banner h2 {
  color: var(--gold-light);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.about-trust-banner p {
  color: rgba(255, 247, 232, 0.9);
  max-width: 640px;
}

.about-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--gold-light);
}

.btn-outline-light:hover {
  background: var(--gold-light);
  color: var(--maroon-deep);
}

@media (max-width: 1080px) {
  .about-intro-grid,
  .about-story-grid,
  .about-highlights-grid,
  .about-places-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-trust-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .about-intro-grid,
  .about-story-grid,
  .about-highlights-grid,
  .about-places-grid {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    order: -1;
  }

  .page-banner-content {
    padding: 44px 0 32px;
  }
}

/* ========== Darshan Page ========== */
.section-lead {
  max-width: 640px;
  margin: 10px auto 0;
  color: var(--muted);
}

.live-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
}

.live-top-link:hover {
  color: var(--saffron);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c62828;
  box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.5);
  animation: live-pulse 1.6s infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(198, 40, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 40, 40, 0); }
}

.live-darshan-section {
  padding: 20px 0 52px;
}

.live-darshan-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(122, 28, 40, 0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.live-darshan-copy h2 {
  color: var(--maroon);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.live-darshan-copy p {
  color: var(--muted);
  margin-bottom: 12px;
}

.live-darshan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 10px;
}

.live-offline-note {
  font-size: 0.9rem;
}

.live-darshan-player {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: #111;
  aspect-ratio: 16 / 9;
}

.live-darshan-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yt-fallback {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.yt-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.yt-fallback-play {
  position: absolute;
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: #c00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.yt-fallback-play::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.yt-fallback-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.92rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .live-darshan-grid {
    grid-template-columns: 1fr;
  }
}

.darshan-timings-section,
.darshan-aarti-section,
.darshan-special-section,
.darshan-guide-section {
  padding: 48px 0;
}

.darshan-timing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.darshan-timing-card {
  background: var(--paper);
  border: 1px solid rgba(122, 28, 40, 0.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.darshan-timing-card h3 {
  color: var(--maroon);
  margin: 8px 0 6px;
}

.timing-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 8px;
  font-family: var(--font-en-head);
}

html[data-lang="gu"] .timing-value {
  font-family: var(--font-gu-head);
}

.darshan-timing-card p:last-child {
  color: var(--muted);
}

.darshan-note {
  background: rgba(196, 92, 38, 0.08);
  border-left: 3px solid var(--saffron);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
}

.darshan-note strong {
  display: block;
  color: var(--maroon);
  margin-bottom: 6px;
}

.darshan-note p {
  color: var(--muted);
  margin-bottom: 6px;
}

.darshan-open-note {
  font-weight: 600;
  color: var(--maroon) !important;
}

.darshan-guide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.darshan-guide-grid h2 {
  color: var(--maroon);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.darshan-guide-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.darshan-guide-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.darshan-guide-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  position: absolute;
  left: 0;
  top: 0.55em;
}

@media (max-width: 900px) {
  .darshan-timing-cards,
  .darshan-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Choth Page ========== */
.choth-intro-section,
.choth-vrat-section,
.choth-events-section,
.choth-fair-section {
  padding: 48px 0;
}

.choth-schedule-section {
  padding: 10px 0 40px;
}

.choth-schedule-wrap {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  border: 3px solid var(--gold);
  border-radius: 18px;
  padding: 28px;
}

.choth-schedule-wrap h2 {
  color: var(--gold-light);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 18px;
}

.choth-schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.choth-schedule-grid article {
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(232, 212, 139, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
}

.choth-schedule-grid span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 247, 232, 0.75);
  margin-bottom: 4px;
}

.choth-schedule-grid strong {
  color: var(--gold-light);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .choth-schedule-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .choth-schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Stay Page ========== */
.stay-intro-section,
.stay-features-section,
.stay-book-section {
  padding: 48px 0;
}

.stay-book-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.stay-book-grid h2 {
  color: var(--maroon);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.stay-book-grid > div > p {
  color: var(--muted);
  margin-bottom: 12px;
}

.stay-contact-box {
  margin-top: 18px;
  background: var(--paper);
  border: 1px solid rgba(122, 28, 40, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.stay-contact-box strong,
.stay-contact-box a {
  color: var(--maroon);
  font-size: 1.05rem;
}

.stay-book-note {
  margin-top: 10px;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .stay-book-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Bhojanshala Page ========== */
.bhojan-intro-section,
.bhojan-features-section {
  padding: 48px 0;
}
