@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&display=swap");

/* =========================================
   VARIABLES & RESET
========================================= */
:root {
  --bg-dark: #eaf6ff;
  --bg-darker: #d6efff;
  --accent-yellow: #f6c90e;
  --accent-yellow-dark: #d4a900;
  --accent-blue: #2d6fb5;
  --accent-blue-dark: #1b4b8a;
  --navy: #0d1b2a;
  --text-main: #0d1b2a;
  --text-muted: #5a7a96;
  --surface: #ffffff;
  --surface-alt: #f0f8ff;
  --border-subtle: #c8e4f5;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 45px rgba(27, 75, 138, 0.14);
  --container-width: 1120px;
  --header-height: 72px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: var(--navy);
  background: var(--accent-yellow);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: var(--bg-darker);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
}

.container {
  width: min(100%, calc(var(--container-width) + 3rem));
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #f7fcff 0%, var(--bg-dark) 70%);
}

.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  margin: 0.25rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--accent-blue-dark);
}

.section-header--light h2 {
  color: #ffffff;
}

.section-subtitle {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.section-header.left .section-subtitle {
  margin-left: 0;
}

.section-header--light .section-subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.overline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.section-header--light .overline {
  color: var(--accent-yellow);
}

.small {
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn:focus-visible,
.nav-toggle:focus-visible,
.carousel-arrow:focus-visible,
.faq-question:focus-visible,
.lineup-card:focus-visible,
.artist-modal-close:focus-visible {
  outline: 3px solid rgba(246, 201, 14, 0.7);
  outline-offset: 3px;
}

.btn.primary {
  color: var(--navy);
  background: var(--accent-yellow);
  box-shadow: 0 4px 0 var(--accent-yellow-dark),
    0 12px 30px rgba(246, 201, 14, 0.28);
}

.btn.primary:hover {
  background: #ffda33;
  box-shadow: 0 6px 0 var(--accent-yellow-dark),
    0 16px 36px rgba(246, 201, 14, 0.35);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn.outline-dark {
  color: var(--accent-blue-dark);
  background: transparent;
  border-color: var(--accent-blue);
}

.btn.outline-dark:hover {
  color: #ffffff;
  background: var(--accent-blue-dark);
}

.btn.full {
  width: 100%;
}

/* =========================================
   HEADER / NAVBAR
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(
    to bottom,
    rgba(27, 75, 138, 0.98),
    rgba(27, 75, 138, 0.92)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.12);
  backdrop-filter: blur(16px);
}

.nav-container {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  width: 104px;
  height: 56px;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.brand-logo-img {
  display: block;
  width: 108%;
  height: auto;
  flex: 0 0 auto;
  max-width: none;
  transform: translate(-2.55%, -20%);
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--accent-yellow);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.btn.nav-buy {
  min-height: 40px;
  padding: 0.62rem 1.15rem;
  color: var(--navy);
  background: var(--accent-yellow);
  box-shadow: 0 3px 0 var(--accent-yellow-dark);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.25rem;
  cursor: pointer;
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  overflow: hidden;
}

.hero--kv {
  background-image: linear-gradient(
      160deg,
      rgba(91, 184, 232, 0.82) 0%,
      rgba(45, 111, 181, 0.78) 45%,
      rgba(27, 75, 138, 0.94) 100%
    ),
    url("../img/artwork/bg-water.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-burst-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-burst-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(27, 75, 138, 0.4),
      transparent 28%,
      transparent 72%,
      rgba(27, 75, 138, 0.4)
    ),
    linear-gradient(to top, rgba(13, 27, 42, 0.5), transparent 52%);
}

.hero-burst-video {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.hero-burst-video--one {
  object-position: 40% center;
}

.hero-burst-video--two {
  object-position: center;
}

.hero-burst-video--three {
  object-position: 60% center;
}

.hero-artwork {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-art {
  position: absolute;
  overflow: hidden;
  filter: drop-shadow(0 12px 20px rgba(13, 27, 42, 0.18));
}

.hero-art img {
  position: absolute;
  display: block;
  width: var(--art-image-width);
  max-width: none;
  height: auto;
  top: var(--art-image-top);
  left: var(--art-image-left);
}

.hero-art--duck {
  --art-image-width: 493.15%;
  --art-image-top: -475.63%;
  --art-image-left: -59.36%;

  top: 17%;
  left: 4%;
  width: clamp(72px, 8vw, 118px);
  aspect-ratio: 219 / 119;
  animation: hero-art-float 5.2s ease-in-out infinite;
}

.hero-art--lilypad {
  --art-image-width: 451.88%;
  --art-image-top: -376.87%;
  --art-image-left: -344.77%;

  bottom: 9%;
  left: 4%;
  width: clamp(105px, 12vw, 170px);
  aspect-ratio: 239 / 147;
  opacity: 0.82;
  animation: hero-art-float 6.4s ease-in-out -2.1s infinite;
}

.hero-art--lotus {
  --art-image-width: 646.71%;
  --art-image-top: -680.25%;
  --art-image-left: -498.2%;

  top: 15%;
  right: 5%;
  width: clamp(70px, 8vw, 112px);
  aspect-ratio: 167 / 157;
  animation: hero-art-float 5.8s ease-in-out -1.4s infinite;
}

.hero-art--grass {
  --art-image-width: 705.88%;
  --art-image-top: -412.1%;
  --art-image-left: 0%;

  bottom: -2px;
  left: -1px;
  width: clamp(86px, 10vw, 145px);
  aspect-ratio: 153 / 281;
  opacity: 0.72;
}

.hero-art--mascot {
  --art-image-width: 181.51%;
  --art-image-top: -105.34%;
  --art-image-left: -40.34%;

  right: -1.5%;
  bottom: -2%;
  width: clamp(190px, 23vw, 350px);
  aspect-ratio: 595 / 543;
  opacity: 0.78;
  animation: hero-art-float 6.8s ease-in-out -3.2s infinite;
}

@keyframes hero-art-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 18% 20%,
      rgba(246, 201, 14, 0.22),
      transparent 34%
    ),
    linear-gradient(to top, rgba(13, 27, 42, 0.36), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content--center {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  text-align: center;
}

.hero-main {
  width: min(100%, 1100px);
}

.hero-logo-frame {
  position: relative;

  width: clamp(760px, 72vw, 1080px);
  height: clamp(430px, 42vw, 620px);

  max-width: 96vw;
  margin: 0 auto 0.35rem;

  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: 0;
  left: 50%;

  display: block;
  width: 80%;
  max-width: none;
  height: auto;
  margin: 0;

  transform: translateX(-50%);

  object-fit: contain;
  object-position: center;

  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-art--duck {
    top: 12%;
    left: 3%;
    width: 68px;
  }

  .hero-art--lilypad {
    bottom: 8%;
    left: 2%;
    width: 92px;
    opacity: 0.58;
  }

  .hero-art--lotus {
    top: 13%;
    right: 3%;
    width: 64px;
  }

  .hero-art--grass {
    width: 72px;
    opacity: 0.5;
  }

  .hero-art--mascot {
    right: -8%;
    bottom: 1%;
    width: 180px;
    opacity: 0.5;
  }

  .hero-logo-frame {
    width: min(520px, 94vw);
    height: clamp(240px, 61vw, 340px);
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-logo-frame {
    width: 94vw;
    height: 58vw;
    max-height: 300px;
    margin-bottom: 0.7rem;
  }
}

/* =========================================
   HERO TEXT & CTA — FINAL ADJUSTMENT
========================================= */

.hero-tagline {
  margin: 0 0 0.35rem;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-date-venue {
  margin: 0.7rem 0 0;

  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 0.65rem;
  margin: 1rem 0 1.4rem;

  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 0.9rem;
  margin-top: 0;
}

.hero-cta--center {
  justify-content: center;
}

.hero-cta .btn {
  min-height: 48px;
  padding: 0.85rem 1.65rem;

  font-size: 0.92rem;
  font-weight: 800;
}

.hero-note {
  margin: 1.3rem 0 0;

  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 800;
  line-height: 1.5;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================================
   TICKER
========================================= */
.ticker-bar {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--accent-blue-dark);
  white-space: nowrap;
}

.ticker-inner {
  padding: 0.65rem 0;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-track span {
  padding-right: 4rem;
  color: var(--accent-yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   CAROUSEL SHARED
========================================= */
.lineup-carousel,
.tickets-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.carousel-arrow {
  display: inline-flex;
  width: 38px;
  height: 64px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease,
    background-color 160ms ease;
}

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

.lineup-track,
.tickets-track {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: 1.35rem;
  overflow-x: auto;
  padding: 0.6rem 0.35rem 1.4rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.lineup-track::-webkit-scrollbar,
.tickets-track::-webkit-scrollbar {
  display: none;
}

.lineup-track.is-dragging,
.tickets-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

/* =========================================
   LINEUP
========================================= */
.section-lineup {
  background: var(--bg-dark);
}

.lineup-card {
  position: relative;
  flex: 0 0 260px;
  aspect-ratio: 4 / 5.35;
  overflow: hidden;
  border-radius: 26px;
  background: var(--accent-blue-dark);
  box-shadow: 0 22px 52px rgba(27, 75, 138, 0.22);
  cursor: pointer;
  scroll-snap-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lineup-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(27, 75, 138, 0.3);
}

.lineup-card-img {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--accent-blue-dark));
}

.lineup-card-img span {
  color: rgba(255, 255, 255, 0.2);
  font-family: "Montserrat", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.lineup-card-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 500ms ease;
}

.lineup-card:hover .lineup-card-photo {
  transform: scale(1.035);
}

.lineup-card-photo--kick {
  object-position: center 58%;
}

.lineup-card-photo--brokenscene {
  object-position: center 52%;
}

.lineup-card-photo--rusa {
  object-position: center;
}

.lineup-card-img--kick {
  background: linear-gradient(145deg, #0d1b2a, #1b4b8a 60%, #f6c90e);
}

.lineup-card-img--patrivia {
  background: linear-gradient(145deg, #1b4b8a, #5bb8e8);
}

.lineup-card-img--mitchy {
  background: linear-gradient(145deg, #161616, #573a75);
}

.lineup-card-img--afterlife {
  background: linear-gradient(145deg, #0a1520, #3b7fbf);
}

.lineup-card-img--rusa {
  background: linear-gradient(145deg, #13395f, #2d6fb5 55%, #8bd3f7);
}

.lineup-card-img--brokenscene {
  background: linear-gradient(145deg, #0a1520, #1b4b8a 60%, #e73f3f);
}

.lineup-card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.5rem 1.15rem 1.15rem;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.96),
    rgba(13, 27, 42, 0.38),
    transparent
  );
}

.lineup-card-name {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lineup-card-role {
  margin: 0.35rem 0 0;
  color: var(--accent-yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lineup-arrow {
  color: var(--accent-blue-dark);
  background: rgba(27, 75, 138, 0.12);
}

.lineup-arrow:hover {
  background: rgba(27, 75, 138, 0.22);
}

/* =========================================
   TICKETS
========================================= */
.section-tickets {
  background: linear-gradient(160deg, var(--accent-blue-dark), var(--navy));
}

.tickets-track {
  justify-content: center;
  cursor: grab;
}

.ticket-card {
  flex: 0 0 min(380px, 82vw);
  max-width: 380px;
  scroll-snap-align: center;
}

.ticket-card-inner {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.ticket-type {
  color: var(--accent-yellow);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-tag {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket-tag--onsite {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

.ticket-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.ticket-price {
  margin: 0.2rem 0 1rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.ticket-benefits {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.ticket-benefits li + li {
  margin-top: 0.45rem;
}

.ticket-cta--disabled {
  opacity: 0.45;
  pointer-events: none;
}

.tickets-arrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.tickets-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =========================================
   INFO & CONTACT
========================================= */
.section-info,
.section-contact {
  background: #ffffff;
}

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.info-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #1a2d3e;
  font-size: 0.95rem;
}

.info-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent-yellow);
}

.info-list li + li {
  margin-top: 0.9rem;
}

.info-list strong {
  color: var(--accent-blue-dark);
}

.map-card,
.contact-card {
  padding: 1.8rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.map-title,
.card-overline {
  margin: 0 0 0.45rem;
  color: var(--accent-blue-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-embed {
  overflow: hidden;
  margin: 1.2rem 0 1.35rem;
  border-radius: 14px;
  background: var(--bg-dark);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--surface-alt);
}

.contact-icon-img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.contact-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.32rem;
  min-width: 0;
}

.contact-label {
  width: 100%;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-text a {
  overflow-wrap: anywhere;
  color: var(--accent-blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-separator {
  color: var(--text-muted);
}

.contact-card {
  color: #ffffff;
  background: var(--accent-blue-dark);
  border-color: transparent;
  box-shadow: 0 22px 60px rgba(27, 75, 138, 0.28);
}

.contact-card .card-overline,
.contact-card strong {
  color: var(--accent-yellow);
}

.contact-card .small {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================
   FAQ
========================================= */
.faq-list {
  display: grid;
  max-width: 800px;
  gap: 0.85rem;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(27, 75, 138, 0.06);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border: 0;
  color: var(--accent-blue-dark);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.faq-question:hover,
.faq-item.open .faq-question {
  background: var(--bg-dark);
}

.faq-toggle {
  flex: 0 0 auto;
  color: var(--accent-blue-dark);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-item.open .faq-answer {
  padding-bottom: 1.15rem;
}

/* =========================================
   PROMOTED
========================================= */
.promoted-section {
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--accent-blue-dark);
  text-align: center;
}

.promoted-inner {
  display: flex;
  justify-content: center;
}

.promoted-partners {
  display: grid;
  width: min(100%, 720px);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.2rem, 4vw, 3rem);
}

.promoted-partner {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.promoted-label {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promoted-logo-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  height: 110px;
  overflow: hidden;
}

.promoted-logo {
  position: absolute;
  left: 50%;
  width: auto;
  max-width: none;
  height: auto;
  opacity: 0.95;
  transform: translateX(-50%);
}

.promoted-logo--sipemburu {
  top: 20px;
  width: 260px;
}

.promoted-logo--kumpul {
  top: -33px;
  width: 140px;
}

.promoted-connector {
  margin-bottom: 38px;
  color: var(--accent-yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.promoted-brand {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .promoted-partners {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .promoted-connector {
    margin: 0;
  }
}


/* =========================================
   DOCUMENTATION VOL.1 — FULLSCREEN SLIDER
========================================= */
.documentation-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: #07111d;
}

.documentation-slider {
  position: relative;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  outline: none;
}

.documentation-slider:focus-visible {
  outline: 3px solid rgba(246, 201, 14, 0.75);
  outline-offset: -3px;
}

.documentation-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: calc(100svh - var(--header-height));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.035);
  transition:
    opacity 700ms ease,
    visibility 700ms ease,
    transform 1100ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.documentation-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.documentation-media {
  width: 100%;
  height: calc(100svh - var(--header-height));
  object-fit: cover;
  object-position: center;
  background: #07111d;
}

.documentation-video {
  object-fit: cover;
}

.documentation-video-placeholder {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at center, rgba(27, 75, 138, 0.42), transparent 55%),
    #07111d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.documentation-video-placeholder span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.documentation-slide.is-video-ready .documentation-video-placeholder {
  opacity: 0;
  visibility: hidden;
}

.documentation-video-controls {
  position: absolute;
  z-index: 12;
  bottom: 2rem;
  left: max(
    1.5rem,
    calc((100vw - var(--container-width)) / 2 + 1.5rem)
  );
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 14, 25, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.documentation-video-control {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}

.documentation-video-control:hover {
  color: var(--navy);
  background: var(--accent-yellow);
}

.documentation-video-control:focus-visible,
.documentation-volume:focus-visible,
.documentation-speed:focus-visible {
  outline: 3px solid rgba(246, 201, 14, 0.82);
  outline-offset: 2px;
}

.documentation-volume {
  width: 96px;
  accent-color: var(--accent-yellow);
  cursor: pointer;
}

.documentation-speed {
  height: 36px;
  padding: 0 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: #13263a;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.documentation-slide.is-active .documentation-video {
  animation: documentation-video-zoom 16s ease-in-out infinite alternate;
}

@keyframes documentation-video-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

.documentation-slide--media-only::after {
  content: none;
}

.documentation-slide--photo::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  background-image: url("../img/logo-berburu-gigs.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(72vw, 760px) auto;
  opacity: 0.14;
  pointer-events: none;
}

.documentation-slide--media-only {
  background: #07111d;
}

.documentation-slide--media-only .documentation-media {
  object-fit: cover;
  object-position: center;
}

.documentation-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 25, 0.9) 0%,
      rgba(5, 14, 25, 0.52) 40%,
      rgba(5, 14, 25, 0.08) 72%
    ),
    linear-gradient(
      to top,
      rgba(5, 14, 25, 0.9) 0%,
      transparent 52%
    );
}

.documentation-shade--video {
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 25, 0.78) 0%,
      rgba(5, 14, 25, 0.3) 44%,
      transparent 74%
    ),
    linear-gradient(
      to top,
      rgba(5, 14, 25, 0.68) 0%,
      transparent 48%
    );
}

.documentation-slide-inner {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  min-height: 100%;
  align-items: flex-end;
  padding-top: 5rem;
  padding-bottom: clamp(7rem, 12vh, 9rem);
}

.documentation-slide-inner--video {
  pointer-events: none;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 500ms ease;
}

.documentation-slide.is-copy-hidden .documentation-slide-inner--video {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.documentation-copy {
  width: min(100%, 680px);
  color: #ffffff;
  text-align: left;
}

.documentation-overline {
  margin: 0 0 0.7rem;
  color: var(--accent-yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.documentation-copy h2 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.documentation-copy > p:not(.documentation-overline) {
  max-width: 580px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.documentation-meta {
  display: inline-block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.documentation-button {
  margin-top: 1.6rem;
  color: var(--navy);
  background: var(--accent-yellow);
  box-shadow:
    0 4px 0 var(--accent-yellow-dark),
    0 14px 36px rgba(246, 201, 14, 0.24);
}

.documentation-button:hover {
  color: var(--navy);
  background: #ffda33;
}

/* Navigation */
.documentation-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  display: inline-flex;
  width: 52px;
  height: 74px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 14, 25, 0.42);
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.documentation-arrow:hover {
  border-color: var(--accent-yellow);
  background: rgba(27, 75, 138, 0.88);
}

.documentation-arrow:focus-visible,
.documentation-dot:focus-visible {
  outline: 3px solid rgba(246, 201, 14, 0.8);
  outline-offset: 3px;
}

.documentation-arrow--prev {
  left: 1.5rem;
}

.documentation-arrow--next {
  right: 1.5rem;
}

.documentation-navigation {
  position: absolute;
  z-index: 10;
  right: max(
    1.5rem,
    calc((100vw - var(--container-width)) / 2 + 1.5rem)
  );
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.documentation-counter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.documentation-counter-line {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.documentation-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.documentation-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    width 200ms ease,
    background-color 200ms ease;
}

.documentation-dot.is-active {
  width: 34px;
  background: var(--accent-yellow);
}

@media (max-width: 900px) {
  .documentation-shade {
    background:
      linear-gradient(
        to top,
        rgba(5, 14, 25, 0.95) 0%,
        rgba(5, 14, 25, 0.42) 58%,
        transparent 82%
      );
  }

  .documentation-slide-inner {
    padding-bottom: 7rem;
  }

  .documentation-copy {
    width: min(100%, 620px);
  }

  .documentation-arrow {
    width: 46px;
    height: 62px;
  }

  .documentation-arrow--prev {
    left: 0.8rem;
  }

  .documentation-arrow--next {
    right: 0.8rem;
  }
}

@media (max-width: 600px) {
  .documentation-hero,
  .documentation-slider,
  .documentation-slide {
    min-height: calc(100svh - var(--header-height));
  }

  .documentation-media {
    height: calc(100svh - var(--header-height));
  }

  .documentation-slide-inner {
    align-items: flex-end;
    padding-right: 1rem;
    padding-bottom: 7.5rem;
    padding-left: 1rem;
  }

  .documentation-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .documentation-copy > p:not(.documentation-overline) {
    max-width: 92%;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .documentation-overline {
    font-size: 0.66rem;
  }

  .documentation-meta {
    font-size: 0.64rem;
  }

  .documentation-arrow {
    top: auto;
    bottom: 1.25rem;
    width: 44px;
    height: 44px;
    transform: none;
    font-size: 1.7rem;
  }

  .documentation-arrow--prev {
    left: 1rem;
  }

  .documentation-arrow--next {
    right: 1rem;
  }

  .documentation-navigation {
    right: 50%;
    bottom: 1.55rem;
    transform: translateX(50%);
  }

  .documentation-video-controls {
    right: 1rem;
    bottom: 5.5rem;
    left: 1rem;
    justify-content: center;
  }

  .documentation-volume {
    width: min(28vw, 110px);
  }

  .documentation-counter {
    display: none;
  }

  .documentation-video {
    object-fit: contain;
    background: #000000;
  }
}

@media (prefers-reduced-motion: reduce) {
  .documentation-slide {
    transform: none;
    transition: opacity 150ms linear;
  }
}


/* =========================================
   ARTIST MODAL
========================================= */
.artist-modal {
  position: fixed;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  inset: 0;
  padding: 1.25rem;
}

.artist-modal.is-open {
  display: flex;
}

.artist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.86);
  backdrop-filter: blur(12px);
}

.artist-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  max-height: calc(100svh - 2.5rem);
}

.artist-modal-layout {
  display: grid;
  overflow: hidden;
  max-height: calc(100svh - 2.5rem);
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.42);
}

.artist-modal-layout.artist-modal-layout--text-only {
  grid-template-columns: 1fr;
}

.artist-modal-image {
  position: relative;
  min-height: 420px;
  background: linear-gradient(145deg, var(--navy), var(--accent-blue-dark));
}

.artist-modal-image.is-hidden {
  display: none;
}

.artist-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-modal-content {
  overflow-y: auto;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.artist-modal-overline {
  margin: 0 0 0.4rem;
  color: var(--accent-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-modal-name {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.artist-modal-body {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.artist-modal-close {
  position: absolute;
  z-index: 3;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(13, 27, 42, 0.76);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  padding: 3rem 0 2rem;
  color: #ffffff;
  background: #0a1520;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================
   FOOTER LOGO FIX
========================================= */
.footer-logo-frame {
  display: flex;
  width: 130px;
  height: 68px;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.footer-logo {
  display: block;
  width: 108%;
  height: auto;
  flex: 0 0 auto;
  max-width: none;
  transform: translate(-2.55%, -20%);
}

.footer-event-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-event-date,
.footer-event-venue {
  margin: 0;
}

.footer-event-date {
  color: var(--accent-yellow);
}

.footer-event-venue {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-divider {
  width: min(100% - 3rem, var(--container-width));
  margin: 2rem auto 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-follow {
  margin-right: 0.2rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-pill {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

.social-pill:hover {
  color: var(--navy);
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

.footer-bottom {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
  }

  .nav-container {
    min-height: var(--header-height);
  }

  .brand-logo {
    width: 92px;
    height: 50px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.5rem;
    left: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(27, 75, 138, 0.98);
    box-shadow: 0 22px 60px rgba(13, 27, 42, 0.3);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: rgba(255, 255, 255, 0.09);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 620px;
  }

  .carousel-arrow {
    display: none;
  }

  .lineup-track,
  .tickets-track {
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
    scroll-snap-type: x mandatory;
  }

  .tickets-track {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-content--center {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .hero-meta-row span[aria-hidden="true"] {
    display: none;
  }

  .lineup-card {
    flex-basis: min(78vw, 310px);
  }

  .artist-modal-layout {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .artist-modal-image {
    min-height: 260px;
    max-height: 36svh;
  }

  .artist-modal-content {
    overflow: visible;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 1rem;
  }

  .main-nav {
    right: 1rem;
    left: 1rem;
  }

  .btn.nav-buy {
    min-height: 36px;
    padding: 0.55rem 0.8rem;
    font-size: 0.65rem;
  }

  .nav-container {
    gap: 0.6rem;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .lineup-track,
  .tickets-track {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .ticket-card {
    flex-basis: 86vw;
  }

  .map-card,
  .contact-card {
    padding: 1.25rem;
  }

  .map-embed iframe {
    height: 230px;
  }

  .contact-text {
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-burst-background {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

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

@media (max-width: 768px) {
  .hero-tagline {
    font-size: clamp(1.25rem, 5.6vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: 0.055em;
  }

  .hero-date-venue {
    margin-top: 0.6rem;
    font-size: 0.92rem;
  }

  .hero-meta-row {
    gap: 0.3rem 0.55rem;
    margin: 0.85rem auto 1.2rem;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .hero-cta {
    gap: 0.7rem;
  }

  .hero-cta .btn {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
  }

  .hero-note {
    margin-top: 1.15rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 82px;
    height: 46px;
  }

  .footer-logo-frame {
    width: 112px;
    height: 60px;
  }
}
