:root {
  --bg: #f8f1df;
  --surface: rgba(255, 251, 243, 0.88);
  --text: #34201a;
  --muted: #715148;
  --saffron: #cf6a1c;
  --maroon: #7a1f1b;
  --gold: #d6b25e;
  --border: rgba(122, 31, 27, 0.16);
  --shadow: 0 20px 45px rgba(72, 32, 18, 0.14);
  --radius: 24px;
  --container: min(1160px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hind", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 178, 94, 0.26), transparent 30%),
    radial-gradient(circle at top right, rgba(207, 106, 28, 0.18), transparent 25%),
    linear-gradient(180deg, #fffaf0 0%, #f8f1df 55%, #f4e6cf 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section--pattern {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 248, 236, 0.9)),
    repeating-linear-gradient(45deg, rgba(214, 178, 94, 0.07) 0, rgba(214, 178, 94, 0.07) 8px, transparent 8px, transparent 20px);
}
.section--accent { background: linear-gradient(180deg, rgba(122, 31, 27, 0.05), rgba(214, 178, 94, 0.08)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.8rem;
  color: var(--maroon);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}

h1, h2, h3 {
  margin: 0 0 0.85rem;
  font-family: "Cinzel", serif;
  line-height: 1.2;
}
p { margin: 0 0 1rem; }

.top-strip {
  background: linear-gradient(90deg, var(--maroon), #4e1412);
  color: #fff8ea;
  font-size: 0.95rem;
}
.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.top-strip__links { display: flex; gap: 1rem; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 236, 0.78);
  border-bottom: 1px solid rgba(122, 31, 27, 0.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 10px 20px rgba(122, 31, 27, 0.18);
  font-size: 1.4rem;
}
.brand__text strong, .brand__text small { display: block; }
.brand__text small { color: var(--muted); }

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff7ea;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--maroon);
}
.nav-menu {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 26rem;
  height: 26rem;
  top: -8rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(214, 178, 94, 0.3), transparent 68%);
}
.hero::after {
  width: 24rem;
  height: 24rem;
  bottom: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(207, 106, 28, 0.18), transparent 68%);
}

.hero__grid,
.volunteer-grid,
.contact-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.hero__content { padding-top: 1.5rem; }
.hero__content h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); max-width: 12ch; }
.hero__dates {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(214, 178, 94, 0.18);
  color: var(--maroon);
  font-weight: 700;
}
.hero__tagline { font-size: 1.25rem; color: var(--saffron); font-weight: 700; }
.hero__intro { max-width: 62ch; color: var(--muted); }
.hero__actions, .share-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__badges, .donation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.hero__badges span, .donation-types span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.8);
  border: 1px solid rgba(122, 31, 27, 0.1);
  color: var(--maroon);
  font-weight: 600;
}

.card, .countdown-card, .map-card, .notice-card, .profile-card, .sponsor-card, .faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .countdown-card, .notice-card, .profile-card, .faq-item { padding: 1.5rem; }
.hero__panel { display: grid; gap: 1.2rem; }
.card-label {
  margin-bottom: 0.8rem;
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.countdown div {
  padding: 1rem 0.7rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214, 178, 94, 0.18), rgba(122, 31, 27, 0.06));
  text-align: center;
}
.countdown strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--maroon);
}
.countdown span { color: var(--muted); font-size: 0.95rem; }

.poster-placeholder,
.qr-placeholder,
.video-placeholder,
.map-placeholder,
.profile-card__photo,
.sponsor-card,
.gallery-item {
  display: grid;
  place-items: center;
  text-align: center;
}
.poster-placeholder,
.qr-placeholder,
.video-placeholder,
.map-placeholder {
  min-height: 220px;
  border-radius: 20px;
  border: 1px dashed rgba(122, 31, 27, 0.25);
  background:
    linear-gradient(135deg, rgba(214, 178, 94, 0.18), rgba(255, 248, 236, 0.9)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d6b25e' stroke-opacity='0.25' stroke-width='1'%3E%3Cpath d='M90 20 L100 40 L120 42 L106 56 L110 76 L90 66 L70 76 L74 56 L60 42 L80 40 Z'/%3E%3Ccircle cx='90' cy='90' r='34'/%3E%3Cpath d='M90 126 L96 138 L110 140 L100 150 L103 164 L90 156 L77 164 L80 150 L70 140 L84 138 Z'/%3E%3C/g%3E%3C/svg%3E") center/180px repeat;
  color: var(--muted);
  font-weight: 600;
}

.hero__poster-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 32px rgba(72, 32, 18, 0.16);
}

