:root {
  --purple: #673ab7;
  --purple-deep: #24163a;
  --purple-soft: #f4effc;
  --purple-pale: #fbf9ff;
  --purple-line: #e5d9f7;
  --gold: #c7922a;
  --gold-bright: #f3c75f;
  --ink: #181023;
  --muted: #695f78;
  --line: rgba(70, 43, 105, 0.12);
  --shadow: 0 18px 46px rgba(65, 38, 96, 0.1);
  --container: 1320px;
  --gutter: clamp(18px, 4vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  background: var(--purple-pale);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px var(--gutter);
  background: rgba(251, 249, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(24, 16, 35, 0.06);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-width: 0;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand span,
.footer-brand div {
  min-width: 0;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  color: var(--purple);
}

.brand small,
.footer-brand p {
  display: block;
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #2d1b5c;
  overflow-wrap: anywhere;
}

.brand-logo {
  width: clamp(132px, 10vw, 158px);
  height: 54px;
  /* flex: 0 0 80px; */
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(75, 20, 132, 0.18));
}

.nav-drawer,
.nav-panel {
  display: contents;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.75vw, 10px);
}

.main-nav {
  min-width: 0;
  justify-self: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.header-actions {
  justify-self: end;
  justify-content: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-actions .btn {
  white-space: nowrap;
}

.btn-hotel {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.nav-backdrop {
  display: none;
}

.main-nav a,
.nav-dropdown summary {
  border-radius: 999px;
  padding: 9px clamp(7px, 0.7vw, 11px);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  color: #271157;
}

.main-nav a:hover,
.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  background: var(--purple-soft);
  color: var(--purple);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary .lucide {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary .lucide {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(24, 16, 35, 0.14);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  border-radius: 8px;
  padding: 10px 12px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(50, 13, 104, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn .lucide {
  width: 19px;
  height: 19px;
  stroke-width: 2.25;
}

.btn:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 16px 32px rgba(50, 13, 104, 0.2);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5930a4, #8157c7);
}

.btn-outline,
.btn-video {
  border-color: var(--purple);
  color: var(--purple);
  background: #fbf9ff;
}

.btn-gold {
  color: #351d00;
  background: linear-gradient(135deg, #ffe089, #d6991a);
}

.menu-toggle {
  display: none;
}

.hero-section {
  padding: clamp(54px, 6vw, 82px) var(--gutter);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(120deg, #fbf9ff 0%, #f4eefc 58%, #eee4fa 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.78fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  min-height: min(680px, calc(100vh - 82px));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.contact-page-section h1,
.donation-band h2 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", serif;
  line-height: 0.92;
}

.hero-content h1 {
  max-width: 640px;
  font-size: clamp(68px, 6.4vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-message {
  max-width: 680px;
  margin-top: 24px;
}

.hero-message h2 {
  margin: 0 0 14px;
  color: #2a0f86;
  font-size: clamp(24px, 2.3vw, 31px);
  font-weight: 850;
  line-height: 1.16;
}

.hero-message p:not(.eyebrow) {
  max-width: 640px;
  margin: 10px 0 0;
  color: #24184d;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}

.hero-message .eyebrow {
  margin-top: 18px;
}

.hero-message strong {
  display: block;
  margin-top: 14px;
  color: var(--purple);
  font-size: clamp(20px, 2.4vw, 29px);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-grid span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #32106e;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(60, 18, 116, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-content .hero-rsvp-note {
  max-width: 680px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: #33235c;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-rsvp-note a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-photo-card {
  position: relative;
  width: min(100%, 580px);
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 64px rgba(69, 38, 105, 0.16);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.section {
  padding: 72px var(--gutter);
}

.section-heading {
  max-width: var(--container);
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.contact-page-section h1,
.donation-band h2 {
  font-size: clamp(34px, 4vw, 48px);
}


.about-intro {
  max-width: 920px;
  margin: 8px auto 38px;
  text-align: center;
}

.about-intro p {
  max-width: 780px;
  margin: 0 auto;
  color: #24184d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.video-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.video-shell {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 10px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell iframe,
.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-shell video {
  background: #140822;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(68px, 8vw, 92px);
  height: clamp(68px, 8vw, 92px);
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: #351d00;
  background: linear-gradient(135deg, #ffe089, #d6991a);
  box-shadow: 0 20px 44px rgba(36, 22, 58, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.video-play-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  background: rgba(103, 58, 183, 0.14);
}

.video-play-button .lucide {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
  stroke-width: 2.4;
}

.video-shell.is-playing .video-play-button {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.88);
}

.video-shell:hover .video-play-button,
.video-play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play-button:focus-visible {
  outline: 3px solid rgba(103, 58, 183, 0.42);
  outline-offset: 6px;
}

.about-copy p {
  margin: 0 0 26px;
  color: #24184d;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 26px;
}

.feature-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: #32106e;
  font-size: 14px;
  font-weight: 800;
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--purple);
  background: #fff;
}

.feature-icon .lucide {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.schedule-section {
  background: linear-gradient(135deg, #fff 0%, #f8f3ff 56%, #fff8e4 100%);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 48px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.schedule-timeline {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
}

.schedule-item {
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 24px;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(41, 18, 78, 0.08);
}

.schedule-item time {
  color: #b9800f;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-item strong {
  color: #24036f;
  font-size: 18px;
  line-height: 1.25;
}

.schedule-item span {
  color: #55466f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.schedule-item .schedule-donation {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(199, 146, 42, 0.42);
  border-radius: 999px;
  color: #5f3900;
  background: #fff3c7;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.schedule-people {
  display: grid;
  min-width: 0;
  gap: 34px;
}

.schedule-group {
  display: grid;
  gap: 14px;
}

.schedule-group-heading {
  display: grid;
  justify-items: start;
  gap: 4px;
  max-width: 680px;
}

.schedule-group-heading .eyebrow,
.schedule-feature-card .eyebrow {
  margin: 0;
}

.schedule-group-heading h3,
.schedule-feature-card h3 {
  margin: 0;
  color: #270866;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.1;
}

.schedule-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.schedule-person-card {
  overflow: hidden;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(41, 18, 78, 0.08);
}

.schedule-person-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #130820;
}

.schedule-person-card span {
  display: block;
  min-height: 46px;
  padding: 10px 12px;
  color: #24036f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.schedule-feature-card {
  display: grid;
  grid-template-columns: minmax(130px, 160px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(199, 146, 42, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff8e6 100%);
  box-shadow: 0 14px 30px rgba(41, 18, 78, 0.1);
}

.schedule-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #130820;
  border-radius: 6px;
}

.performers-section {
  background: #fff;
}

.performer-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.ticket-section {
  background: #f2ebfb;
}

.ppv-section {
  padding-bottom: 34px;
  background: linear-gradient(135deg, #fbf9ff 0%, #fff7df 100%);
}

.ppv-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(199, 146, 42, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, #211238, #5722a5 58%, #2a1743);
  box-shadow: var(--shadow);
}

.ppv-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
}

.ppv-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #f7edff;
  font-size: 17px;
  font-weight: 700;
}

.ppv-action {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.ppv-action strong {
  color: #f7d069;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 950;
  line-height: 1;
}

.complimentary-section {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #f2ebfb;
}

.complimentary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(103, 58, 183, 0.18);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.complimentary-copy h2 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.complimentary-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 12px 0 0;
  color: #24184d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.ticket-card {
  position: relative;
  display: block;
  min-height: 218px;
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 14px 34px rgba(24, 16, 35, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ticket-card:hover,
.ticket-card:focus-visible {
  border-color: rgba(199, 146, 42, 0.62);
  box-shadow: 0 20px 42px rgba(24, 16, 35, 0.14);
  transform: translateY(-4px);
}

.ticket-card:focus-visible {
  outline: 3px solid rgba(103, 58, 183, 0.28);
  outline-offset: 5px;
}

.ticket-card.featured {
  border-color: var(--gold);
}

.ticket-card-donation {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  min-height: 0;
  padding: 18px clamp(18px, 3vw, 28px);
  border-color: rgba(199, 146, 42, 0.55);
  background: linear-gradient(135deg, #fff 0%, #fff8df 48%, #f4effc 100%);
  text-align: left;
}

.donation-logo-wrap {
  display: inline-flex;
  width: 128px;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(199, 146, 42, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 16, 35, 0.1);
}

.donation-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.donation-ticket-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.donation-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-title {
  color: var(--purple);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.donation-summary {
  color: #2f2457;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.donation-ticket-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.donation-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #351d00;
  background: linear-gradient(135deg, #ffe089, #d6991a);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(199, 146, 42, 0.24);
}

.donation-badge .lucide {
  width: 17px;
  height: 17px;
}

.donation-price {
  color: var(--purple);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.ticket-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ba80f2, #6c22c4);
  font-size: 15px;
  font-weight: 800;
}

.ticket-icon .lucide {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.ticket-card h3 {
  margin: 14px 0 4px;
  color: var(--purple);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
}

.ticket-card strong {
  display: block;
  font-size: 18px;
  color: #270866;
}

.ticket-card p {
  margin: 10px auto 0;
  max-width: 250px;
  color: #2f2457;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.ticket-features {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  color: #2f2457;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
  text-align: left;
}

.ticket-features li {
  position: relative;
  padding-left: 18px;
}

.ticket-features li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.tag {
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px 18px;
  border-radius: 17px 0 14px 0;
  background: linear-gradient(135deg, #d59818, #ffc84b);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ticket-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.split-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  max-width: var(--container);
}

.split-heading p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto 28px;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 22px;
  color: #4a267b;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(62, 18, 120, 0.08);
  cursor: pointer;
}

.filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, #47118e, #842ddd);
}

/* .gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto; 
 } */

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}



.gallery-card {
  width: min(250px, 100%);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 16, 35, 0.08);
  cursor: pointer;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}


.coverage-section {
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f4effc 48%, #fff7df 100%);
}

.coverage-shell {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.coverage-swiper {
  width: 100%;
  padding: 6px 0 44px;
}

.coverage-slide {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 58, 183, 0.18);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(42, 15, 134, 0.1);
}

.coverage-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.coverage-controls {
  position: absolute;
  z-index: 3;
  top: calc(50% - 28px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.coverage-nav {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(103, 58, 183, 0.22);
  border-radius: 50%;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(42, 15, 134, 0.18);
  cursor: pointer;
  pointer-events: auto;
}

.coverage-nav .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.coverage-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #8a6ab7;
  opacity: 0.45;
}

.coverage-section .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 1;
}

.coverage-action {
  display: flex;
  justify-content: center;
  margin: 8px auto 0;
}

.press-release-section {
  background: #fff;
}

.press-release-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, #fbf9ff 0%, #fff 58%, #fff7df 100%);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.press-release-card:hover,
.press-release-card:focus-visible {
  border-color: rgba(199, 146, 42, 0.62);
  box-shadow: 0 18px 38px rgba(24, 16, 35, 0.14);
  transform: translateY(-2px);
}

.press-release-badge {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.press-release-copy strong,
.press-release-copy span {
  display: block;
}

.press-release-copy strong {
  color: #270866;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.press-release-copy span {
  margin-top: 10px;
  color: #4c3d72;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.press-release-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #5930a4, #8157c7);
  font-weight: 850;
  white-space: nowrap;
}

.press-release-action .lucide {
  width: 18px;
  height: 18px;
}

.location-section {
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.location-copy h2 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.location-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #24184d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
}

.location-details {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.location-details > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--purple-pale);
}

.location-details p {
  margin: 0;
  color: #2f2457;
  font-weight: 700;
  line-height: 1.45;
}

.hotel-rate-detail {
  grid-column: 1 / -1;
}

.hotel-rate-list {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: #2f2457;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hotel-rate-list a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hotel-rate-note {
  margin-top: 12px !important;
  color: #5d4c7c !important;
  font-size: 13px;
  font-weight: 650 !important;
}

.location-details strong {
  display: block;
  margin-bottom: 3px;
  color: #270866;
  font-size: 15px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-image-panel {
  overflow: hidden;
  border: 6px solid #fbf9ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(42, 15, 134, 0.12);
}

.location-image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.transportation-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: var(--container);
  margin: 40px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(199, 146, 42, 0.32);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8df 0%, #fbf9ff 58%, #fff 100%);
  box-shadow: var(--shadow);
}

.transportation-copy h3 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
}

.transportation-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 22px;
  color: #24184d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.transportation-image {
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(42, 15, 134, 0.12);
}

.transportation-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lens-experience {
  padding-top: 20px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.mini-grid span {
  min-height: 92px;
  padding: 12px;
}

.donation-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--container);
  margin: 0 auto 64px;
  padding: 30px clamp(22px, 5vw, 58px);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #211238, #5722a5 56%, #2a1743);
  box-shadow: var(--shadow);
}

.donation-band h2 {
  color: #fff;
}

.donation-band p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #f2e8ff;
  font-weight: 600;
}

.bvc-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 8, 34, 0.22);
}

.bvc-logo-link img {
  width: 180px;
  height: auto;
  object-fit: contain;
}


.press-alert-section {
  background: linear-gradient(135deg, #fff 0%, #f5effd 56%, #fff7df 100%);
}

.press-alert-hero,
.press-alert-layout,
.press-wide-block {
  max-width: var(--container);
  margin: 0 auto;
}

.press-alert-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 34px;
}

.press-alert-hero h1 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.94;
}

.press-subtitle,
.press-presented {
  margin: 12px 0 0;
  color: #24184d;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 850;
  line-height: 1.25;
}

.press-presented {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-status-card,
.press-card,
.press-wide-block {
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.press-status-card {
  padding: 24px;
  border-left: 6px solid var(--gold);
}

.press-status-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-status-card strong {
  display: block;
  margin-top: 8px;
  color: #270866;
  font-size: 24px;
  line-height: 1.1;
}

.press-status-card p {
  margin: 8px 0 0;
  color: #24184d;
  font-weight: 750;
}

.press-alert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.press-article {
  color: #24184d;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.68;
}

.press-article p {
  margin: 0 0 18px;
}

.press-lead {
  color: #1f1150;
  font-size: clamp(19px, 2.1vw, 23px);
  font-weight: 800;
  line-height: 1.52;
}

.press-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(103, 58, 183, 0.14);
}

.press-block h2,
.press-card h2,
.press-wide-block h2 {
  margin: 0 0 14px;
  color: var(--purple);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.press-block h3 {
  margin: 18px 0 10px;
  color: #270866;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.press-block a,
.press-contact-card a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.press-sidebar {
  display: grid;
  gap: 18px;
}

.press-card {
  padding: 22px;
}

.press-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.press-details div {
  display: grid;
  gap: 3px;
}

.press-details dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-details dd {
  margin: 0;
  color: #24184d;
  font-weight: 800;
  line-height: 1.35;
}

.press-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.press-list strong,
.press-list span {
  display: block;
}

.press-list strong {
  color: #270866;
  font-size: 16px;
}

.press-list span {
  margin-top: 4px;
  color: #4c3d72;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.press-contact-card p {
  margin: 8px 0 0;
  color: #24184d;
  font-weight: 700;
  line-height: 1.45;
}

.press-wide-block {
  margin-top: 44px;
  padding: clamp(24px, 4vw, 38px);
}

.press-name-grid,
.press-chip-grid,
.press-guest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.press-name-grid span,
.press-chip-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 8px;
  color: #32106e;
  background: var(--purple-pale);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.press-chip-grid span {
  justify-content: center;
  text-align: center;
}

.press-guest-card {
  display: grid;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 8px;
  color: #32106e;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 16, 35, 0.08);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.press-guest-card:hover,
.press-guest-card:focus-visible {
  border-color: rgba(199, 146, 42, 0.62);
  box-shadow: 0 18px 38px rgba(24, 16, 35, 0.14);
  transform: translateY(-2px);
}

.press-guest-card img {
  width: 100%;
  height: clamp(210px, 17vw, 260px);
  object-fit: cover;
  background: var(--purple-pale);
}

.press-guest-card span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 14px;
  color: #270866;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.press-coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.press-coverage-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(103, 58, 183, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 16, 35, 0.08);
}

.press-coverage-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.press-coverage-grid figcaption {
  padding: 10px 12px;
  color: #32106e;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f5effd 56%, #fff7df 100%);
}


.contact-page-section .split-heading {
  display: block;
  text-align: center;
}

.contact-page-section .split-heading p:last-child {
  max-width: 640px;
  margin: 14px auto 0;
}

.submission-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.submission-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 999px;
  color: #32106e;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}


.contact-form-shell {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(103, 58, 183, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(54, 19, 100, 0.14);
}

.contact-form-shell::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--purple), var(--gold-bright));
}

.contact-form-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 22px 22px 4px;
}

.contact-form-header span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(199, 146, 42, 0.4);
  border-radius: 50%;
  color: var(--purple);
  background: var(--purple-pale);
  box-shadow: 0 10px 22px rgba(58, 20, 103, 0.08);
}

.contact-form-header .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2.25;
}

.contact-form-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: transparent;
}

.site-footer {
  margin-top: 0;
  padding: 42px var(--gutter) 24px;
  color: #f7edff;
  background: #21084f;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.3fr) minmax(260px, 0.95fr) minmax(210px, 0.75fr)
    minmax(150px, auto);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  align-self: center;
}

.footer-brand-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand-stacked div {
  max-width: 260px;
}

.footer-ezway-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer-brand strong {
  color: #f7d069;
  font-size: clamp(28px, 3vw, 38px);
}

.footer-brand p,
.site-footer address,
.site-footer a {
  color: #f7edff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.footer-address,
.footer-contact,
.footer-nav,
.footer-download {
  padding-top: 4px;
}

.site-footer a {
  display: block;
}

.footer-contact a + a,
.footer-nav a + a {
  margin-top: 4px;
}

.footer-nav {
  text-align: left;
}

.footer-download p {
  margin: 0 0 12px;
  color: #f7edff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-download p span,
.footer-download p strong {
  display: block;
}

.footer-download p strong {
  color: #f7d069;
  font-size: 18px;
}

.download-links {
  display: grid;
  gap: 8px;
}

.site-footer .download-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(247, 208, 105, 0.32);
  border-radius: 8px;
  padding: 9px 12px;
  color: #21084f;
  background: #fff;
  box-shadow: 0 12px 24px rgba(14, 3, 32, 0.18);
}

.download-links .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.copyright {
  max-width: var(--container);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(16, 3, 38, 0.82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: fit-content;
  max-width: 92vw;
}

.lightbox img {
  width: auto;
  max-height: 82vh;
  max-width: 92vw;
  border: 6px solid #fff;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  margin: 12px 4px 0;
  color: #fff;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(29, 17, 52, 0.78);
  box-shadow: 0 8px 22px rgba(20, 8, 42, 0.28);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--purple);
}

.lightbox-close .lucide {
  width: 24px;
  height: 24px;
}


/** affiliate link notice **/
  .affiliate-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #fff6ec;
    border: 1px solid #f4c98a;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 800px;
    margin-top: 10px;
  }

  .affiliate-banner__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .affiliate-banner__icon {
    font-size: 16px;
    flex-shrink: 0;
  }

  .affiliate-banner__text {
    font-size: 14px;
    color: #2b2b2b;
    line-height: 1.4;
  }

  .affiliate-banner__text strong {
    font-weight: 700;
  }

  .affiliate-banner__link {
    color: #2b2b2b;
    text-decoration: underline;
    margin-left: 4px;
  }

  .affiliate-banner__link:hover {
    color: #000;
  }

  .affiliate-banner__copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #e2662f;
    color: #e2662f;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease;
  }

  .affiliate-banner__copy-btn:hover {
    background-color: #fff1e8;
  }

  .affiliate-banner__copy-btn:active {
    background-color: #ffe4d2;
  }


  /** mobile apps **/
  .ez-apps {
    width: calc(100% - (var(--gutter) * 2));
    max-width: var(--container);
    margin: 0 auto 64px;
    padding: 30px clamp(22px, 5vw, 58px);
    border-radius: 20px;
    color: #fff;
  } 
  /** mobile apps ends **/
/** affiliate link notice ends **/
@media (max-width: 1120px) {
  .site-header-inner {
    grid-template-columns: auto auto;
  }

  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(18, 7, 42, 0.48);
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  .nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: min(82vw, 340px);
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 92px 24px 28px;
    border-left: 1px solid rgba(103, 58, 183, 0.16);
    background: #fbf9ff;
    box-shadow: -22px 0 54px rgba(23, 8, 50, 0.22);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .site-header.nav-open .nav-drawer {
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.nav-open .nav-backdrop {
    opacity: 1;
  }

  .site-header.nav-open .nav-panel {
    transform: translateX(0);
  }

  .main-nav,
  .header-actions {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .header-actions .btn {
    width: 100%;
  }

  .main-nav a,
  .nav-dropdown summary {
    display: flex;
    min-height: 46px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    font-size: 15px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 12px;
    background: var(--purple-soft);
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    min-height: 42px;
    background: #fff;
    white-space: normal;
  }

  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 70;
    gap: 5px;
    justify-self: end;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }

  .menu-toggle .lucide {
    width: 23px;
    height: 23px;
    color: var(--purple);
  }

  .hero-inner,
  .about-grid,
  .schedule-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .schedule-timeline {
    position: static;
  }

  .schedule-card-grid,
  .performer-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: auto;
    justify-items: start;
  }

  .hero-photo-card {
    width: min(100%, 460px);
  }

  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-card-donation {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .donation-ticket-meta {
    justify-items: center;
  }

  .gallery-grid {
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
  }

  .mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .donation-band {
    grid-template-columns: 1fr;
  }

  .ppv-banner,
  .complimentary-card,
  .press-release-card,
  .press-alert-hero,
  .press-alert-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ppv-action {
    justify-items: center;
  }

  .complimentary-card .btn,
  .press-release-action {
    justify-self: center;
  }

  .contact-form-shell {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .coverage-controls {
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 180px;
    height: 56px;
    flex-basis: 132px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    max-width: 190px;
  }

  .hero-section {
    min-height: auto;
    padding: 42px var(--gutter) 50px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .ticket-grid,
  .schedule-card-grid,
  /* .gallery-grid, */
  .mini-grid,
  .press-name-grid,
  .press-chip-grid,
  .press-guest-grid,
  .press-coverage-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card-grid,
  .performer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-group-heading {
    display: block;
    text-align: center;
  }

  .schedule-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .schedule-feature-card img {
    max-width: 220px;
    margin: 0 auto;
  }

  .complimentary-card .btn {
    width: 100%;
  }

  .press-alert-section {
    padding-top: 48px;
  }

  .press-card,
  .press-wide-block {
    padding: 20px;
  }

  .ticket-card-donation {
    padding: 20px 18px;
  }

  .donation-logo-wrap {
    width: 150px;
  }

  .coverage-slide img {
    aspect-ratio: 4 / 3;
  }

  .coverage-nav {
    width: 44px;
    height: 44px;
  }

  .feature-list {
    gap: 14px;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-photo-card {
    width: 100%;
    border-width: 6px;
    border-radius: 18px;
  }

  .video-shell {
    border-width: 5px;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 46px 18px;
  }

  .split-heading {
    display: block;
    text-align: center;
  }


  .donation-band {
    margin: 0 auto 48px;
    text-align: center;
  }

  .contact-form-shell {
    border-radius: 14px;
  }

  .contact-form-header {
    padding: 18px 16px 0;
  }

  .contact-form-frame {
    height: 820px;
  }

  .bvc-logo-link {
    margin-inline: auto;
  }

  .site-footer {
    padding: 36px 18px 22px;
  }

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

  .footer-brand {
    justify-content: center;
  }

  .footer-brand-stacked {
    align-items: center;
    text-align: center;
  }

  .footer-address,
  .footer-contact,
  .footer-nav,
  .footer-download {
    padding-top: 0;
  }

  .download-links {
    justify-items: center;
  }

  .copyright {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .transportation-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .transportation-copy .btn {
    width: 100%;
  }
}

@media (max-width: 500px) {

  
  .filter-bar {
    gap: 6px;
  }
  .filter-bar .filter-btn {
    min-height: revert;
    padding: 6px 10px;
    font-size: 12px;
  }
  .gallery-card {
    width: min(180px, 100%);
  }

  .btn {
    gap: 6px;
    font-weight: 500;
    font-size: 11px;
    min-height: revert;
  }
  .btn .lucide {
    width: 16px;
    height: 16px;
  }
  .hero-actions {
    gap: 8px;
  }
}
