:root {
  --bg: #050214;
  --bg-2: #140022;
  --panel: rgba(18, 7, 45, 0.84);
  --panel-2: rgba(35, 9, 76, 0.9);
  --yellow: #ffd51e;
  --yellow-2: #ff9800;
  --pink: #ff27ba;
  --purple: #8c35ff;
  --purple-2: #b026ff;
  --cyan: #18d8ff;
  --text: #fff;
  --muted: #ddd6f8;
  --soft: #b7a8dd;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12% -5%, rgba(142, 53, 255, 0.35), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(255, 39, 186, 0.28), transparent 34rem),
    linear-gradient(180deg, #17042f 0%, #080115 48%, #050214 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .23;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--yellow); color: #17030c; padding: 10px 14px; border-radius: 10px; font-weight: 900; }
.skip-link:focus { left: 12px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 213, 30, .28);
  background: linear-gradient(90deg, rgba(31, 0, 78, .96), rgba(70, 10, 126, .96) 48%, rgba(22, 0, 46, .98));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .34);
}
.nav {
  max-width: 1420px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand { flex: 0 0 auto; }
.logo img,
.brand-logo,
.footer-logo {
  display: block;
  height: auto;
  max-width: 220px;
  max-height: 120px;
  object-fit: contain;
}
.brand-logo { width: 176px; max-width: 28vw; max-height: 58px; filter: drop-shadow(0 0 18px rgba(255, 213, 30, .2)); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.nav, .nav-links, .nav-item { overflow: visible; }
.nav-item { position: relative; }
.locations-menu { z-index: 110; }
.nav-links a {
  padding: 11px 8px;
  border-radius: 12px;
  color: #f4efff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a:focus-visible { background: rgba(255, 213, 30, .14); color: var(--yellow); }
.dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 120;
  min-width: 320px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 3, 30, .98);
  box-shadow: var(--shadow), 0 0 28px rgba(255, 39, 186, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.dropdown a {
  display: block;
  padding: 13px 14px;
  font-size: 13px;
  line-height: 1.25;
  text-transform: none;
  white-space: normal;
}
.locations-menu:hover .dropdown,
.locations-menu:focus-within .dropdown,
.dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.08); color: #fff; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; border-radius: 2px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 1000;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn.primary { color: #240018; background: linear-gradient(135deg, var(--yellow), #fff06a 45%, var(--yellow-2)); box-shadow: 0 0 30px rgba(255, 213, 30, .28); }
.btn.secondary { color: #fff; background: linear-gradient(135deg, var(--pink), var(--purple)); box-shadow: 0 0 28px rgba(255, 39, 186, .28); }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
main { position: relative; z-index: 1; }
.hero, .section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.hero { padding: 72px 0 48px; }
.hero-home, .hero-split, .split-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}
.safe-hero {
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  gap: 64px;
  overflow: visible;
}
.safe-hero .hero-copy {
  max-width: 720px;
  min-width: 0;
}
.safe-hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}
.safe-hero .hero-media {
  width: 100%;
  min-width: 0;
}
.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .92;
  font-weight: 1000;
  letter-spacing: 0;
}
.hero-kicker {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: clamp(28px, 3.5vw, 54px);
  line-height: .96;
  font-weight: 1000;
}
.hero p, .section-heading p, .home-party-copy p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.cta-row, .center-actions, .footer-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-media, .home-party-image, .split-section figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  box-shadow: var(--shadow), 0 0 42px rgba(255, 39, 186, .18);
  background: #120622;
}
.hero-media img, .home-party-image img, .split-section figure img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.section { padding: 64px 0; }
.section-heading { max-width: 780px; margin-bottom: 28px; }
.section-heading h2, .home-party-copy h2, .faq-cta h2, .inquiry-card h2, .legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 1000;
}
.location-grid, .compact-grid, .stat-grid, .ticket-grid, .media-grid {
  display: grid;
  gap: 22px;
}
.location-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ticket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.revenue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.glow-card, .price-card, .media-card, .info-strip article, .inquiry-card, .legal-section article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)), var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,.28), 0 0 28px rgba(142,53,255,.12);
}
.glow-card, .price-card, .info-strip article, .inquiry-card, .legal-section article { padding: 28px; }
.glow-card span, .price-card .plan-label, .media-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}
.glow-card h2, .glow-card h3, .price-card h2, .price-card h3, .media-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
}
.glow-card p, .price-card p, .media-card p, .info-strip p, .legal-section p { color: var(--muted); line-height: 1.58; }
.glow-card .btn { margin-top: 10px; }
.media-card { overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.media-card img {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 360px);
  object-fit: cover;
  object-position: center;
}
.media-card div { padding: 18px; }
.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.home-ticket-grid {
  align-items: stretch;
}
.featured-ticket {
  border-color: rgba(255, 213, 30, .46);
  background:
    linear-gradient(135deg, rgba(255, 213, 30, .18), rgba(255, 39, 186, .12)),
    var(--panel);
  box-shadow: var(--shadow), 0 0 38px rgba(255, 213, 30, .18);
}
.price {
  margin-bottom: 14px;
  color: var(--yellow) !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: .9 !important;
  font-weight: 1000;
  white-space: nowrap;
}
.detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.detail-list li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .055);
}
.home-party-section {
  padding: 84px 0 92px;
}
.home-party-top {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 42px;
}
.home-party-copy { max-width: 600px; }
.home-party-image img { min-height: 360px; max-height: 500px; }
.home-party-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
.home-party-cards .price-card { padding: 34px; min-height: 360px; }
.home-party-cards .price-card h3 { font-size: clamp(30px, 3vw, 44px); white-space: nowrap; }
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.home-cta-grid .franchise-band,
.home-cta-grid .faq-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.home-cta-grid .section-heading { margin-bottom: 20px; }
.party-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.party-package-card .old-price {
  margin-bottom: 4px;
  color: var(--soft);
  font-weight: 900;
  text-decoration: line-through;
}
.party-actions {
  display: grid;
  gap: 10px;
}
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}
.compare-table thead th,
.compare-table tbody th {
  color: #fff;
  font-weight: 1000;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.value-strip article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}
