/* ============================================
   GANESH UTSAV 2026 — UX-First Interactive Design
   ============================================ */

:root {
  --gold-50: #FFF8E1;
  --gold-100: #FFECB3;
  --gold-200: #FFD54F;
  --gold-300: #FFC107;
  --gold-400: #FFB300;
  --gold-500: #D4A017;
  --gold-600: #B8860B;
  --gold-700: #8B6914;
  --gold-800: #6B4F10;
  --gold-900: #4A3508;
  --saffron: #FF6F00;
  --maroon: #4A1800;
  --cream: #FDF6E3;
  --text-primary: #3E2723;
  --text-secondary: #5D4037;
  --text-muted: #795548;
  --text-white: #FFFFF0;
  --font-display: 'Cinzel Decorative', 'Playfair Display', serif;
  --font-heading: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

a {
  color: var(--gold-600);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

a:hover {
  color: var(--saffron);
}

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Particles */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD54F, transparent);
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.45;
  }

  90% {
    opacity: 0.12;
  }

  100% {
    transform: translateY(-10vh) scale(1.5);
    opacity: 0;
  }
}

/* Page BG */
.page-bg {
  position: fixed;
  inset: 0;
  background: url('assets/bg-texture.png') center/cover no-repeat fixed;
  z-index: -2;
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 246, 227, 0.72) 0%, rgba(255, 236, 179, 0.55) 50%, rgba(253, 246, 227, 0.75) 100%);
}

/* =============================================
   HEADER — always readable over golden imagery
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(40, 28, 8, 0.72) 0%,
      rgba(40, 28, 8, 0.42) 55%,
      rgba(40, 28, 8, 0.08) 100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(253, 246, 227, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(139, 105, 20, 0.14);
  padding: 8px 0;
}

.site-header.scrolled .header-scrim {
  opacity: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}

.site-header.scrolled .header-logo-text {
  color: var(--text-primary);
  text-shadow: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.site-header.scrolled .header-nav a {
  color: var(--text-secondary);
  text-shadow: none;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-200);
  transition: width 0.3s;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a:hover {
  color: #fff;
}

.site-header.scrolled .header-nav a:hover {
  color: var(--saffron);
}

.btn-donate {
  padding: 8px 22px;
  background: linear-gradient(135deg, #8B6914, #D4A017, #B8860B);
  color: var(--text-white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.35);
  text-shadow: none !important;
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
  color: var(--text-white) !important;
}

/* Mobile Menu Overlay Header States */
.site-header.nav-open {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #FFFDF8 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  z-index: 99999 !important;
  overflow: hidden !important;
}

.site-header.nav-open .header-scrim {
  display: none !important;
}

.site-header.nav-open .header-inner {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 20px !important;
  box-sizing: border-box !important;
}

.site-header.nav-open .header-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  z-index: 100002 !important;
}

.site-header.nav-open .header-logo-text {
  display: block !important;
  color: var(--text-primary) !important;
  text-shadow: none !important;
  font-size: 0.95rem !important;
}

.site-header.nav-open .header-logo svg circle {
  stroke: #D4A017 !important;
  fill: rgba(255, 248, 225, 0.6) !important;
}

