@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text: #ffffff;
  --muted: #dbe5ff;
  --accent: #0cc0df;
  --glass: rgba(8, 15, 34, 0.38);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --effect-white-strong: rgba(255, 255, 255, 0.9);
  --effect-white: rgba(255, 255, 255, 0.72);
  --effect-white-soft: rgba(255, 255, 255, 0.42);
  --effect-white-fade: rgba(255, 255, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #020713;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

/* =========================
   POPUP OPENING
========================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  z-index: 9999;
  opacity: 1;
  transition: opacity 2.2s ease-in-out;
}

.popup-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.popup-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.popup-dark-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(26, 55, 120, 0.08), rgba(0, 0, 0, 0.48)),
    linear-gradient(to bottom, rgba(2, 6, 20, 0.16), rgba(2, 5, 14, 0.58));
}

.popup-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  background: rgba(6, 14, 34, 0.48);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: popupShow 0.55s ease;
}

.popup-box.hide {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: all 0.45s ease;
}

.intro-copy {
  width: min(820px, 92%);
  padding: 20px;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.intro-copy .eyebrow {
  display: block;
  max-width: none;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.intro-copy p {
  max-width: 660px;
  margin: 0 auto;
  color: #eef4ff;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.intro-copy .caption-info {
  margin-top: 22px;
}

.intro-copy .caption-info p {
  margin-top: 4px;
  font-size: 1rem;
}

/* =========================
   INTRO TEXT SETTINGS
========================= */
#videoCaption,
#heroIntro {
  width: min(920px, 94%);
  padding: clamp(28px, 4vw, 44px);
}

#heroIntro {
  transform: translateY(24px);
}

#videoCaption .eyebrow,
#heroIntro .eyebrow {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  letter-spacing: 5px;
  margin-bottom: 18px;
}

#videoCaption .headline-title,
#heroIntro .headline-title {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  font-weight: 700;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.72);
}

#videoCaption .headline-lead,
#heroIntro .headline-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.75;
}

#videoCaption .caption-info,
#heroIntro .caption-info {
  margin-top: 20px;
}

.video-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: opacity 4.5s ease-in-out, transform 4.5s ease-in-out;
}

.video-caption.hidden {
  display: block !important;
  opacity: 0;
  visibility: hidden;
}

.video-caption.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.subtitle {
  color: var(--muted);
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  letter-spacing: 0.6px;
}

.event-info {
  margin: 20px 0 24px;
  color: #f5f7ff;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.intro-status {
  display: none;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: #111827;
}

.btn:hover {
  transform: translateY(-2px);
}

/* =========================
   MAIN STAGE
========================= */
#mainContent {
  position: relative;
}

#mainContent.intro-reveal .hero-panel .story-box {
  opacity: 1;
  transform: none;
}

#mainContent.intro-reveal.show .hero-panel .story-box {
  opacity: 1;
  transform: none;
}

.fixed-stage {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28)),
    url("image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
}

.stage-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(26, 55, 120, 0.08), rgba(0, 0, 0, 0.48)),
    linear-gradient(to bottom, rgba(2, 6, 20, 0.16), rgba(2, 5, 14, 0.58));
}

.golden-spotlight {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
  transition: opacity 0.6s ease;
}

body.spotlight-muted .golden-spotlight {
  opacity: 0;
}

.golden-spotlight::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16%;
  width: min(980px, 112vw);
  height: 104vh;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 0%, var(--effect-white-strong), var(--effect-white-soft) 24%, transparent 58%),
    radial-gradient(ellipse at 50% 44%, var(--effect-white-fade), rgba(255, 255, 255, 0.1) 36%, transparent 70%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14) 42%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 34%, #000 0 26%, rgba(0, 0, 0, 0.5) 42%, transparent 76%);
  mask-image: radial-gradient(ellipse at 50% 34%, #000 0 26%, rgba(0, 0, 0, 0.5) 42%, transparent 76%);
  filter: blur(44px);
  transform-origin: 50% 0%;
  animation: spotlightSweep 9s ease-in-out infinite alternate;
}

.golden-spotlight::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(720px, 86vw);
  height: 120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14) 42%, transparent 76%),
    radial-gradient(circle at 42% 48%, rgba(255, 255, 255, 0.44) 0 1px, transparent 3px),
    radial-gradient(circle at 55% 44%, rgba(255, 255, 255, 0.36) 0 1px, transparent 3px),
    radial-gradient(circle at 62% 56%, rgba(255, 255, 255, 0.4) 0 1px, transparent 3px),
    radial-gradient(circle at 35% 55%, rgba(255, 255, 255, 0.32) 0 1px, transparent 3px);
  filter: blur(5px);
  animation: footlightPulse 5.6s ease-in-out infinite alternate;
}

