/* ==========================================================================
   Chhath Puja SoCal — stylesheet
   Hand-written CSS. No build step, no framework, no CDN.
   Sections: 1 tokens · 2 base · 3 layout · 4 buttons · 5 header
             6 hero · 7 sections & cards · 8 timeline · 9 gallery
             10 forms · 11 donate · 12 footer · 13 music · 14 motion
   ========================================================================== */

/* ------------------------------------------------------------ 1. TOKENS -- */
:root {
  /* sunrise */
  --surya-50: #fff8ed;
  --surya-100: #ffebcc;
  --surya-200: #ffd79a;
  --surya-300: #ffbe5f;
  --surya-400: #fca22e;
  --surya-500: #f2830d;
  --surya-600: #d96605;
  --surya-700: #b44a08;
  --surya-800: #8f3a0e;

  /* sindoor */
  --sindoor-400: #e2604a;
  --sindoor-500: #d2402c;
  --sindoor-600: #b22d1d;
  --sindoor-700: #8e2317;

  /* the water at the ghat */
  --ghat-50: #f2f6f7;
  --ghat-100: #dde9ec;
  --ghat-200: #b7d0d7;
  --ghat-300: #84aeba;
  --ghat-400: #4f8797;
  --ghat-500: #336b7c;
  --ghat-600: #255467;
  --ghat-700: #1c4152;
  --ghat-800: #152f3c;
  --ghat-900: #0e202a;
  --ghat-950: #081419;

  --haldi: #f6c453;
  --cream: #fffbf3;

  --sunrise: linear-gradient(135deg, #ffd79a 0%, #fca22e 45%, #d2402c 100%);

  --shadow-soft: 0 10px 40px -12px rgba(20, 47, 60, 0.18);
  --shadow-lift: 0 24px 60px -20px rgba(20, 47, 60, 0.35);
  --shadow-glow: 0 0 60px -10px rgba(252, 162, 46, 0.55);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-deva: "Tiro Devanagari Hindi", "Noto Serif Devanagari", serif;

  --header-h: 76px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* -------------------------------------------------------------- 2. BASE -- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ghat-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.12;
  text-wrap: balance;
}

::selection {
  background: rgba(255, 190, 95, 0.6);
}

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

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--surya-50);
}
::-webkit-scrollbar-thumb {
  background: var(--surya-300);
  border: 2px solid var(--surya-50);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--surya-400);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: var(--surya-700);
  padding: 12px 20px;
  border-radius: 99px;
  font-weight: 700;
  box-shadow: var(--shadow-lift);
}

/* ------------------------------------------------------------ 3. LAYOUT -- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  position: relative;
  padding-block: 88px;
  overflow: hidden;
}

.section--tight {
  padding-block: 72px;
}

.section--cream {
  background: var(--cream);
}

.section--warm {
  background: linear-gradient(180deg, var(--surya-50) 0%, var(--cream) 100%);
}

.section--dark {
  background: var(--ghat-950);
  color: #fff;
}

.section--sunrise {
  background: var(--sunrise);
  color: #fff;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: 1fr;
}
.grid--3 {
  grid-template-columns: 1fr;
}
.grid--4 {
  grid-template-columns: 1fr;
}

.split {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}

.stack-sm > * + * {
  margin-top: 14px;
}
.stack > * + * {
  margin-top: 18px;
}

.center {
  text-align: center;
}

/* decorative dotted rangoli field */
.motif-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--surya-200) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow--sun {
  background: rgba(242, 131, 13, 0.2);
}

.mandala {
  position: absolute;
  color: var(--surya-200);
  opacity: 0.1;
  pointer-events: none;
  animation: spin-slow 40s linear infinite;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.wave--top {
  top: 0;
  transform: rotate(180deg);
}
.wave--bottom {
  bottom: 0;
}

/* ----------------------------------------------------------- 4. BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 99px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--sunrise);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(242, 131, 13, 0.5);
  color: var(--surya-700);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  transform: translateY(-2px);
  border-color: var(--surya-500);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.2);
}

.btn--white {
  background: #fff;
  color: var(--surya-700);
  box-shadow: var(--shadow-lift);
}
.btn--white:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.btn-row--center {
  align-items: center;
}

/* ------------------------------------------------------------ 5. HEADER -- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header--solid {
  /* Deliberately no backdrop-filter here: a filtered ancestor becomes the
     containing block for position:fixed children, which would trap the
     floating music control inside the header bar on small screens. */
  background: rgba(255, 251, 243, 0.97);
  border-bottom-color: rgba(255, 235, 204, 0.8);
  box-shadow: 0 1px 24px -12px rgba(20, 47, 60, 0.35);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px;
  width: auto;
}

.logo__light {
  display: none;
}

.site-header--over .logo__dark {
  display: none;
}

.site-header--over .logo__light {
  display: block;
}

.nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav a {
  position: relative;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ghat-600);
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover {
  color: var(--surya-700);
}
.nav a[aria-current="page"] {
  color: var(--surya-700);
}
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header--over .nav a {
  color: rgba(255, 255, 255, 0.85);
}
.site-header--over .nav a:hover,
.site-header--over .nav a[aria-current="page"] {
  color: #fff;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  border: 1px solid var(--surya-200);
  background: transparent;
  color: var(--ghat-700);
  cursor: pointer;
  transition: background-color 0.3s var(--ease);
}
.menu-btn:hover {
  background: var(--surya-50);
}
.site-header--over .menu-btn {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.site-header--over .menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.drawer.is-open {
  pointer-events: auto;
}

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 25, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.drawer.is-open .drawer__scrim {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 86%;
  max-width: 380px;
  background: var(--cream);
  box-shadow: var(--shadow-lift);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--surya-100);
}
.drawer__head img {
  height: 36px;
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.drawer__body a.drawer-link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 235, 204, 0.7);
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ghat-800);
  transition: color 0.3s var(--ease);
}
.drawer__body a.drawer-link:hover,
.drawer__body a.drawer-link[aria-current="page"] {
  color: var(--surya-600);
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.drawer__om {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-deva);
  font-size: 18px;
  color: var(--surya-600);
}

/* -------------------------------------------------------------- 6. HERO -- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ghat-950);
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
}
/* The hero photograph is a sunset: darkening it with a neutral scrim turned the
   gold grey. These layers keep the warmth — a light wash at the top, a warm
   amber multiply through the middle, and weight only at the very bottom. */
.hero__veil--1 {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 48, 0.6) 0%,
    rgba(26, 20, 48, 0.26) 24%,
    rgba(26, 20, 48, 0.05) 42%,
    rgba(26, 14, 8, 0.18) 64%,
    rgba(10, 14, 20, 0.9) 100%
  );
}

/* a soft pool of shade directly behind the headline block */
.hero__veil--4 {
  background: radial-gradient(
    ellipse 40rem 22rem at 50% 42%,
    rgba(14, 12, 26, 0.6) 0%,
    rgba(14, 12, 26, 0.32) 52%,
    transparent 78%
  );
}
.hero__veil--2 {
  background: none;
}
.hero__veil--3 {
  background: radial-gradient(ellipse at 50% 45%, transparent 42%, rgba(12, 10, 22, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-block: 128px 112px;
}

.hero__om {
  font-family: var(--font-deva);
  font-size: 18px;
  color: var(--surya-300);
  letter-spacing: 0.02em;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 1.06;
  color: #fff;
  max-width: 62rem;
  margin-inline: auto;
}

.hero__lede {
  margin: 26px auto 0;
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(221, 233, 236, 0.85);
  text-wrap: balance;
}

.hero .btn-row {
  margin-top: 38px;
}

.hero__stats {
  margin: 60px auto 0;
  max-width: 40rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.hero__stats dd span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--surya-200);
  line-height: 1;
}

.hero__stats dd span:last-child {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(183, 208, 215, 0.75);
}

.scroll-cue {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: color 0.3s var(--ease);
}
.scroll-cue:hover {
  color: #fff;
}
.scroll-cue__mouse {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 24px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 6px 0;
}
.scroll-cue__dot {
  width: 3px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  animation: floaty 2.4s ease-in-out infinite;
}

/* banner hero on inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ghat-950);
  padding-block: calc(var(--header-h) + 70px) 88px;
  text-align: center;
  color: #fff;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 25, 0.92) 0%,
    rgba(8, 20, 25, 0.8) 55%,
    rgba(8, 20, 25, 0.95) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: #fff;
  max-width: 52rem;
  margin-inline: auto;
}

.page-hero p {
  margin: 22px auto 0;
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(221, 233, 236, 0.8);
  text-wrap: balance;
}

.page-hero .btn-row {
  margin-top: 34px;
}

/* ------------------------------------------------- 7. SECTIONS & CARDS -- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--surya-200);
  background: rgba(255, 248, 237, 0.8);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--surya-700);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
}

.eyebrow--light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--surya-200);
  backdrop-filter: blur(8px);
}

.section-title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.section-title--left {
  align-items: flex-start;
  text-align: left;
  margin-inline: 0;
}

.section-title h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.section--dark .section-title h2 {
  color: #fff;
}

.section-title p {
  margin-top: 20px;
  max-width: 38rem;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ghat-600);
}

.section--dark .section-title p {
  color: rgba(221, 233, 236, 0.8);
}

.rule {
  margin-top: 28px;
  height: 1px;
  width: 160px;
  background: linear-gradient(90deg, transparent, var(--surya-400), transparent);
}
.section-title--left .rule {
  background: linear-gradient(90deg, var(--surya-400), transparent);
}

.accent {
  background: linear-gradient(90deg, var(--surya-500), var(--surya-400), var(--sindoor-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.section--dark .accent,
.hero .accent,
.page-hero .accent {
  background: linear-gradient(90deg, var(--surya-200), var(--haldi), var(--surya-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.card--hover:hover {
  transform: translateY(-6px);
  border-color: var(--surya-200);
  box-shadow: var(--shadow-lift);
}

.card__blob {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255, 235, 204, 0.6);
  filter: blur(30px);
  transition: background-color 0.7s var(--ease);
  pointer-events: none;
}
.card--hover:hover .card__blob {
  background: rgba(255, 215, 154, 0.7);
}

.card__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--sunrise);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease);
}
.card--hover:hover .card__icon {
  transform: scale(1.05);
}

.card h3 {
  position: relative;
  margin-top: 20px;
  font-size: 24px;
  color: var(--ghat-900);
}

.card p {
  position: relative;
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ghat-600);
}

/* card variant used on dark sections */
.card--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  box-shadow: none;
}
.card--dark:hover {
  border-color: rgba(252, 162, 46, 0.4);
  background: rgba(255, 255, 255, 0.07);
}
.card--dark h3 {
  color: #fff;
}
.card--dark p {
  color: var(--ghat-300);
}

