:root {
  --bg-deep: #250a1f;
  --bg-rose: #7f1236;
  --bg-maroon: #5d102c;
  --saffron: #f7b32b;
  --gold: #f8d77d;
  --gold-deep: #d49b2b;
  --cream: #f8f1e7;
  --orange: #d95a1e;
  --warm: #f1c18f;
  --ink: #201118;
  --soft-rose: #f8e0ea;
  --soft-sky: #dff6ff;
  --soft-lilac: #f4e7ff;
  --shadow: rgba(55, 15, 24, 0.2);
  --radius: 22px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  background:
    radial-gradient(circle at top, rgba(245, 200, 120, 0.18), transparent 30%),
    linear-gradient(180deg, #fff9ee 0%, #fffaf4 30%, #f9f3eb 100%);
  color: var(--ink);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  left: -9999px;
  top: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.kicker {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section-heading h2,
.hero-copy h1,
.community-box h2,
.footer-title-wrap h3 {
  font-family: "Cormorant Garamond", "Noto Sans Devanagari", serif;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: var(--bg-maroon);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(40, 9, 22, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff6e3;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 198, 84, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 214, 120, 0.45);
  color: var(--gold);
}

.brand-text {
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: rgba(255, 247, 233, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.32rem;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: url("context/hero_unit.png") center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 20%, rgba(255, 212, 94, 0.24), transparent 26%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.4;
  z-index: 0;
}

.hero-glow-one {
  width: 18rem;
  height: 18rem;
  background: rgba(255, 194, 92, 0.18);
  top: 4%;
  right: 18%;
}

.hero-glow-two {
  width: 20rem;
  height: 20rem;
  background: rgba(240, 99, 42, 0.12);
  bottom: 8%;
  left: 12%;
}

.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 218, 118, 0.95), rgba(255, 218, 118, 0));
  box-shadow: 0 0 18px rgba(255, 216, 100, 0.5);
  animation: drift 12s ease-in-out infinite;
}

.floating-particles span:nth-child(1) { top: 18%; left: 18%; animation-delay: 0.2s; }
.floating-particles span:nth-child(2) { top: 30%; left: 58%; animation-delay: 1.2s; }
.floating-particles span:nth-child(3) { top: 12%; right: 18%; animation-delay: 2.2s; }
.floating-particles span:nth-child(4) { top: 54%; left: 72%; animation-delay: 0.7s; }
.floating-particles span:nth-child(5) { bottom: 21%; left: 22%; animation-delay: 1.8s; }
.floating-particles span:nth-child(6) { bottom: 20%; right: 20%; animation-delay: 2.8s; }
.floating-particles span:nth-child(7) { top: 58%; left: 45%; animation-delay: 3s; }
.floating-particles span:nth-child(8) { top: 42%; right: 54%; animation-delay: 1.4s; }
.floating-particles span:nth-child(9) { top: 62%; right: 28%; animation-delay: 0.5s; }
.floating-particles span:nth-child(10) { bottom: 14%; left: 42%; animation-delay: 2.5s; }

.hero-inner {
  position: relative;
  width: 100%;
}

.hero-overlay-actions {
  position: absolute;
  right: 2.4rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  z-index: 5;
}

.hero-overlay-actions .btn {
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 228, 147, 0.45);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
  box-shadow: 0 12px 28px rgba(38, 1, 10, 0.16);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f9d26a, #d86c2a);
  color: #2d0817;
  box-shadow: 0 12px 30px rgba(216, 108, 42, 0.34);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(18, 9, 15, 0.62), rgba(84, 35, 31, 0.56));
  border-color: rgba(255, 218, 130, 0.7);
  color: #fff8ef;
  box-shadow: 0 14px 30px rgba(16, 0, 6, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(135deg, rgba(30, 13, 18, 0.72), rgba(102, 43, 39, 0.7));
  border-color: rgba(255, 220, 140, 0.92);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 241, 218, 0.12);
  border: 1px solid rgba(255, 214, 120, 0.5);
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f6dd9d;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 220, 0.8));
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(120, 32, 47, 0.08);
  border: 1px solid rgba(101, 36, 57, 0.08);
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.about-copy p {
  font-size: 1.08rem;
  color: rgba(26, 19, 21, 0.8);
}