.site-header.nav-open .header-logo svg text {
  fill: #8B6914 !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 100002;
  width: 44px;
  height: 44px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.site-header.scrolled .mobile-menu-toggle span,
.site-header.nav-open .mobile-menu-toggle span,
.mobile-menu-toggle.active span {
  background: var(--text-primary) !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =============================================
   FULL-WIDTH HERO — Responsive Video Player
   ============================================= */
.hero-banner {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 0;
  overflow: hidden;
  background: #181109;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #181109;
}

.hero-banner-video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  /* Completely blocks clicks, hovers, and context menus */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Force removal of all native browser video controls, overlay icons & hover panels */
.hero-banner-video::-webkit-media-controls,
.hero-banner-video::-webkit-media-controls-panel,
.hero-banner-video::-webkit-media-controls-play-button,
.hero-banner-video::-webkit-media-controls-start-playback-button,
.hero-banner-video::-webkit-media-controls-overlay-play-button,
.hero-banner-video::-webkit-media-controls-timeline,
.hero-banner-video::-webkit-media-controls-current-time-display,
.hero-banner-video::-webkit-media-controls-time-remaining-display,
.hero-banner-video::-webkit-media-controls-mute-button,
.hero-banner-video::-webkit-media-controls-toggle-closed-captions-button,
.hero-banner-video::-webkit-media-controls-volume-slider,
.hero-banner-video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Scrim overlay prevents hover overlays or browser extension interactions */
.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(26, 17, 9, 0.65) 0%,
      rgba(26, 17, 9, 0.25) 60%,
      transparent 100%);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Clickable area over "PROGRAM SCHEDULE" in the artwork */
.hero-schedule-hotspot {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(34%, 300px);
  height: 8%;
  min-height: 28px;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.hero-schedule-hotspot:hover {
  background: rgba(212, 160, 23, 0.16);
}

.hero-schedule-hotspot:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

/* Accessible motion toggle button (WCAG 2.2.2 Pause, Stop, Hide compliance) */
.hero-motion-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 4;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 213, 79, 0.35);
  background: rgba(26, 17, 9, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-motion-toggle:hover {
  opacity: 1;
  background: rgba(26, 17, 9, 0.9);
  border-color: var(--gold-400);
  transform: scale(1.08);
}

.hero-motion-toggle:focus-visible {
  opacity: 1;
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

/* =============================================
   SCHEDULE SECTION
   ============================================= */
.schedule-section {
  position: relative;
  z-index: 1;
  padding: 50px 0 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 16px;
}

/* =============================================
   MODERN SCHEDULE CARD (REFERENCE DESIGN)
   ============================================= */
.schedule-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.schedule-card:hover,
.schedule-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.14);
}

.schedule-card:active {
  transform: translateY(-2px) scale(0.995);
}

/* Card Cover Image & Floating Date Badge */
.card-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #F3F4F6;
}

.card-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.schedule-card:hover .card-cover-img {
  transform: scale(1.04);
}

/* Floating Calendar Date Badge */
.card-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 58px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.schedule-card:hover .card-date-badge {
  transform: scale(1.05);
}

.card-date-month {
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 4px;
  text-transform: uppercase;
  line-height: 1;
}

.card-date-day {
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 900;
  padding: 4px 4px 5px;
  line-height: 1;
}

.card-date-day.multi-day {
  font-size: 0.94rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
  padding: 6px 3px;
}

/* Card Content Area */
.card-content {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category Pill Badge */
.card-category-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 13px;
  border-radius: 9999px;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Title & Description */
.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}

.schedule-card:hover .card-title {
  color: var(--gold-800);
}

.card-description {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #4B5563;
  line-height: 1.55;
  margin: 0 0 16px;
}

/* Meta Rows (Time & Venue with Outlined Icons) */
.card-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 0;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  color: #4B5563;
}

.card-meta-row .meta-icon {
  width: 16px;
  height: 16px;
  stroke: #6B7280;
  flex-shrink: 0;
}