.mini-card {
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 20px;
}
.mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--surya-600);
}
.mini-card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ghat-600);
}

.figure {
  position: relative;
}
.figure__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.figure__frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.figure__frame:hover img {
  transform: scale(1.05);
}
.figure__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 20, 25, 0.45), transparent 55%);
}

.figure__chip {
  position: absolute;
  bottom: -24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(8px);
}
.figure__chip span.chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sunrise);
  color: #fff;
}
.figure__chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.figure__chip small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ghat-400);
}

.quote {
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.quote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ghat-800);
}
.quote footer {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--surya-600);
}

.tick-list {
  list-style: none;
}
.tick-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tick-list li + li {
  margin-top: 14px;
}
.tick-list .tick {
  flex: none;
  margin-top: 7px;
  width: 8px;
  height: 8px;
  background: var(--surya-500);
  border-radius: 1px;
  transform: rotate(45deg);
}
.tick-list span:last-child {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ghat-700);
}
.section--dark .tick-list span:last-child {
  color: var(--ghat-200);
}

.numbered {
  list-style: none;
}
.numbered li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(6px);
}
.numbered li + li {
  margin-top: 14px;
}
.numbered .num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: rgba(242, 131, 13, 0.2);
  color: var(--surya-300);
  font-size: 12px;
  font-weight: 700;
}
.numbered span:last-child {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ghat-200);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--surya-200);
  background: #fff;
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ghat-700);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pill:hover {
  transform: translateY(-2px);
  border-color: var(--surya-400);
  color: var(--surya-700);
}
.pill .icon {
  width: 14px;
  height: 14px;
  color: var(--surya-500);
}

.pill--dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ghat-200);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

/* event card */
.event-card {
  overflow: hidden;
  border: 1px solid var(--surya-100);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  max-width: 64rem;
  margin-inline: auto;
}

.event-card__banner {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.event-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 25, 0.85), rgba(8, 20, 25, 0.5) 55%, transparent);
}
.event-card__banner-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}
.event-card__banner-text h3 {
  margin-top: 12px;
  max-width: 30rem;
  font-size: clamp(1.6rem, 3.6vw, 2.25rem);
  color: #fff;
}

.tag {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--surya-100);
  backdrop-filter: blur(8px);
}
.tag--solid {
  background: var(--sunrise);
  border-color: transparent;
  color: #fff;
}

.facts {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.fact {
  display: flex;
  gap: 16px;
}
.fact__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surya-50);
  color: var(--surya-600);
}
.fact__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ghat-400);
}
.fact__value {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ghat-800);
}

.event-card__foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--surya-100);
  background: rgba(255, 248, 237, 0.6);
  padding: 24px 28px;
}
.event-card__foot p {
  font-size: 14px;
  color: var(--ghat-600);
}

/* ---------------------------------------------------------- 8. TIMELINE -- */
.timeline {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  list-style: none;
}

.timeline__thread {
  display: none;
  position: absolute;
  left: 27px;
  top: 16px;
  width: 1px;
  height: calc(100% - 2rem);
  background: linear-gradient(180deg, var(--surya-300), var(--surya-400), transparent);
}

.timeline li {
  position: relative;
}
.timeline li:not(:last-child) {
  padding-bottom: 40px;
}

.timeline__marker {
  display: none;
  position: absolute;
  left: 0;
  top: 4px;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 99px;
  border: 1px solid var(--surya-200);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.timeline__marker svg {
  width: 32px;
  height: 32px;
}

.timeline__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
}
.timeline__day {
  border-radius: 99px;
  background: var(--surya-100);
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--surya-700);
}
.timeline__head h3 {
  font-size: 28px;
  color: var(--ghat-900);
}
.timeline__meaning {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--surya-600);
}
.timeline__when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ghat-400);
}
.timeline__when::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--surya-400);
  transform: rotate(45deg);
}