.highlight {
  font-size: clamp(1.3rem, 2vw, 1.7rem) !important;
  line-height: 1.4;
  color: var(--bg-rose) !important;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 600;
}

.about-badge {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.mini-card {
  display: grid;
  gap: 0.25rem;
  place-items: center;
  min-height: 140px;
  padding: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff9eb, #f3e2c8);
  border: 1px solid rgba(182, 128, 38, 0.2);
  text-align: center;
}

.mini-card strong {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--bg-maroon);
}

.mini-card span {
  color: rgba(51, 42, 51, 0.83);
  font-weight: 600;
}

.mini-card.accent {
  background: linear-gradient(135deg, rgba(247, 179, 43, 0.14), rgba(246, 110, 41, 0.08));
}

.highlights {
  background: linear-gradient(180deg, rgba(248, 221, 170, 0.2), rgba(255, 255, 255, 0));
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.8rem;
  min-height: 170px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(250, 234, 214, 0.7));
  border: 1px solid rgba(130, 52, 44, 0.08);
  border-radius: 22px;
  padding: 1.2rem 0.8rem;
  box-shadow: 0 14px 28px rgba(71, 20, 29, 0.06);
}

.highlight-card span {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}

.highlight-card h3 {
  font-size: 1rem;
  color: var(--bg-maroon);
  font-weight: 700;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
}

.event-card {
  position: relative;
  display: grid;
  gap: 0.3rem;
  min-height: 120px;
  padding: 0.7rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(74, 23, 35, 0.08);
  box-shadow: 0 12px 18px rgba(82, 26, 38, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(82, 26, 38, 0.12);
}

.event-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(88, 18, 35, 0.08);
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.event-card h3,
.event-card h4 {
  color: var(--bg-maroon);
  font-weight: 800;
}

.event-card h3 {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.2;
  margin: 0;
}

.event-card h4 {
  font-size: 0.74rem;
  margin: 0;
}

.event-card p {
  font-weight: 600;
  color: rgba(27, 19, 25, 0.82);
  margin: 0;
  line-height: 1.2;
  font-size: 0.72rem;
}

.event-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.66rem;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(90, 19, 41, 0.08);
  flex: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.35rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  font-size: 0.68rem;
}

.event-meta span {
  font-size: 1rem;
}

.event-meta p {
  margin: 0;
}