/* Highlight Card (Saturday Sep 19 Mega Celebration) */
.schedule-card.highlight {
  border: 1.5px solid rgba(230, 126, 34, 0.45);
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.schedule-card.highlight:hover,
.schedule-card.highlight:focus-visible {
  border-color: #E67E22;
  box-shadow: 0 20px 48px rgba(230, 126, 34, 0.22);
}

.schedule-card.highlight .card-date-month {
  background: #C2410C;
}

.schedule-card.highlight .card-category-pill {
  background: linear-gradient(135deg, #EA580C, #C2410C);
}

/* =============================================
   POPUP MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 5, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: linear-gradient(135deg, #FFF8E1, #FFECB3, #FFF8E1);
  border: 3px solid #C8A84E;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 0 0 5px rgba(200, 168, 78, 0.2);
  transform: scale(0.85) translateY(30px);
  transition: all 0.5s var(--bounce);
  text-align: center;
  overflow: hidden;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal::before {
  content: '✦';
  position: absolute;
  font-size: 20px;
  color: var(--gold-500);
  top: 12px;
  left: 16px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-700);
  transition: all 0.3s var(--ease);
  z-index: 3;
}

.modal-close:hover {
  background: var(--gold-500);
  color: #fff;
  transform: rotate(90deg);
}

.modal-emoji {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-800);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-date-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #8B6914, #D4A017, #B8860B);
  color: var(--gold-50);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: linear-gradient(135deg, #8B6914, #D4A017);
  color: var(--gold-50) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
  transition: all 0.3s var(--ease);
}

.modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.45);
  color: #fff !important;
}

.day-modal .modal {
  max-width: 480px;
}

.day-modal .modal-activities {
  text-align: left;
  margin: 12px 0 18px;
  padding: 0;
}

.day-modal .modal-activities li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  background: rgba(255, 248, 225, 0.6);
  border: 1px solid rgba(212, 160, 23, 0.2);
  transition: background 0.2s;
  text-align: left;
}

.day-modal .modal-activities li:hover {
  background: rgba(255, 236, 179, 0.8);
}

.day-modal .modal-activities li .emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 5px;
  background: linear-gradient(135deg, #8B6914, #D4A017);
  color: #FFF;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-right: 4px;
}

.modal-item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.modal-item-content strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.modal-item-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

/* =============================================
   ORNAMENTAL DIVIDER
   ============================================= */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto;
  max-width: 500px;
}

.ornament-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.ornament-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ornament-lotus {
  width: 40px;
  height: 40px;
  opacity: 0.8;
  animation: lotusFloat 3.5s ease-in-out infinite;
}

.ornament-bell {
  animation: bellSwing 2.5s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes lotusFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(4deg);
  }
}

@keyframes bellSwing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(6deg);
  }

  75% {
    transform: rotate(-6deg);
  }
}

/* =============================================
   FULL-WIDTH INFO BANNER
   ============================================= */
.info-banner-wrapper {
  width: 100%;
  margin-top: 40px;
}

.info-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 30px;
  background: linear-gradient(135deg, #8B6914, #D4A017, #B8860B);
  border-top: 3px solid var(--gold-300);
  border-bottom: 3px solid var(--gold-300);
}

.info-banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-50);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

.info-banner-item .emoji {
  font-size: 1.3rem;
}

.info-banner-sep {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
}

/* =============================================
   CONTACT & LOCATION — frictionless reach-out
   ============================================= */
.footer-info {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: start;
  padding: 36px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-section {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 248, 225, 0.55);
  border: 1px solid rgba(200, 168, 78, 0.35);
  color: inherit;
  min-width: 200px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-400);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.15);
  color: inherit;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFD54F, #FFB300, #D4A017);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(212, 160, 23, 0.25);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-800);
}

.contact-details {
  line-height: 1.35;
}

.contact-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-700);
}

.contact-hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-vdivider {
  width: 2px;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold-300), transparent);
}

.location-section {
  text-align: right;
}

.location-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.location-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-600);
  margin-bottom: 12px;
  line-height: 1.3;
}

.location-map-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 248, 225, 0.7);
  border: 1.5px solid rgba(200, 168, 78, 0.45);
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  max-width: 280px;
}

.location-map-link:hover {
  transform: translateY(-3px);
  border-color: var(--gold-400);
  box-shadow: 0 10px 28px rgba(139, 105, 20, 0.18);
  color: inherit;
}

.location-map-icon {
  width: 28px;
  height: 28px;
  align-self: flex-end;
}

.location-map-icon svg {
  width: 100%;
  height: 100%;
}