/* ----------------------------------------------------------- 9. GALLERY -- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surya-100);
  background: var(--ghat-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0;
  cursor: zoom-in;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 20, 25, 0.85), rgba(8, 20, 25, 0.1) 55%, transparent);
  opacity: 0.8;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery__item:hover::after {
  opacity: 0.95;
}

.gallery__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  background: linear-gradient(135deg, var(--surya-100), var(--surya-50), var(--cream));
  color: var(--surya-500);
  cursor: default;
}
.gallery__placeholder span {
  padding-inline: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(217, 102, 5, 0.8);
  text-align: center;
}
.gallery__item:has(.gallery__placeholder) {
  cursor: default;
}
.gallery__item:has(.gallery__placeholder)::after {
  display: none;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 20, 25, 0.93);
  backdrop-filter: blur(12px);
}
.lightbox.is-open {
  display: flex;
  animation: rise 0.4s var(--ease) both;
}
.lightbox img {
  max-height: 78vh;
  max-width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lift);
}
.lightbox figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--ghat-200);
}
.lightbox__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease);
}
.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}
.lightbox__prev {
  left: 16px;
}
.lightbox__next {
  right: 16px;
}

/* ------------------------------------------------------------ 10. FORMS -- */
.form-card {
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(8px);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.form-head__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--sunrise);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.form-head h2 {
  font-size: 28px;
  line-height: 1;
  color: var(--ghat-900);
}
.form-head p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ghat-500);
}

.form-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ghat-700);
}

.req {
  color: var(--sindoor-500);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--surya-200);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ghat-300);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--surya-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 215, 154, 0.5);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--sindoor-500);
}
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 4px rgba(226, 96, 74, 0.25);
}

.field__hint {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ghat-400);
}

.field__error {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sindoor-600);
  display: none;
}
.field.has-error .field__error {
  display: block;
}
.field.has-error .field__hint {
  display: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--surya-200);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ghat-700);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.checkbox:hover {
  border-color: var(--surya-300);
  background: #fff;
}
.checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--surya-500);
  flex: none;
}

.form-note {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ghat-400);
}

.notice {
  border: 1px solid var(--surya-200);
  background: rgba(255, 248, 237, 0.7);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ghat-700);
}

.alert {
  display: none;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(226, 96, 74, 0.4);
  background: rgba(226, 96, 74, 0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--sindoor-700);
}
.alert.is-visible {
  display: flex;
}
.alert .icon {
  flex: none;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.submit-row {
  margin-top: 30px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 99px;
  animation: spin-slow 0.7s linear infinite;
  display: none;
}
.btn.is-loading .spinner {
  display: block;
}

.success-panel {
  display: none;
  border: 1px solid var(--surya-200);
  background: linear-gradient(180deg, var(--surya-50), #fff);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  animation: rise 0.7s var(--ease) both;
}
.success-panel.is-visible {
  display: block;
}
.success-panel__mark {
  position: relative;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: var(--sunrise);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.success-panel h3 {
  font-size: 30px;
  color: var(--ghat-900);
}
.success-panel p {
  margin: 12px auto 0;
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ghat-600);
}
.success-panel .demo-note {
  margin-top: 20px;
  border-radius: var(--radius);
  background: rgba(246, 196, 83, 0.15);
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--surya-800);
}
.success-panel .btn {
  margin-top: 28px;
}

.contact-tile {
  display: flex;
  gap: 16px;
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-tile:hover {
  transform: translateY(-4px);
  border-color: var(--surya-200);
  box-shadow: var(--shadow-lift);
}
.contact-tile__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--surya-50);
  color: var(--surya-600);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.contact-tile:hover .contact-tile__icon {
  background: var(--sunrise);
  color: #fff;
}
.contact-tile__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ghat-400);
}
.contact-tile__value {
  margin-top: 4px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ghat-800);
  word-break: break-word;
}
.contact-tile__note {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ghat-500);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  border: 1px solid var(--surya-200);
  background: #fff;
  color: var(--surya-600);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--surya-400);
  background: var(--surya-50);
}

/* ----------------------------------------------------------- 11. DONATE -- */
.zelle-card {
  overflow: hidden;
  border: 1px solid var(--surya-100);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.zelle-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--surya-100);
  background: linear-gradient(90deg, var(--surya-50), #fff);
  padding: 22px 28px;
}
.zelle-card__head h2 {
  font-size: 28px;
  line-height: 1;
  color: var(--ghat-900);
}
.zelle-card__head p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ghat-500);
}

.zelle-card__body {
  display: grid;
  gap: 30px;
  padding: 28px;
}

.qr {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}
.qr__frame {
  position: relative;
  border: 1px solid var(--surya-200);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.qr__frame img {
  width: 100%;
  border-radius: 12px;
}
.qr__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0 solid var(--surya-400);
  border-radius: 3px;
}
.qr__corner--tl {
  top: 12px;
  left: 12px;
  border-top-width: 2px;
  border-left-width: 2px;
}
.qr__corner--tr {
  top: 12px;
  right: 12px;
  border-top-width: 2px;
  border-right-width: 2px;
}
.qr__corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.qr__corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}
.qr figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ghat-500);
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
  border: 1px solid var(--surya-200);
  background: rgba(255, 248, 237, 0.7);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.copy-row:hover {
  border-color: var(--surya-400);
  background: var(--surya-50);
}
.copy-row code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--surya-800);
  word-break: break-all;
}
.copy-row .copy-label {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--surya-600);
}