.accent-pink { background: linear-gradient(135deg, #f8d5e0, #f7f0f7); }
.accent-ivory { background: linear-gradient(135deg, #eef9e5, #e1f0de); }
.accent-sky { background: linear-gradient(135deg, #dff7ff, #dff2ff); }
.accent-lilac { background: linear-gradient(135deg, #f4eefd, #efe3ff); }
.accent-gold { background: linear-gradient(135deg, #f7ddb0, #f2c76d); }

.gallery-showcase {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
  max-width: 1040px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(249, 220, 186, 0.6));
  border: 1px solid rgba(113, 37, 50, 0.08);
  box-shadow: 0 18px 40px rgba(48, 18, 22, 0.12);
  height: 420px;
  max-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(14px) saturate(1.08);
  transform: scale(1.08);
}

.gallery-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 18px 40px rgba(32, 10, 16, 0.18));
}

.gallery-stage:hover img {
  transform: scale(1.02);
}

.gallery-caption {
  display: none;
}

.gallery-nav,
.thumb-nav {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(118, 23, 42, 0.92), rgba(166, 35, 58, 0.9));
  color: #fffaf3;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(68, 15, 27, 0.22);
  transition: transform 0.25s ease;
}

.gallery-nav:hover,
.thumb-nav:hover {
  transform: translateY(-2px);
}

.gallery-thumbs-shell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.5rem 0 0;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(var(--thumb-visible-count, 9), minmax(0, 1fr));
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  overflow: hidden;
  min-height: 78px;
}

.gallery-thumb {
  position: relative;
  width: 100%;
  height: 68px;
  min-width: 0;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-thumb.active {
  border-color: rgba(231, 135, 33, 0.9);
  box-shadow: 0 10px 24px rgba(120, 45, 15, 0.18);
}

.gallery-thumb:hover {
  transform: translateY(-2px);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-box {
  text-align: center;
  padding: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(135deg, rgba(93, 16, 44, 0.96), rgba(129, 26, 58, 0.94));
  border-radius: 28px;
  color: #fffaf5;
  box-shadow: 0 18px 44px rgba(50, 14, 23, 0.18);
}

.community-box h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1;
}

.community-box p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.07rem;
  color: rgba(255, 244, 232, 0.92);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.contact-card {
  display: grid;
  gap: 1.1rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(98, 23, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(53, 17, 21, 0.08);
  padding: 1.5rem;
}

.contact-card h3 {
  color: var(--bg-maroon);
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0.8rem;
  border-radius: 16px;
  background: rgba(247, 244, 240, 0.8);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7d172, #e39d34);
  font-size: 1.5rem;
}

.contact-row h4 {
  color: var(--bg-maroon);
  margin-bottom: 0.2rem;
}

.contact-row a {
  display: inline-block;
  color: var(--bg-maroon);
  font-weight: 700;
}

.contact-row a + a {
  margin-left: 0.8rem;
}

.whatsapp-link {
  color: #0f8c4c !important;
}

.qr-card {
  align-content: center;
}

.qr-image-wrap {
  width: min(220px, 85%);
  height: min(220px, 85%);
  max-width: 220px;
  max-height: 220px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(82, 26, 34, 0.15);
  box-shadow: 0 10px 24px rgba(63, 17, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-note {
  font-size: 0.82rem;
  color: rgba(28, 17, 20, 0.8);
  text-align: center;
}

.site-footer {
  position: relative;
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, rgba(49, 12, 26, 0.98), rgba(28, 10, 19, 0.98));
  color: #fff7e9;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 170, 57, 0.25), transparent 56%);
}

.site-footer::after {
  inset: 1rem 1rem auto auto;
}

.footer-inner {
  position: relative;
  text-align: center;
}

.footer-title-wrap {
  display: grid;
  gap: 0.2rem;
}

.footer-title-wrap p {
  color: #ffd882;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-title-wrap h3 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #f7d57b;
  line-height: 0.9;
}

.footer-title-wrap span {
  font-size: 1.2rem;
  color: #fbe7be;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  color: rgba(255, 241, 214, 0.9);
  font-weight: 700;
}

.footer-credit {
  color: rgba(255, 241, 214, 0.45);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 8, 16, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: min(86vw, 900px);
  background: rgba(30, 12, 20, 0.45);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(0,0,0,0.1);
}

.lightbox-caption {
  padding: 0.9rem 1rem 1.2rem;
  text-align: center;
  color: #fff0d8;
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  transform: none;
}

.lightbox-nav.prev { left: 1.4rem; }
.lightbox-nav.next { right: 1.4rem; }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.85); opacity: 0.6; }
  50% { transform: translate3d(0, -18px, 0) scale(1.1); opacity: 1; }
}

@media (max-width: 980px) {
  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: min(92vw, 380px);
    display: grid;
    gap: 0.7rem;
    background: rgba(49, 12, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 12px 30px rgba(18, 8, 14, 0.2);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    min-height: 72vh;
    background: url("context/vertical_hero_unit.png") center center / cover no-repeat;
  }

  .hero-copy {
    padding: 3rem 0 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
    line-height: 1;
  }

  .hero-overlay-actions {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding: 0.8rem 0.9rem;
    font-size: 0.8rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-thumbs-shell {
    gap: 0.5rem;
  }

  .gallery-thumb {
    height: 58px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.9rem;
  }

  .footer-copy {
    opacity: 0.9;
  }

  .footer-credit {
    opacity: 0.45;
    font-size: 0.68rem;
  }
}

@media (max-width: 520px) {
  .gallery-stage {
    height: 280px;
  }

  .gallery-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.77rem;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .community-box h2 {
    font-size: 2.4rem;
  }
}