.poster-caption {
  margin: 0.9rem 0 1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn--primary {
  color: #fff9f1;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 12px 24px rgba(122, 31, 27, 0.24);
}
.btn--secondary, .btn--ghost:hover, .btn--ghost:focus-visible {
  color: var(--maroon);
  background: rgba(214, 178, 94, 0.18);
  border-color: rgba(122, 31, 27, 0.12);
}
.btn--ghost {
  color: var(--maroon);
  background: transparent;
  border-color: rgba(122, 31, 27, 0.22);
}
.btn--full { width: 100%; }

.welcome-band { padding: 2rem 0; }
.welcome-band__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.24), rgba(122, 31, 27, 0.08));
  border: 1px solid rgba(122, 31, 27, 0.08);
  border-radius: var(--radius);
}

.section-heading {
  max-width: 54rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}
.section-heading--left { margin-left: 0; text-align: left; }

.about-grid, .committee-grid, .gallery-grid, .sponsor-grid { display: grid; gap: 1.2rem; }
.about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.schedule-table {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.schedule-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 251, 243, 0.9);
}
.schedule-row:nth-child(even) { background: rgba(255, 244, 226, 0.9); }
.schedule-row + .schedule-row { border-top: 1px solid rgba(122, 31, 27, 0.08); }
.schedule-row--head {
  background: linear-gradient(135deg, var(--maroon), #4f1411);
  color: #fff7e7;
  font-weight: 700;
}
.schedule-row span { display: block; color: var(--muted); font-size: 0.92rem; }

.committee-grid, .gallery-grid, .sponsor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.profile-card { text-align: center; }
.profile-card__photo {
  width: 100%;
  min-height: 180px;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(214, 178, 94, 0.28), rgba(122, 31, 27, 0.08));
  color: var(--muted);
  font-weight: 700;
}
.committee-note { margin-top: 1.2rem; }

.donation-grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 1.4rem; }

.gallery-item {
  min-height: 200px;
  padding: 0;
  border: 1px solid rgba(122, 31, 27, 0.12);
  border-radius: 22px;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  background: rgba(255, 251, 243, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(72, 32, 18, 0.16);
  border-color: rgba(122, 31, 27, 0.22);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item__body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
  color: var(--muted);
}

.gallery-item__body strong {
  color: var(--maroon);
  font-size: 1.02rem;
}

.festival-video {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #1a0f0a;
  box-shadow: 0 16px 32px rgba(72, 32, 18, 0.16);
}
.video-card { margin-top: 1.2rem; }

.announcement-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.notice-date {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--saffron);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-card { display: grid; gap: 1rem; }
.form-card label { display: grid; gap: 0.45rem; font-weight: 600; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(122, 31, 27, 0.16);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.95);
}

.sponsor-card {
  min-height: 150px;
  padding: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 54rem;
  margin: 0 auto;
}
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 0.9rem; color: var(--muted); }

.site-footer {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, #4e1411, #2b110d);
  color: #f8efe0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
  gap: 1.5rem;
}
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li + li { margin-top: 0.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(248, 239, 224, 0.12);
  color: rgba(248, 239, 224, 0.82);
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f9d5d, #128c7e);
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.28);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(24, 10, 8, 0.78);
}
.lightbox[hidden] {
  display: none;
}
.lightbox__content {
  width: min(620px, 100%);
  padding: 1.1rem;
  border-radius: 24px;
  background: #fff8ec;
  color: var(--text);
  box-shadow: var(--shadow);
}

.lightbox__image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: #f3e5cc;
}

.lightbox__caption {
  margin: 1rem 0 0.2rem;
  color: var(--muted);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: #fff8ec;
  color: var(--maroon);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero__grid, .volunteer-grid, .contact-grid, .location-grid, .donation-grid, .welcome-band__inner, .footer-grid, .about-grid, .announcement-list, .committee-grid, .gallery-grid, .sponsor-grid { grid-template-columns: 1fr; }
  .schedule-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 760px) {
  .top-strip__inner, .navbar { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 1.2rem;
  }
  .nav-menu.is-open { display: flex; }
  .section { padding: 4.5rem 0; }
  .hero__content h1 { max-width: 100%; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .top-strip__links { white-space: normal; }
}