.steps {
  list-style: none;
  margin-top: 28px;
}
.steps li {
  display: flex;
  gap: 14px;
}
.steps li + li {
  margin-top: 14px;
}
.steps .num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: var(--surya-100);
  color: var(--surya-700);
  font-size: 11.5px;
  font-weight: 700;
}
.steps span:last-child {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ghat-700);
}

.aside-note {
  margin-top: 28px;
  border-radius: var(--radius);
  background: rgba(246, 196, 83, 0.12);
  padding: 16px 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ghat-700);
}

.fine-print {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ghat-500);
}
.fine-print .icon {
  flex: none;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  color: var(--surya-500);
}

/* ----------------------------------------------------------- 12. FOOTER -- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ghat-950);
  color: var(--ghat-200);
  padding-block: 88px 40px;
}

.site-footer .glow {
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 52rem;
  height: 20rem;
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 48px;
}

.site-footer img.footer-logo {
  height: 44px;
  width: auto;
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--surya-300);
}

.footer-about {
  margin-top: 20px;
  max-width: 26rem;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ghat-300);
}

.footer-list {
  list-style: none;
  margin-top: 20px;
}
.footer-list li + li {
  margin-top: 12px;
}
.footer-list a,
.footer-list span {
  font-size: 14.5px;
  color: var(--ghat-300);
  transition: color 0.3s var(--ease);
}
.footer-list a:hover {
  color: #fff;
}
.footer-list .with-icon {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-list .with-icon .icon {
  flex: none;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  color: var(--surya-400);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ghat-200);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: var(--surya-400);
  background: rgba(242, 131, 13, 0.15);
  color: var(--surya-300);
}

.footer-bottom {
  position: relative;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}
.footer-om {
  text-align: center;
  font-family: var(--font-deva);
  font-size: 17px;
  color: var(--surya-300);
}
.footer-blessing {
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ghat-400);
}
.footer-legal {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
  color: var(--ghat-500);
}

/* ------------------------------------------------------------ 13. MUSIC -- */
.music {
  position: fixed;
  right: 16px;
  top: calc(var(--header-h) + 14px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.music__panel {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 215, 154, 0.8);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 99px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.music__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 99px;
  background: transparent;
  color: var(--surya-700);
  cursor: pointer;
  transition: background-color 0.3s var(--ease);
}
.music__btn:hover {
  background: var(--surya-100);
}
.music__btn .icon {
  width: 16px;
  height: 16px;
}

.music__label {
  display: none;
  padding-right: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ghat-500);
}

.music__prompt {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--surya-200);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 99px;
  padding: 6px 6px 6px 16px;
  font-size: 12.5px;
  color: var(--ghat-700);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  animation: rise 0.5s var(--ease) both;
}
.music__prompt.is-visible {
  display: flex;
}
.music__prompt button {
  border: none;
  background: transparent;
  cursor: pointer;
}
.music__prompt .prompt-play {
  font-weight: 700;
  color: var(--surya-700);
}
.music__prompt .prompt-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  color: var(--ghat-400);
}
.music__prompt .prompt-close:hover {
  background: var(--ghat-100);
}

/* ----------------------------------------------------------- 14. MOTION -- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes flicker {
  0%,
  100% {
    transform: scaleY(1) scaleX(1);
    opacity: 0.95;
  }
  35% {
    transform: scaleY(1.08) scaleX(0.96);
    opacity: 1;
  }
  70% {
    transform: scaleY(0.94) scaleX(1.04);
    opacity: 0.9;
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.animate-rise {
  animation: rise 0.8s var(--ease) both;
}

.flame {
  transform-origin: bottom;
  animation: flicker 2.4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------- 15. BREAKPOINTS -- */