.value-strip h2 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 18px;
}
.value-strip p { margin: 0; color: var(--muted); line-height: 1.5; }
.summer-pass-feature { padding-top: 26px; padding-bottom: 42px; }
.summer-pass-panel {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(240px, .8fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 213, 30, .38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 213, 30, .22), rgba(255, 39, 186, .16) 48%, rgba(24, 216, 255, .12)),
    rgba(18, 7, 45, .92);
  box-shadow: var(--shadow), 0 0 44px rgba(255, 213, 30, .16);
}
.summer-pass-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
}
.summer-pass-panel p { color: var(--muted); line-height: 1.55; }
.summer-pass-price {
  margin: 0 0 12px;
  color: var(--yellow) !important;
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: .9 !important;
  font-weight: 1000;
}
.summer-pass-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.summer-pass-points li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
}
.summer-pass-actions { display: grid; gap: 12px; min-width: 190px; }
.membership-update { padding-bottom: 28px; }
.source-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)), var(--panel);
  box-shadow: var(--shadow);
}
.source-card.wide { max-width: 1060px; }
.source-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}
.source-card p { color: var(--muted); line-height: 1.65; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  counter-reset: step;
}
.step-grid article {
  position: relative;
  padding: 46px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.5;
  background: rgba(255, 255, 255, .06);
}
.step-grid article::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #240018;
  font-weight: 1000;
  background: var(--yellow);
}
.franchise-band, .faq-cta {
  padding: 52px;
  border: 1px solid rgba(255, 213, 30, .24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 213, 30, .14), rgba(255, 39, 186, .12)), rgba(17, 5, 43, .84);
  box-shadow: var(--shadow);
}
.faq-list details {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
}
.faq-list details p { padding: 0 24px 22px; color: var(--muted); line-height: 1.65; }
.faq-hero .hero-copy { max-width: 720px; }
.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 720px;
}
.faq-category-nav a,
.side-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  background: rgba(255, 255, 255, .075);
}
.faq-category-nav a:hover,
.side-nav a:hover,
.faq-category-nav a:focus-visible,
.side-nav a:focus-visible {
  border-color: rgba(255, 213, 30, .54);
  color: var(--yellow);
  background: rgba(255, 213, 30, .12);
}
.faq-page-section { padding-top: 30px; }
.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.side-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(14, 4, 35, .88);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
}
.side-nav a {
  justify-content: flex-start;
  border-radius: 14px;
  text-align: left;
}
.faq-content {
  display: grid;
  gap: 34px;
  min-width: 0;
  max-width: 830px;
}
.faq-group {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)), rgba(18, 7, 45, .86);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  scroll-margin-top: 110px;
}
.faq-group h2 {
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}
.faq-group details {
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.faq-group details:first-of-type { border-top: 0; }
.faq-group summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 18px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.25;
}
.faq-group summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #240018;
  background: var(--yellow);
}
.faq-group details[open] summary::after { content: "-"; }
.answer {
  padding: 0 46px 22px 0;
  color: var(--muted);
  line-height: 1.65;
}
.answer p:last-child { margin-bottom: 0; }
.hours-grid {
  display: grid;
  gap: 10px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
  min-width: 0;
}
.hour-row span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}
.hour-row span:first-child {
  color: #fff;
  font-weight: 1000;
}
.inquiry-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 26px; align-items: start; }
.inquiry-section iframe {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.static-form { display: grid; gap: 16px; margin-top: 24px; }
.static-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 800; }
.static-form input, .static-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
}
.legal-hero { padding-bottom: 20px; }
.legal-section { display: grid; gap: 18px; max-width: 960px; }
.footer {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding: 54px 24px 28px;
  border-top: 1px solid rgba(255, 213, 30, .22);
  background: linear-gradient(180deg, #110324, #070113);
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(160px, .7fr));
  gap: 30px;
}
.footer-brand img { width: 220px; height: auto; max-width: 100%; max-height: 120px; object-fit: contain; margin-bottom: 14px; }
.footer h2 { color: var(--yellow); font-size: 16px; text-transform: uppercase; }
.footer p, .footer li, .footer-bottom { color: var(--soft); line-height: 1.6; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a:hover { color: var(--yellow); }
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}
.footer-bottom span:last-child { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 1180px) {
  .nav { min-height: 74px; gap: 10px; }
  .brand-logo { width: 154px; max-width: 26vw; max-height: 48px; }
  .nav-links a { font-size: 10px; padding: 10px 6px; }
  .nav-actions .btn { min-height: 42px; padding: 0 14px; font-size: 12px; }
  .media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .summer-pass-panel { grid-template-columns: 1fr; }
  .summer-pass-actions { display: flex; flex-wrap: wrap; }
  .step-grid, .value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav { padding: 10px 14px; min-height: 74px; }
  .brand-logo { width: 136px; max-width: 30vw; max-height: 46px; }
  .menu-toggle { display: block; order: 3; }
  .nav-actions { margin-left: auto; gap: 8px; }
  .nav-actions .btn.secondary { display: none; }
  .nav-actions .btn { min-height: 40px; padding: 0 12px; font-size: 11px; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10, 3, 28, .98);
    box-shadow: var(--shadow);
  }
  body.menu-open .nav-links { display: grid; }
  .nav-links a { padding: 14px; font-size: 14px; }
  .nav-item { display: grid; gap: 4px; }
  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .dropdown a {
    padding: 10px 14px;
    color: var(--muted);
    font-size: 13px;
  }
  .hero-home, .hero-split, .split-section, .home-party-top, .inquiry-section, .safe-hero { grid-template-columns: 1fr; }
  .safe-hero { gap: 32px; }
  .safe-hero h1 { max-width: none; }
  .hero { padding-top: 42px; }
  .hero-copy { max-width: none; }
  .hero-media img, .home-party-image img, .split-section figure img { min-height: 280px; }
  .location-grid, .compact-grid, .stat-grid, .ticket-grid, .media-grid, .info-strip, .home-party-cards, .footer-grid, .faq-layout, .step-grid, .value-strip, .home-cta-grid, .party-package-grid, .revenue-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .home-party-section { padding: 52px 0 58px; }
  .home-party-top { gap: 24px; margin-bottom: 24px; }
  .home-party-cards .price-card { min-height: auto; padding: 28px; }
  .home-party-cards .price-card h3 { white-space: normal; }
  .franchise-band, .faq-cta { padding: 28px; }
  .summer-pass-panel, .source-card, .faq-group { padding: 24px; }
  .faq-page-section { padding-top: 18px; }
  .side-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .side-nav a { justify-content: center; text-align: center; }
  .faq-content { max-width: none; gap: 24px; }
  .answer { padding-right: 0; }
  .hour-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
  }
  .hour-row span {
    font-size: clamp(1rem, 5vw, 1.25rem);
    line-height: 1.2;
  }
  .footer-bottom { display: grid; }
}
@media (max-width: 520px) {
  .hero, .section { width: min(100% - 24px, var(--max)); }
  h1 { font-size: 42px; }
  .hero-kicker { font-size: 30px; }
  .hero p, .section-heading p, .home-party-copy p { font-size: 16px; }
  .cta-row .btn, .center-actions .btn, .price-card .btn, .glow-card .btn { width: 100%; }
  .brand-logo { width: 112px; max-width: 29vw; max-height: 42px; }
  .media-card img { height: 260px; }
  .nav-actions .btn { padding: 0 10px; font-size: 10px; }
  .faq-category-nav a, .side-nav a { flex: 1 1 calc(50% - 8px); }
  .faq-group summary { font-size: 16px; min-height: 58px; }
  .summer-pass-actions .btn { width: 100%; }
}