.location-address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: normal;
  text-align: right;
}

.location-map-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* Footer */
.site-footer {
  background: var(--gold-900);
  padding: 24px 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--gold-200);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--gold-50);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--gold-500);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Body scroll lock when mobile navigation is open */
body.nav-locked {
  overflow: hidden !important;
  touch-action: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {

  /* Header shadow band at 0.3 opacity on mobile */
  .header-scrim {
    display: block !important;
    opacity: 0.3 !important;
  }

  .hero-top-fade {
    display: none !important;
  }

  /* Subtle 0.3 shadow on logo and hamburger */
  .site-header:not(.scrolled):not(.nav-open) .header-logo {
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }

  .site-header:not(.scrolled):not(.nav-open) .header-logo-text {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .site-header:not(.scrolled):not(.nav-open) .mobile-menu-toggle {
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }

  .site-header:not(.scrolled):not(.nav-open) .mobile-menu-toggle span {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header.nav-open .mobile-menu-toggle {
    position: absolute;
    top: 14px;
    right: 18px;
  }

  .header-nav.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    flex: 1 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 34px 16px 40px !important;
    margin-top: 10px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: static !important;
  }

  .header-nav.mobile-open a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-shadow: none !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
    width: min(100%, 280px);
  }

  .header-nav.mobile-open a:hover,
  .header-nav.mobile-open a:active {
    background: rgba(212, 160, 23, 0.12);
    color: var(--gold-800) !important;
  }

  .header-nav.mobile-open .btn-donate {
    margin-top: 8px;
    padding: 12px 32px;
    font-size: 1rem;
    width: min(100%, 260px);
    text-align: center;
    background: linear-gradient(135deg, #8B6914, #D4A017, #B8860B);
    color: #FFFFFF !important;
  }

  .schedule-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .contact-section {
    justify-content: center;
  }

  .location-section {
    text-align: center;
  }

  .location-map-link {
    align-items: center;
    margin: 0 auto;
  }

  .location-map-icon {
    align-self: center;
  }

  .location-address {
    text-align: center;
  }

  .footer-vdivider {
    width: 120px;
    height: 2px;
    min-height: auto;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
  }
}

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .hero-video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .hero-banner-video {
    width: 100%;
    height: auto;
  }

  .hero-schedule-hotspot {
    top: 32%;
    width: min(52%, 260px);
  }

  .hero-motion-toggle {
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .schedule-section {
    padding-top: 30px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-content {
    padding: 18px 18px 18px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-description {
    font-size: 0.84rem;
    margin-bottom: 12px;
  }

  .card-meta-list {
    gap: 6px;
    margin-top: auto;
    margin-bottom: 0;
  }

  .card-meta-row {
    font-size: 0.82rem;
  }

  .info-banner {
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
  }

  .info-banner-sep {
    width: 60px;
    height: 2px;
  }

  .contact-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .contact-card {
    min-width: 0;
    width: 100%;
  }

  .header-logo-text {
    display: none;
  }

  .site-header.nav-open .header-logo-text {
    display: block !important;
  }

  .modal {
    padding: 32px 24px 26px;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 14px;
  }

  .card-date-badge {
    width: 50px;
  }

  .card-date-day {
    font-size: 1.25rem;
  }

  .card-date-day.multi-day {
    font-size: 0.82rem;
  }

  .card-content {
    padding: 16px 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {

  .particles-container,
  .site-header,
  .site-footer,
  .page-bg,
  .modal-overlay,
  .hero-motion-toggle {
    display: none !important;
  }

  .hero-banner-video {
    display: none !important;
  }

  .hero-video-wrapper {
    aspect-ratio: auto;
  }

  .hero-banner {
    min-height: auto;
    padding: 20px;
    background: none;
  }

  .schedule-card {
    break-inside: avoid;
    box-shadow: none;
  }

  body {
    background: white;
    color: black;
  }
}