@media (min-width: 640px) {
  .container {
    padding-inline: 32px;
  }
  .section {
    padding-block: 112px;
  }
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn-row--center {
    justify-content: center;
  }
  .btn--block {
    width: auto;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
  .gallery__item--tall {
    grid-row: span 2;
  }
  .gallery__item--big {
    grid-column: span 2;
    grid-row: span 2;
  }
  .timeline li {
    padding-left: 96px;
  }
  .timeline li:not(:last-child) {
    padding-bottom: 56px;
  }
  .timeline__thread,
  .timeline__marker {
    display: flex;
  }
  .timeline__thread {
    display: block;
  }
  .facts {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
  }
  .event-card__banner {
    height: 224px;
  }
  .event-card__banner-text {
    padding-inline: 40px;
  }
  .event-card__foot {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 40px;
  }
  .form-card,
  .zelle-card__body {
    padding: 40px;
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid .span-2 {
    grid-column: span 2;
  }
  .scroll-cue {
    display: flex;
  }
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
  }
  .music__label {
    display: inline;
  }
  .music {
    right: 24px;
  }
  .figure__chip {
    left: 40px;
  }
  .lightbox__prev {
    left: 32px;
  }
  .lightbox__next {
    right: 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 48px;
  }
  .nav,
  .header-actions {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .split--wide-left {
    grid-template-columns: 1.1fr 1fr;
  }
  .split--wide-right {
    grid-template-columns: 1fr 1.15fr;
  }
  .split--start {
    align-items: start;
  }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* -------------------------------------------- 16. LATE OVERRIDES / TUNING -- */

/* The music control lives inside the header bar on wide screens, so it never
   sits on top of the page content; on smaller screens it floats just below. */
@media (min-width: 1024px) {
  .music {
    position: relative;
    right: auto;
    top: auto;
    margin-right: 4px;
  }
  .music__panel {
    background: rgba(255, 255, 255, 0.75);
  }
  .site-header--over .music__panel {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
  }
  .site-header--over .music__btn {
    color: #fff;
  }
  .site-header--over .music__label {
    color: rgba(255, 255, 255, 0.8);
  }
}

/* Only invite the reader to scroll when there is room to show the cue. */
.scroll-cue {
  bottom: 40px;
}
@media (max-height: 940px) {
  .scroll-cue {
    display: none !important;
  }
}

/* On phones the control floats bottom-right, clear of the hero copy and
   within easy reach of a thumb; the prompt opens upward from it. */
@media (max-width: 1023px) {
  .music {
    top: auto;
    bottom: 20px;
    right: 16px;
    align-items: flex-end;
  }
  .music__prompt {
    top: auto;
    bottom: calc(100% + 8px);
  }
}

/* ============================================================================
   17. LOGO LOCK-UP, PHOTO GALLERY AND ZELLE ADDRESS  (2026 content update)
   ========================================================================== */

/* --- logo: square mark + wordmark ---------------------------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.logo img {
  height: 42px;
  width: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px -3px rgba(20, 47, 60, 0.35);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ghat-900);
  white-space: nowrap;
}

.logo__tag {
  margin-top: 2px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surya-600);
  white-space: nowrap;
}

.site-header--over .logo__name {
  color: #fff;
}
.site-header--over .logo__tag {
  color: var(--surya-200);
}

/* the wordmark would crowd the hamburger on the narrowest phones */
@media (max-width: 400px) {
  .logo__tag {
    display: none;
  }
  .logo__name {
    font-size: 16px;
  }
}

.site-footer img.footer-logo {
  height: 72px;
  width: 72px;
  border-radius: 14px;
  object-fit: cover;
}

/* --- gallery: real photographs, no caption overlay ----------------------- */
.gallery__item::after {
  background: linear-gradient(0deg, rgba(8, 20, 25, 0.25), transparent 45%);
  opacity: 0;
}
.gallery__item:hover::after {
  opacity: 1;
}

/* --- Zelle address panel (shown in place of a QR code) ------------------- */
.zelle-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  border: 1px solid var(--surya-200);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surya-50), #fff 60%);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
}

.zelle-address__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghat-400);
}

.zelle-address__value {
  margin-top: 10px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(15px, 3.4vw, 21px);
  font-weight: 700;
  color: var(--surya-800);
  word-break: break-word;
  line-height: 1.35;
}

.zelle-address__note {
  margin-top: 12px;
  max-width: 26rem;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ghat-500);
}

.copy-row--center {
  justify-content: center;
  margin-top: 18px;
  width: auto;
  padding-inline: 26px;
}
.copy-row--center .copy-label {
  font-size: 12.5px;
}

/* Let tall and wide tiles back-fill the grid instead of leaving holes. */
.gallery {
  grid-auto-flow: dense;
}


/* ============================================================================
   18. HERO POLISH AND A LARGER FOOTER MARK
   ========================================================================== */

/* The sunset behind the headline is bright, so the type carries its own shadow
   rather than forcing a heavier scrim over the photograph. */
.hero h1,
.hero__lede,
.hero__om,
.hero__stats {
  text-shadow: 0 2px 18px rgba(8, 16, 28, 0.55);
}

.hero .eyebrow--light {
  background: rgba(10, 18, 30, 0.35);
}

/* Twice the previous size — the footer is where the mark has room to be read. */
.site-footer img.footer-logo {
  height: 144px;
  width: 144px;
  border-radius: 22px;
}

/* The sunset carries the hero on its own; the mandala only whispers over it. */
.hero .mandala {
  opacity: 0.05;
}

/* The accent line lands on the golden band of the photograph, so it is pitched
   lighter than the section accents to keep it separated from the sky. */