.sparkle-layer {
  position: absolute;
  left: 50%;
  top: 6%;
  width: min(420px, 56vw);
  height: 58vh;
  transform: translateX(-50%);
  opacity: 0.44;
  background:
    radial-gradient(circle at 48% 8%, var(--effect-white-strong) 0 1px, transparent 3px),
    radial-gradient(circle at 34% 16%, var(--effect-white) 0 1px, transparent 3px),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.58) 0 1px, transparent 3px),
    radial-gradient(circle at 46% 27%, rgba(255, 255, 255, 0.68) 0 1px, transparent 3px),
    radial-gradient(circle at 58% 34%, rgba(255, 255, 255, 0.5) 0 1px, transparent 3px),
    radial-gradient(circle at 39% 42%, rgba(255, 255, 255, 0.48) 0 1px, transparent 3px),
    radial-gradient(circle at 52% 51%, rgba(255, 255, 255, 0.64) 0 1px, transparent 3px),
    radial-gradient(circle at 66% 60%, rgba(255, 255, 255, 0.42) 0 1px, transparent 3px),
    radial-gradient(circle at 43% 72%, rgba(255, 255, 255, 0.46) 0 1px, transparent 3px),
    radial-gradient(circle at 57% 84%, rgba(255, 255, 255, 0.5) 0 1px, transparent 3px);
  filter: blur(1.2px);
  animation: sparkleFloat 9s ease-in-out infinite alternate;
}

.sparkle-layer.layer-two {
  top: 10%;
  width: min(560px, 72vw);
  height: 64vh;
  opacity: 0.34;
  transform: translateX(-50%) scaleX(0.86);
  animation-duration: 12s;
  animation-delay: -4s;
}

.falling-leaf {
  position: absolute;
  top: -12vh;
  width: 26px;
  height: 26px;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.34));
  animation: leafFall linear infinite;
}

.falling-leaf::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 70% 0 70% 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 255, 0.92));
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.24),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
  transform: rotate(18deg);
}

.leaf-one {
  left: 14%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.leaf-two {
  left: 32%;
  width: 22px;
  height: 22px;
  animation-duration: 12s;
  animation-delay: -2.2s;
}

.leaf-three {
  left: 64%;
  width: 30px;
  height: 30px;
  animation-duration: 11s;
  animation-delay: -5s;
}

.leaf-four {
  left: 82%;
  width: 24px;
  height: 24px;
  animation-duration: 13s;
  animation-delay: -7.3s;
}

.top-bar {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

body.show-nav .top-bar {
  opacity: 1;
  pointer-events: auto;
}

.brand {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 16, 38, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.music-toggle {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 16, 38, 0.52);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.music-toggle:hover {
  transform: translateY(-2px);
}

/* =========================
   STORY PANELS
========================= */
.story-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 20px 84px;
}

.hero-panel {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 96px;
}

.hero-panel .story-box {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.story-box {
  width: min(760px, 92%);
  text-align: center;
  padding: 34px 15px;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: bold;
}

.story-box h2 {
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.story-box h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.story-box p {
  font-size: 1.05rem;
  color: #eef4ff;
}

/* =========================
   SECTION 1 TEXT SETTINGS
========================= */
.story-text {
  width: min(760px, 92%);
}

.story-text h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #eef4ff;
}

/* =========================
   FEATURE SECTIONS
========================= */
.performance-panel,
.rundown-panel,
.venue-panel {
  background: linear-gradient(to bottom, rgba(2, 7, 19, 0.1), rgba(2, 7, 19, 0.72));
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.section-heading h2,
.venue-copy h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.15;
}

.performance-content,
.rundown-content,
.venue-content {
  width: min(1080px, 92vw);
}

.performance-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.performance-spotlight {
  position: relative;
  min-height: 390px;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 195, 91, 0.2), transparent 38%),
    linear-gradient(to top, rgba(2, 5, 14, 0.92), rgba(10, 26, 57, 0.55)),
    var(--performance-image, url("246/Adu Pantun.jpeg")) center/cover;
  box-shadow: var(--shadow);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
  transition: background 0.35s ease;
}

.performance-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.28), transparent 28%);
  opacity: 0.48;
}

.performance-spotlight.is-changing {
  animation: spotlightPulse 0.55s ease;
}

.performance-number {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.performance-spotlight h3,
.performance-spotlight p {
  position: relative;
  z-index: 1;
}

.performance-spotlight h3 {
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.performance-spotlight p {
  max-width: 620px;
  color: #eef4ff;
  font-size: 1.08rem;
}

.performance-list {
  display: grid;
  gap: 12px;
  max-height: calc((84px * 4) + (12px * 3));
  padding-right: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 195, 91, 0.72) rgba(255, 255, 255, 0.08);
}

.performance-list::-webkit-scrollbar,
.rundown-list::-webkit-scrollbar {
  width: 10px;
}

.performance-list::-webkit-scrollbar-track,
.rundown-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.performance-list::-webkit-scrollbar-thumb,
.rundown-list::-webkit-scrollbar-thumb {
  background: rgba(246, 195, 91, 0.72);
  border-radius: 999px;
}

.performance-item {
  min-height: 84px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 16, 38, 0.5);
  color: #fff;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.performance-item:hover,
.performance-item.active {
  transform: translateX(4px);
  border-color: rgba(246, 195, 91, 0.72);
  background: rgba(246, 195, 91, 0.16);
}

.performance-item span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
}

.performance-item strong {
  font-size: 1.02rem;
}

.venue-copy p {
  color: #eef4ff;
  font-size: 1.05rem;
}

.rundown-item p {
  color: #eef4ff;
}

.rundown-content {
  text-align: center;
}

.rundown-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (14px * 3)) / 4);
  gap: 14px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8px 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 195, 91, 0.72) rgba(255, 255, 255, 0.08);
}

.rundown-item {
  min-height: 150px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 16, 38, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.rundown-item time {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

.venue-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.venue-copy {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.venue-copy p {
  margin: 16px 0 24px;
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 8, 20, 0.58);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.82) contrast(0.95);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 64px);
  color: #dbe5ff;
  background: rgba(2, 7, 19, 0.9);
}

.footer-brand p:first-child {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  background: rgba(246, 195, 91, 0.18);
}

/* =========================
   SCROLL EFFECT
========================= */
.scroll-fade {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease;
}

/* =========================
   ANIMATION
========================= */
@keyframes popupShow {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spotlightPulse {
  0% {
    opacity: 0.78;
    transform: scale(0.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spotlightSweep {
  0% {
    transform: translateX(-50%) rotate(-5deg) scale(0.98);
    opacity: 0.62;
  }
  50% {
    transform: translateX(-50%) rotate(0deg) scale(1.02);
    opacity: 0.82;
  }
  100% {
    transform: translateX(-50%) rotate(5deg) scale(0.99);
    opacity: 0.66;
  }
}

@keyframes footlightPulse {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(0.94);
  }
  100% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1.06);
  }
}

@keyframes sparkleFloat {
  0% {
    opacity: 0.26;
    transform: translateX(-50%) translateY(-8px);
  }
  100% {
    opacity: 0.58;
    transform: translateX(-50%) translateY(16px);
  }
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -8vh, 0) rotate(0deg) scale(0.92);
  }
  10% {
    opacity: 0.9;
  }
  25% {
    transform: translate3d(24px, 20vh, 0) rotate(82deg) scale(1);
  }
  50% {
    transform: translate3d(-16px, 48vh, 0) rotate(170deg) scale(0.96);
  }
  75% {
    transform: translate3d(22px, 76vh, 0) rotate(260deg) scale(0.92);
  }
  100% {
    opacity: 0;
    transform: translate3d(-10px, 112vh, 0) rotate(360deg) scale(0.86);
  }
}

@media (min-width: 769px) {
  #videoCaption,
  #heroIntro {
    width: min(920px, 88vw);
    padding: 32px 28px;
  }

  #videoCaption .eyebrow,
  #heroIntro .eyebrow {
    margin-bottom: 16px;
    letter-spacing: 4px;
  }

  #videoCaption .headline-title,
  #heroIntro .headline-title {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 3.2vw, 3.5rem);
    line-height: 1.06;
  }

  #videoCaption .headline-lead,
  #heroIntro .headline-lead {
    max-width: 700px;
    font-size: clamp(1.15rem, 1.45vw, 1.5rem);
    line-height: 1.65;
  }

  #videoCaption .caption-info p,
  #heroIntro .caption-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .story-text {
    width: min(760px, 84vw);
  }

  .story-text h2 {
    font-size: clamp(2.15rem, 3vw, 2.8rem);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .story-text p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.8;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-panel {
    min-height: 100svh;
    padding: 24px 16px;
    align-items: center;
    justify-content: center;
  }

  #videoCaption,
  #heroIntro {
    width: min(94vw, 680px);
    padding: 18px 14px;
  }

  #videoCaption .eyebrow,
  #heroIntro .eyebrow {
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  #videoCaption .headline-title,
  #heroIntro .headline-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  #videoCaption .headline-lead,
  #heroIntro .headline-lead {
    max-width: 92%;
  }

  #videoCaption .caption-info,
  #heroIntro .caption-info {
    margin-top: 20px;
  }

  #videoCaption .caption-info p,
  #heroIntro .caption-info p {
    margin-top: 2px;
  }

  #heroIntro {
    margin: 0 auto;
    transform: none;
  }

  .popup-box {
    padding: 28px 22px;
  }

  .story-box {
    padding: 28px 20px;
  }

  .story-box p {
    font-size: 0.98rem;
  }

  .intro-copy p {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .intro-copy .caption-info p {
    font-size: 1rem;
  }

  .top-bar {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 10px;
  }

  .brand,
  .music-toggle {
    font-size: 0.85rem;
  }

  .rundown-list,
  .performance-stage,
  .venue-content {
    grid-template-columns: 1fr;
  }

  .performance-list {
    max-height: calc((74px * 2) + 12px);
    padding-right: 4px;
  }

  .rundown-list {
    grid-auto-columns: calc((100% - 14px) / 2);
    padding: 0 2px 10px 0;
  }

  .performance-spotlight {
    min-height: 360px;
  }

  .performance-item {
    min-height: 74px;
  }

  .rundown-item {
    min-height: auto;
  }

  .venue-copy {
    text-align: center;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

}