.hero .accent {
  background: linear-gradient(90deg, #fff4dc, #ffe1ae 45%, #ffc978);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================================
   19. FINAL LOGO — the badge carries the name, so it stands on its own
   ========================================================================== */
.logo img {
  height: 52px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(20, 47, 60, 0.28));
}

/* over the dark hero the badge needs a touch more separation */
.site-header--over .logo img {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.55));
}

.drawer__head .logo img {
  height: 48px;
}

@media (max-width: 520px) {
  .logo img {
    height: 42px;
  }
}

.site-footer img.footer-logo {
  height: auto;
  width: 260px;
  max-width: 100%;
  border-radius: 0;
  object-fit: contain;
}

@media (max-width: 520px) {
  .site-footer img.footer-logo {
    width: 220px;
  }
}

/* The badge is an emblem at header size — its own lettering is too small to
   read there — so the name sits beside it as type. */
.logo img {
  height: 48px;
}

.logo__name {
  font-size: 17px;
}

@media (max-width: 640px) {
  .logo img {
    height: 40px;
  }
  .logo__name {
    font-size: 15.5px;
  }
}

@media (max-width: 420px) {
  .logo__text {
    display: none;
  }
  .logo img {
    height: 44px;
  }
}

/* The wider badge leaves the header tight at laptop widths — keep every item
   on one line, and drop the two optional labels before anything wraps. */
.nav a,
.header-actions .btn,
.music__label,
.logo__name,
.logo__tag {
  white-space: nowrap;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .logo__tag,
  .music__label {
    display: none;
  }
  .nav a {
    padding-inline: 10px;
    font-size: 13px;
  }
  .logo img {
    height: 42px;
  }
}

@media (min-width: 1280px) {
  .nav a {
    padding-inline: 12px;
  }
}

/* ============================================================================
   20. ICON SIZING — Safari gives an inline SVG with only a viewBox no
   intrinsic size, so unsized icons vanished on iPhones (the button borders
   showed, the glyph inside did not). Every icon is now sized in the markup;
   these rules are the safety net.
   ========================================================================== */
svg.icon {
  width: 20px;
  height: 20px;
  flex: none;
  display: block;
  overflow: visible;
}

/* --- menu button: three bars that read at a glance ------------------------ */
.menu-btn svg.icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.menu-btn {
  background: rgba(255, 248, 237, 0.9);
  border-color: var(--surya-300);
  color: var(--surya-800);
}
.menu-btn:hover {
  background: var(--surya-100);
}

.site-header--over .menu-btn {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.site-header--over .menu-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* --- social buttons: filled, so the glyph has something to sit on --------- */
.footer-social a svg.icon,
.social-btn svg.icon {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.footer-social a:hover {
  background: var(--surya-500);
  border-color: var(--surya-500);
  color: #fff;
}

.social-btn {
  background: var(--surya-50);
  border-color: var(--surya-300);
  color: var(--surya-700);
}
.social-btn:hover {
  background: var(--surya-500);
  border-color: var(--surya-500);
  color: #fff;
}

/* --- music control ------------------------------------------------------- */
.music__btn svg.icon {
  width: 18px;
  height: 18px;
}

/* ============================================================================
   21. ROSE SECTIONS — the flat near-black bands are now a soft red ground.
   Everything that previously assumed white-on-black is restated here for
   dark-on-light, so contrast holds.
   ========================================================================== */
:root {
  --rose-50: #fdf1ee;
  --rose-100: #fbe3dd;
  --rose-200: #f6cdc3;
  --rose-300: #eeae9f;
}

.section--rose {
  background: linear-gradient(180deg, var(--rose-100) 0%, var(--rose-50) 55%, var(--rose-100) 100%);
  color: var(--ghat-900);
}

.section--rose .section-title h2 {
  color: var(--ghat-900);
}
.section--rose .section-title p {
  color: var(--ghat-600);
}

/* the accent gradient needs more weight against a warm ground */
.section--rose .accent {
  background: linear-gradient(90deg, var(--sindoor-600), var(--sindoor-500) 55%, var(--surya-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section--rose .eyebrow {
  border-color: var(--rose-300);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sindoor-700);
}

.section--rose .rule {
  background: linear-gradient(90deg, transparent, var(--sindoor-500), transparent);
}
.section--rose .section-title--left .rule {
  background: linear-gradient(90deg, var(--sindoor-500), transparent);
}

/* --- cards that used to be translucent white on black --------------------- */
.card--soft {
  border-color: var(--rose-200);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: none;
  box-shadow: var(--shadow-soft);
}
.card--soft:hover {
  border-color: var(--sindoor-400);
  background: #fff;
  box-shadow: var(--shadow-lift);
}
.card--soft h3 {
  color: var(--ghat-900);
}
.card--soft p {
  color: var(--ghat-600);
}
.card--soft span {
  color: var(--sindoor-600);
}

/* --- numbered etiquette list --------------------------------------------- */
.section--rose .numbered li {
  border-color: var(--rose-200);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: none;
}
.section--rose .numbered .num {
  background: var(--sindoor-500);
  color: #fff;
}
.section--rose .numbered span:last-child {
  color: var(--ghat-700);
}

.section--rose .tick-list span:last-child {
  color: var(--ghat-700);
}

.pill--soft {
  border-color: var(--rose-300);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ghat-700);
  backdrop-filter: none;
}

/* --- decoration: the glow and mandala were tuned for a black ground ------- */
.section--rose .glow--sun {
  background: rgba(210, 64, 44, 0.16);
}
.section--rose .mandala {
  color: var(--sindoor-500);
  opacity: 0.09;
}

/* --- the sun/heart badges that sat on the dark ground --------------------- */
.section--rose .btn--ghost {
  border-color: var(--sindoor-400);
  background: rgba(255, 255, 255, 0.7);
  color: var(--sindoor-700);
  backdrop-filter: none;
}
.section--rose .btn--ghost:hover {
  border-color: var(--sindoor-600);
  background: #fff;
}

/* --- footer: the last black band, now the same soft red ------------------ */
.site-footer {
  background: linear-gradient(180deg, var(--rose-100), var(--rose-200));
  color: var(--ghat-700);
}

.site-footer .glow--sun {
  background: rgba(210, 64, 44, 0.14);
}

.site-footer h3 {
  color: var(--sindoor-700);
}

.footer-about {
  color: var(--ghat-700);
}

.footer-list a,
.footer-list span {
  color: var(--ghat-700);
}
.footer-list a:hover {
  color: var(--sindoor-700);
}
.footer-list .with-icon .icon {
  color: var(--sindoor-500);
}

.footer-social a {
  border-color: var(--sindoor-300, var(--rose-300));
  background: rgba(255, 255, 255, 0.8);
  color: var(--sindoor-700);
}
.footer-social a:hover {
  background: var(--sindoor-500);
  border-color: var(--sindoor-500);
  color: #fff;
}

.footer-bottom {
  border-top-color: rgba(142, 35, 23, 0.18);
}

.footer-om {
  color: var(--sindoor-700);
}

.footer-blessing {
  color: var(--ghat-600);
}

.footer-legal {
  color: var(--ghat-500);
}

/* the waves that meet the footer and the rose sections were cut from cream */
.site-footer .wave--top {
  color: var(--cream);
}

/* --- 404 page ------------------------------------------------------------ */
.section--rose h1 {
  color: var(--ghat-900);
}

/* ============================================================================
   22. CHECKBOX GROUP — a multi-select that reads as a set of choices
   ========================================================================== */
.checkgroup {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.checkgroup__legend {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ghat-700);
}

.checkgroup__grid {
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .checkgroup__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkgroup__option {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--surya-200);
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 12px 15px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ghat-700);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.checkgroup__option:hover {
  border-color: var(--surya-400);
  background: #fff;
}

.checkgroup__option input {
  flex: none;
  margin-top: 1px;
  width: 19px;
  height: 19px;
  accent-color: var(--surya-500);
  cursor: pointer;
}

/* a ticked option should be obvious at a glance */
.checkgroup__option:has(input:checked) {
  border-color: var(--surya-500);
  background: var(--surya-50);
  box-shadow: inset 0 0 0 1px var(--surya-300);
  color: var(--ghat-800);
  font-weight: 600;
}

.checkgroup__option input:focus-visible {
  outline: 2px solid var(--surya-500);
  outline-offset: 2px;
}

.checkgroup.has-error .checkgroup__option {
  border-color: var(--sindoor-400);
}
.checkgroup.has-error .field__error {
  display: block;
}

/* ============================================================================
   23. PAGE BANNERS — the last dark bands. Same soft red ground as the
   sections, with the photograph reduced to a faint warm texture behind it.
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, var(--rose-200) 0%, var(--rose-100) 45%, var(--rose-50) 100%);
  color: var(--ghat-800);
}

/* the sunset stays as a whisper of texture, not a picture */
.page-hero__media img {
  opacity: 0.14;
  filter: saturate(0.7);
}

.page-hero__media::after {
  background: linear-gradient(
    180deg,
    rgba(251, 227, 221, 0.55) 0%,
    rgba(253, 241, 238, 0.72) 55%,
    rgba(253, 241, 238, 0.92) 100%
  );
}

.page-hero h1 {
  color: var(--sindoor-700);
}

.page-hero .accent {
  background: linear-gradient(90deg, var(--sindoor-500), var(--surya-600) 60%, var(--surya-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: var(--ghat-600);
}

.page-hero .eyebrow {
  border-color: var(--rose-300);
  background: rgba(255, 255, 255, 0.78);
  color: var(--sindoor-700);
}

.page-hero .mandala {
  color: var(--sindoor-500);
  opacity: 0.1;
}

/* the ghost buttons in a banner now sit on a light ground */
.page-hero .btn--ghost {
  border-color: var(--sindoor-400);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sindoor-700);
  backdrop-filter: none;
}
.page-hero .btn--ghost:hover {
  border-color: var(--sindoor-600);
  background: #fff;
}
