:root {
  /* --- CI PALETTE --- */
  --color-brand-purple: #b381fd;
  --color-brand-yellow: #fbf958;
  --color-ink: #0e0e0e;
  --color-white: #ffffff;
  --color-neon-pink: #FF00CC;

  --font-display: 'Anton', sans-serif;
  --font-sales-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --border-width: 3px;
  --radius-lg: 16px;

  --container: 1200px;
  --nav-height: 72px;
}

/* --- GLOBAL --- */
body {
  margin: 0;
  background-color: var(--color-brand-purple);
  color: var(--color-ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  background-image:
    radial-gradient(rgba(0,0,0,0.15) 1px, transparent 1px),
    radial-gradient(circle at center, var(--color-brand-purple) 20%, #a070e8 100%);
  background-size: 30px 30px, 100% 100%;
  background-attachment: fixed;
  padding-bottom: 92px;
}

body::before {
  content: ""; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='roughPaper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='5' result='noise'/%3E%3CfeDiffuseLighting in='noise' lighting-color='white' surfaceScale='2'%3E%3CfeDistantLight azimuth='45' elevation='60'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23roughPaper)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; /* overlay behind UI */
  opacity: 0.12; mix-blend-mode: overlay;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 100px; }

/* --- TYPO --- */
h1, h2 { margin: 0; font-family: var(--font-display); text-transform: uppercase; line-height: 0.95; }

h3 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.display-text {
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  color: var(--color-white);
  -webkit-text-stroke: 1px var(--color-ink);
  text-shadow: 3px 3px 0 var(--color-ink);
  position: relative; z-index: 2;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center; margin-bottom: 3rem;
  color: var(--color-white);
  -webkit-text-stroke: 1px var(--color-ink);
  text-shadow: 2px 2px 0 var(--color-ink);
  letter-spacing: 1px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section-spacing { padding: 4rem 0; }
a { text-decoration: none; color: inherit; }

/* --- ACCESSIBILITY HELPERS --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 1px;
  color: var(--color-ink); background: var(--color-brand-yellow);
  border: var(--border-width) solid var(--color-ink); border-radius: 12px;
  position: relative; overflow: hidden; transition: transform 0.2s;
  box-shadow: 5px 5px 0 var(--color-ink); cursor: pointer;
  min-height: 50px; white-space: nowrap;
}
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0; }
.btn:hover { background: #fff; transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--color-ink); }

.btn-secondary { background: white; width: 100%; margin-top: 1rem; }
.hero-cta-btn { width: 100%; max-width: 300px; }

.hero-ticket-fastpass {
  display: grid;
  width: min(100%, 430px);
  gap: 0.55rem;
  align-items: start;
}

.hero-ticket-fastpass .hero-cta-btn {
  max-width: 430px;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.1rem 0 1.35rem;
  position: relative;
  z-index: 2;
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.72rem;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--color-ink);
}

.footer-whatsapp-follow {
  display: grid;
  gap: 0.42rem;
  justify-items: center;
  max-width: 430px;
  margin: 0 auto 1.45rem;
  text-align: center;
}

.footer-whatsapp-follow span {
  max-width: 34ch;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
  text-shadow: none;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow:
    3px 3px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.62);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 420ms var(--button-ease),
    box-shadow 420ms var(--button-ease),
    background-color 420ms var(--button-ease);
}

.footer-whatsapp-btn::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  margin-right: 0.48rem;
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  background: #25d366;
}

.footer-whatsapp-btn:hover {
  background: var(--color-brand-yellow);
  transform: translate(-1px, -2px);
  box-shadow:
    5px 5px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.footer-whatsapp-btn:active {
  transform: translate(1px, 1px) scale(0.985);
  box-shadow: 1px 1px 0 var(--color-ink);
}

.ticket-partner-label,
.ticket-fastpass-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  background: rgba(255,255,255,0.96);
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
  border-radius: 8px;
  padding: 0.38rem 0.58rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.18);
}

.ticket-fastpass-note {
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(251,249,88,0.96);
}

/* --- HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-height);
  padding: 0.24rem 0 0.34rem;
  display: flex;
  align-items: center;
  background: var(--color-brand-purple);
  backdrop-filter: none;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 1rem);
  max-width: none;
  min-height: 58px;
  padding: 0.28rem 0.44rem 0.28rem 0.5rem;
  background: #faf7f4;
  border: 2px solid var(--color-ink);
  border-radius: 13px;
  box-shadow:
    3px 3px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  color: var(--color-ink);
  text-decoration: none;
  min-width: 0;
}

.logo-mark {
  position: relative;
  width: 124px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
  transform: rotate(-1.2deg);
  overflow: visible;
}

.logo-ticket-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.56vw, 1.72rem);
  letter-spacing: 0.42px;
  line-height: 0.92;
  text-transform: uppercase;
  color: #181818;
  white-space: nowrap;
}

.logo-subline {
  margin-top: 0.12rem;
  font-size: clamp(0.58rem, 0.68vw, 0.7rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(14,14,14,0.66);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mic-icon-svg {
  width: 40px; height: auto;
  filter: drop-shadow(2px 2px 0 var(--color-ink));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

nav { display: flex; gap: 0.35rem; align-items: center; }
nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.74rem;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  position: relative;
  text-decoration: none;
  color: var(--color-ink);
  white-space: nowrap;
  transition: background-color 280ms var(--button-ease), transform 280ms var(--button-ease);
}
nav a:hover {
  background: rgba(179,129,253,0.18);
  transform: translateY(-1px);
}

.nav-ticket-link {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  box-shadow:
    2px 2px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition:
    transform 420ms var(--button-ease),
    box-shadow 420ms var(--button-ease),
    filter 420ms var(--button-ease);
}
.nav-ticket-link:hover {
  transform: translate(-1px, -2px);
  filter: saturate(1.04);
  box-shadow:
    5px 5px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.68);
}
.nav-ticket-link:active {
  transform: translate(1px, 1px) scale(0.985);
  box-shadow: 1px 1px 0 var(--color-ink);
}

.menu-toggle {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  background: #faf7f4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  cursor: pointer;
  color: var(--color-ink);
  transition:
    transform 420ms var(--button-ease),
    box-shadow 420ms var(--button-ease),
    background-color 420ms var(--button-ease);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 420ms var(--button-ease);
}
.menu-toggle:hover {
  background: var(--color-white);
  transform: translate(-1px, -2px);
  box-shadow: 2px 2px 0 var(--color-ink);
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
  min-height: 65vh; display: flex; align-items: center; position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 40%);
  padding-top: 2rem; padding-bottom: 2rem;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: center; }

.badge-rotate {
  display: inline-block; background: var(--color-brand-yellow); color: var(--color-ink);
  padding: 0.5rem 1rem; font-weight: 700; text-transform: uppercase;
  transform: rotate(-3deg); margin-bottom: 1.5rem; border-radius: 6px;
  border: 2px solid var(--color-ink); box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
  font-size: 0.9rem;
}

.hero-p {
  font-size: 1.1rem; margin: 1rem 0 1.5rem; line-height: 1.5; font-weight: 600;
  color: white; text-shadow: 2px 2px 0 var(--color-ink);
}

.hero-host-link {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-brand-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.16em;
  transition: color 220ms var(--button-ease), text-decoration-color 220ms var(--button-ease);
}

.hero-host-link:hover {
  color: var(--color-brand-yellow);
  text-decoration-color: var(--color-white);
}

.mobile-copy { display: none; }
.desktop-copy { display: inline; }

.hero-image-wrapper {
  position: relative; z-index: 1; transform: rotate(3deg); transition: 0.3s;
}
.hero-image-wrapper:hover { transform: rotate(0deg) scale(1.02); }
@keyframes heroWiggle {
  0% { transform: rotate(2deg) translateY(0); }
  25% { transform: rotate(-1.2deg) translateY(-2px); }
  50% { transform: rotate(1deg) translateY(0); }
  75% { transform: rotate(-0.8deg) translateY(-1px); }
  100% { transform: rotate(2deg) translateY(0); }
}
.hero-img {
  width: 100%; border: var(--border-width) solid var(--color-ink);
  border-radius: var(--radius-lg); box-shadow: 10px 10px 0 var(--color-ink);
  aspect-ratio: 4/5; object-fit: cover; background: white;
}

@media (min-width: 901px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2.4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: min(690px, calc(100svh - 130px));
    align-items: stretch;
    gap: 0;
  }

  .hero-image-wrapper,
  .hero-text {
    grid-area: 1 / 1;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
    z-index: 1;
    transition: transform 260ms ease, filter 260ms ease;
  }

  .hero-image-wrapper:hover {
    transform: none;
  }

  .hero-grid:hover .hero-image-wrapper,
  .hero-grid:focus-within .hero-image-wrapper {
    transform: translate(-3px, -4px);
    filter: saturate(1.03) brightness(1.02);
  }

  .hero-image-wrapper::after {
    content: "";
    position: absolute;
    inset: var(--border-width);
    border-radius: calc(var(--radius-lg) - 2px);
    background:
      linear-gradient(90deg, rgba(14,14,14,0.40) 0%, rgba(14,14,14,0.20) 36%, rgba(14,14,14,0.04) 70%),
      linear-gradient(0deg, rgba(14,14,14,0.24) 0%, rgba(14,14,14,0.05) 52%);
    pointer-events: none;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    min-height: min(690px, calc(100svh - 130px));
    aspect-ratio: 16 / 8.4;
    object-position: 52% 36%;
    transition: box-shadow 260ms ease;
  }

  .hero-grid:hover .hero-img,
  .hero-grid:focus-within .hero-img {
    box-shadow: 14px 14px 0 var(--color-ink);
  }

  .hero-text {
    align-self: end;
    justify-self: start;
    width: min(100%, 600px);
    padding: clamp(1.65rem, 4.2vw, 3.15rem);
    position: relative;
    z-index: 2;
    transition: transform 260ms ease;
  }

  .hero-grid:hover .hero-text,
  .hero-grid:focus-within .hero-text {
    transform: translate(-2px, -3px);
  }

  .hero-text .badge-rotate {
    margin-bottom: 1rem;
    padding: 0.42rem 0.78rem;
    font-size: 0.78rem;
    transform: rotate(-2deg);
  }

  .hero-text .display-text {
    max-width: 20ch;
    margin: 0;
    font-size: clamp(1.75rem, 3.25vw, 2.55rem);
    line-height: 0.94;
  }

  .hero-text .hero-p {
    max-width: 63ch;
    margin: 0.75rem 0 1rem;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .hero-text .hero-proof-strip {
    display: inline-flex;
    gap: 0.45rem;
    margin: 0 0.6rem 0 0;
    vertical-align: middle;
  }

  .hero-text .hero-proof-strip span {
    min-height: 34px;
    padding: 0.46rem 0.72rem;
    font-size: 0.72rem;
  }

  .hero-text .hero-ticket-fastpass {
    display: inline-grid;
    width: 220px;
    vertical-align: middle;
  }

  .hero-text .hero-cta-btn {
    max-width: 220px;
    min-height: 42px;
    padding: 0.66rem 1rem;
    font-size: 0.82rem;
  }
}

/* --- SOCIAL PROOF --- */
.reviews-section {
  background: #fff;
  border-top: 3px solid var(--color-ink);
  border-bottom: 3px solid var(--color-ink);
  padding: 2.6rem 0;
}
.reviews-headline {
  text-align: center;
  margin: 0 0 1.3rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.review-card {
  background: #fff;
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.14);
}
.review-stars {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.review-quote {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
}
.review-author {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  opacity: 0.75;
  font-weight: 700;
}

.press-feature {
  background: #fff;
  border-top: 3px solid var(--color-ink);
  border-bottom: 3px solid var(--color-ink);
  padding: 1rem 0;
}
.press-feature-card {
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.14);
  background: #f8f8f8;
  display: grid;
  gap: 0.35rem;
}
.press-kicker {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 0.82rem;
  color: #222;
}
.press-feature-card h3 {
  margin: 0;
  text-transform: none;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
}
.press-feature-card p {
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
  font-size: 0.92rem;
}

/* --- MARQUEE --- */
.marquee {
  background: var(--color-brand-yellow); color: var(--color-ink); padding: 0.8rem 0;
  overflow: hidden; white-space: nowrap; border-top: var(--border-width) solid var(--color-ink);
  border-bottom: var(--border-width) solid var(--color-ink);
  transform: rotate(-1deg); width: 100%; margin-left: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.marquee-inner { display: inline-block; animation: scroll 20s linear infinite; }

.marquee span {
  font-family: var(--font-body);
  font-size: 1.5rem;
  margin: 0 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-inner { animation: none !important; }
  .mobile-bottom-nav { animation: none !important; }
  .hero-image-wrapper:hover { transform: none; }
  .hero-image-wrapper { animation: none !important; }
  .btn-dot { animation: none !important; }
}

/* --- EVENT LIST --- */
.event-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.event-item {
  display: grid; grid-template-columns: 80px 1fr auto; align-items: center;
  background: white; border: var(--border-width) solid var(--color-ink);
  border-radius: 12px; padding: 1.2rem; gap: 15px; transition: 0.2s;
}
.event-item:hover { transform: translateY(-3px); box-shadow: 8px 8px 0 var(--color-ink); }

.ticket-summer-pause {
  grid-template-columns: 90px minmax(0, 1fr) auto;
  background: var(--color-brand-yellow);
}

.ticket-summer-pause:hover {
  transform: translateY(-2px);
}

.summer-pause-date {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.1rem;
  min-height: 70px;
  padding: 0.4rem;
  border: 2px solid var(--color-ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 0.95;
}

.tag-summer-pause {
  background: #fff;
  color: var(--color-ink);
}

.ticket-summer-pause .summer-pause-copy p {
  max-width: 72ch;
}

.summer-pause-cta {
  align-self: center;
  background: #fff;
  font-size: 1.02rem;
}

.date-box {
  background: var(--color-brand-yellow); border: 2px solid var(--color-ink);
  border-radius: 8px; padding: 5px; text-align: center;
}
.date-num { font-size: 1.6rem; font-family: var(--font-display); display: block; line-height: 1; }
.date-month { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.event-badge-slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.tag-scarcity {
  display: inline-flex;
  align-items: center;
  background: #ff3b30;
  color: #fff;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.tag-scarcity-warning {
  background: var(--color-brand-yellow);
  color: #000;
}

.update-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  margin: clamp(1.5rem, 4vw, 2.4rem) auto clamp(2rem, 5vw, 3rem);
  padding: clamp(1rem, 2.7vw, 1.35rem);
  border: 3px solid var(--color-ink);
  border-radius: 14px;
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  box-shadow: 6px 6px 0 var(--color-ink);
}

.update-strip-copy {
  display: grid;
  gap: 0.35rem;
}

.update-kicker {
  width: fit-content;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: #fff;
  padding: 0.22rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.update-strip h2 {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.update-strip p {
  margin: 0;
  max-width: 54ch;
  font-weight: 700;
  line-height: 1.35;
}

.update-strip-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.update-primary-cta {
  min-width: 240px;
}

.update-strip .update-primary-cta {
  background: #25d366;
  color: var(--color-ink);
}

.update-mail-link {
  color: var(--color-ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.newsletter-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.newsletter-divider {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.newsletter-divider::before,
.newsletter-divider::after {
  content: "";
  height: 3px;
  border-radius: 999px;
  background: var(--color-ink);
}

.newsletter-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.34rem 0.9rem;
  border: 3px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.newsletter-input {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  border: 3px solid var(--color-ink);
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 4px 4px 0 var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(14, 14, 14, 0.62);
}

.newsletter-input:focus {
  box-shadow: 6px 6px 0 var(--color-ink), 0 0 0 4px rgba(255, 255, 255, 0.52);
}

.newsletter-input[aria-invalid="true"] {
  border-color: #8f1515;
  box-shadow: 4px 4px 0 var(--color-ink), 0 0 0 4px rgba(143, 21, 21, 0.14);
}

.newsletter-submit {
  min-width: 172px;
  min-height: 54px;
  background: var(--color-white);
}

.newsletter-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.newsletter-status {
  grid-column: 1 / -1;
  min-height: 1.35em;
  font-size: 0.92rem;
  font-weight: 900;
}

.newsletter-status.is-error {
  color: #8f1515;
}

.newsletter-status.is-success {
  color: #075d2a;
}

.newsletter-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.tag-scarcity-soldout {
  background: #111;
  color: #fff;
}
.tag-scarcity-fast {
  background: #ff3b30;
  color: #fff;
}
.tag-scarcity-low {
  background: var(--color-brand-yellow);
  color: #000;
}
.tag-scarcity-popular {
  background: #d8e9ff;
  color: #061526;
}
.tag-early-bird {
  background: #24d365;
  color: #06150b;
  box-shadow: 2px 2px 0 var(--color-ink);
}
.tag-early-bird::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  margin-right: 0.42rem;
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  background: var(--color-brand-yellow);
}
.btn-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3b30;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(255,59,48,0.7);
  animation: pulse-dot 1.4s infinite;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,59,48,0.65); }
  70% { box-shadow: 0 0 0 10px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}

/* --- GALLERY --- */
.gallery-stack {
  position: relative; height: 860px; display: flex; justify-content: center; align-items: center;
}
.polaroid {
  position: absolute; width: 340px; padding: 16px;
  background: white; border-radius: 12px;
  box-shadow: 6px 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.25s ease, opacity 0.25s ease;
  will-change: transform, opacity; transform: translateZ(0); -webkit-transform: translateZ(0);
}
.polaroid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display:block; border-radius: 6px;
  filter: grayscale(0%); transition: transform 0.45s ease; display:block;
}
 /* Tidy stacked polaroids: lift on hover, scale inner image slightly and brighten. */
 .polaroid:hover { z-index: 40; box-shadow: 0 30px 50px rgba(0,0,0,0.18); transform: translateY(-8px); }
 .polaroid:hover img { transform: scale(1.04); }

 .polaroid .caption { text-align: center; font-family: 'Marker Felt', cursive; font-size: 1.05rem; margin-top: 0.6rem; color: var(--color-ink); }

/* Scrollable carousel mode: horizontal, snap, smooth (GLOBAL) */
.gallery-stack.scrollable {
  --overlap: 0px;
  --gap: 14px;
  height: auto; display: flex; align-items: center; justify-content: flex-start;
  gap: var(--gap); overflow-x: auto; padding: 1rem 0.75rem 1.5rem;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; touch-action: pan-x;
}
.gallery-stack.scrollable .polaroid {
  position: relative; width: clamp(300px, 34vw, 390px); flex: 0 0 auto;
  transform: translateY(var(--jitter, 0px)) rotate(var(--tilt, 0deg)) !important; z-index: 1; scroll-snap-align: center; scroll-snap-stop: always;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-stack.scrollable .polaroid + .polaroid { margin-left: 0; }
.gallery-stack.scrollable .polaroid.is-active { transform: translateY(var(--jitter, 0px)) rotate(var(--tilt, 0deg)) scale(1.03) !important; box-shadow: 8px 16px 30px rgba(0,0,0,0.22); z-index: 3; }
/* Subtle alternating tilt for polaroid feel */
/* Stronger, varied tilt + slight vertical jitter for "geordnetes Chaos" */
.gallery-stack.scrollable .polaroid:nth-child(9n+1) { --tilt: -3.5deg; --jitter: 1px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+2) { --tilt: -2.5deg; --jitter: -1px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+3) { --tilt: -1.5deg; --jitter: 0px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+4) { --tilt: -0.5deg; --jitter: 2px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+5) { --tilt: 0.5deg; --jitter: -2px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+6) { --tilt: 1.5deg; --jitter: 1px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+7) { --tilt: 2.5deg; --jitter: -1px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+8) { --tilt: 3.5deg; --jitter: 0px; }
.gallery-stack.scrollable .polaroid:nth-child(9n+9) { --tilt: 0deg; --jitter: 2px; }
.gallery-stack.scrollable .polaroid img { filter: grayscale(0%); }
.gallery-stack.scrollable::-webkit-scrollbar { height: 10px; }
.gallery-stack.scrollable::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.25); border-radius: 8px; }
@media (prefers-reduced-motion: reduce) { .gallery-stack.scrollable { scroll-behavior: auto; } }
@media (prefers-reduced-motion: reduce) { .gallery-stack.scrollable .polaroid.is-active { transform: none !important; } }
@media (max-width: 1200px) { .gallery-stack.scrollable { --gap: 12px; } }
@media (max-width: 900px)  { .gallery-stack.scrollable { --gap: 10px; } }
.gallery-controls { display:flex; justify-content:center; gap:12px; margin-top: 6px; }
.gallery-btn {
  background: var(--color-brand-yellow); color: var(--color-ink);
  border: 2px solid var(--color-ink); border-radius: 10px; height: 40px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
  box-shadow: 3px 3px 0 var(--color-ink); cursor: pointer; transition: transform 0.1s;
}
.gallery-btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--color-ink); }

.perf-defer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.location-story-section.perf-defer {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

/* Softer section heading variant for readability */
.section-title-readable {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.15;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

/* Default: wider fan so each photo is clearly readable */
.gallery-stack .polaroid:nth-child(1) { transform: translate(-560px, -30px) rotate(-7deg); z-index: 90; }
.gallery-stack .polaroid:nth-child(2) { transform: translate(-320px, 50px) rotate(-5deg); z-index: 100; }
.gallery-stack .polaroid:nth-child(3) { transform: translate(0px, 0px) rotate(0deg) scale(1.12); z-index: 140; }
.gallery-stack .polaroid:nth-child(4) { transform: translate(320px, 50px) rotate(5deg); z-index: 100; }
.gallery-stack .polaroid:nth-child(5) { transform: translate(560px, -30px) rotate(7deg); z-index: 90; }
/* Sixth item: lower center for clear visibility */
.gallery-stack .polaroid:nth-child(6) { transform: translate(0px, 220px) rotate(2deg) scale(1.04); z-index: 110; }

 /* On hover: spread out neatly so each image is visible */
@media (hover: hover) {
.gallery-stack:hover .polaroid:nth-child(1) { transform: translate(-580px, -40px) rotate(-8deg); z-index: 120; }
.gallery-stack:hover .polaroid:nth-child(2) { transform: translate(-360px, 10px) rotate(-6deg); z-index: 118; }
.gallery-stack:hover .polaroid:nth-child(3) { transform: translate(0px, 20px) rotate(0deg) scale(1.14); z-index: 145; }
.gallery-stack:hover .polaroid:nth-child(4) { transform: translate(360px, 10px) rotate(6deg); z-index: 118; }
.gallery-stack:hover .polaroid:nth-child(5) { transform: translate(580px, -40px) rotate(8deg); z-index: 120; }
.gallery-stack:hover .polaroid:nth-child(6) { transform: translate(0px, 240px) rotate(4deg) scale(1.06); z-index: 115; }
}

/* Desktop clamp: keep sixth on-screen for 1024–1200px widths */
@media (max-width: 1200px) {
  .gallery-stack .polaroid:nth-child(1) { transform: translate(-460px, -20px) rotate(-6deg); z-index: 90; }
  .gallery-stack .polaroid:nth-child(2) { transform: translate(-260px, 30px) rotate(-4deg); z-index: 100; }
  .gallery-stack .polaroid:nth-child(3) { transform: translate(0px, 0px) rotate(0deg) scale(1.12); z-index: 140; }
  .gallery-stack .polaroid:nth-child(4) { transform: translate(260px, 30px) rotate(4deg); z-index: 100; }
  .gallery-stack .polaroid:nth-child(5) { transform: translate(460px, -20px) rotate(6deg); z-index: 90; }
  .gallery-stack .polaroid:nth-child(6) { transform: translate(0px, 190px) rotate(2deg) scale(1.04); z-index: 110; }
 }

/* Featured override: ensure the highlighted photo is always visible */
.gallery-stack .polaroid.featured,
.gallery-stack .polaroid[data-name="Till Reiners"] { transform: translate(0px, 0px) rotate(0deg) scale(1.12); z-index: 150; }
@media (hover: hover) {
  .gallery-stack:hover .polaroid.featured,
  .gallery-stack:hover .polaroid[data-name="Till Reiners"] { transform: translate(0px, 20px) rotate(0deg) scale(1.15); z-index: 160; }
}

/* --- CHAT WIDGET --- */
.chat-fab {
  display: none;
  position: fixed; bottom: 100px; right: 20px; width: 55px; height: 55px;
  background: var(--color-brand-yellow); border: 3px solid var(--color-ink);
  border-radius: 50%; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 var(--color-ink); cursor: pointer; z-index: 90;
  transition: transform 0.2s;
}
.chat-fab:active { transform: scale(0.95); }

/* --- STICKY BOTTOM NAV --- */
.mobile-bottom-nav {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--color-ink);
  padding: 12px max(16px, calc((100vw - var(--container)) / 2 + 16px));
  gap: 12px;
  z-index: 2001; /* above header (100) and overlay (0) */
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.btn-sticky-main {
  flex-grow: 1;
  max-width: 600px; /* Damit es auf Desktop nicht riesig breit wird */
  background: var(--color-neon-pink);
  color: white;
  font-family: var(--font-body);
  font-size: 1.08rem;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: none;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  height: 54px;
  appearance: none;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid var(--color-ink);
  box-shadow: 3px 3px 0 var(--color-ink);
  transition: transform 0.1s;
  text-shadow: 1px 1px 0 var(--color-ink);
}
.btn-sticky-main:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--color-ink); }

.btn-sticky-map {
  width: 54px; height: 54px;
  background: var(--color-brand-yellow);
  border: 2px solid var(--color-ink);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--color-ink);
  text-decoration: none; color: var(--color-ink);
}
.btn-sticky-map svg {
  width: 22px;
  height: 22px;
  display: block;
}
.btn-sticky-map:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--color-ink); }

.btn-sticky-contact {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: #fff;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--color-ink);
  text-decoration: none;
}

.btn-sticky-contact svg {
  width: 19px;
  height: 19px;
  display: block;
}

.btn-sticky-contact:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--color-ink);
}

.ticket-page-body .ticket-month-nav {
  display: flex;
}

.ticket-month-pill,
.ticket-month-calendar,
.ticket-month-option {
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--color-ink);
}

.ticket-month-pill {
  flex: 1 1 auto;
  max-width: 620px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.ticket-month-desktop-label {
  display: none;
}

.ticket-month-pill::after {
  content: "⌄";
  font-size: 1.1em;
  line-height: 1;
}

.ticket-month-calendar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-yellow);
  border-radius: 50%;
  cursor: pointer;
}

.ticket-month-calendar svg {
  width: 21px;
  height: 21px;
}

.ticket-month-pill:active,
.ticket-month-calendar:active,
.ticket-month-option:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--color-ink);
}

.ticket-month-menu {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(100% + 10px);
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  background: #fff;
  border: 3px solid var(--color-ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--color-ink);
}

.ticket-month-menu strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}

.ticket-month-menu-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 1.25rem;
  padding: 0.05rem 0.38rem;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-brand-yellow);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.ticket-month-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticket-month-option {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.72rem;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.ticket-month-option.is-active {
  background: var(--color-brand-yellow);
}

/* --- LOCATION HERO + STORY SECTIONS --- */
.location-preview-hero {
  padding: 0.7rem 0 2rem;
}

.location-hero-frame {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: min(640px, calc(100svh - 116px));
  min-height: 520px;
  overflow: hidden;
  border: var(--border-width) solid var(--color-ink);
  border-radius: 18px;
  background: var(--color-ink);
  box-shadow: 10px 10px 0 rgba(14, 14, 14, 0.68);
}

.location-hero-panel {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.location-hero-panel img,
.location-hero-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.location-hero-panel img {
  object-fit: cover;
}

.location-hero-exterior {
  border-right: var(--border-width) solid var(--color-ink);
  overflow: visible;
  z-index: 2;
}

.location-hero-exterior img {
  object-position: 58% 50%;
  filter: saturate(1.07) brightness(1.14) contrast(1.03);
}

.location-hero-stage img {
  object-position: 50% 34%;
  filter: saturate(1.07) brightness(1.08) contrast(1.03);
}

.location-hero-exterior::after,
.location-hero-stage::after,
.location-hero-venue::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.location-hero-exterior::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.10) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.06) 62%);
}

.location-hero-stage::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.08) 54%);
}

.location-hero-venue {
  border-left: var(--border-width) solid var(--color-ink);
}

.location-hero-venue img {
  object-position: 54% 28%;
  transform: scale(1.07) translateY(2.5%);
  filter: saturate(1.07) brightness(1.07) contrast(1.03);
}

.location-hero-venue::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.02) 56%);
}

.location-hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 2.1vw, 1.65rem);
  bottom: clamp(1.15rem, 2.8vw, 2.1rem);
  width: min(620px, calc(100% + 15rem));
}

.location-hero-copy .badge-rotate {
  margin-bottom: 0.9rem;
  font-size: 0.74rem;
  padding: 0.42rem 0.76rem;
}

.location-hero-copy .display-text {
  max-width: 18.2ch;
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  line-height: 0.86;
}

.location-hero-copy .display-text span {
  display: block;
  white-space: nowrap;
}

.location-hero-copy p {
  max-width: 34ch;
  margin: 0.68rem 0 0.95rem;
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.18;
  text-shadow: 2px 2px 0 var(--color-ink);
}

.location-hero-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.location-hero-actions .btn {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 0;
  font-size: 0.9rem;
}

.location-hero-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.4rem 0.58rem;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 900;
  font-size: 0.68rem;
  text-shadow: 1px 1px 0 var(--color-ink);
}

.venue-note {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1.1rem;
  width: min(330px, calc(100% - 2.2rem));
  padding: 0.85rem 0.95rem;
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  background: rgba(251, 249, 88, 0.94);
  box-shadow: 4px 4px 0 var(--color-ink);
}

.venue-note strong,
.venue-note span {
  display: block;
}

.venue-note strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.venue-note span {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
}

.location-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.2rem;
  margin-top: 1.35rem;
  border: var(--border-width) solid var(--color-ink);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 8px 8px 0 rgba(14, 14, 14, 0.74);
  scroll-margin-top: 96px;
}

.location-story-show {
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  gap: 0.95rem;
  padding: 0.85rem;
}

.location-story-show .location-story-copy {
  padding: clamp(0.75rem, 1.35vw, 1.35rem);
}

.location-story-venue {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  padding: 0.95rem;
}

.location-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1.15rem, 2vw, 2rem);
}

.location-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.62rem;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-brand-yellow);
  box-shadow: 2px 2px 0 var(--color-ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-story-copy h2 {
  max-width: 10.5ch;
  color: var(--color-ink);
  font-size: clamp(2.4rem, 4.3vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.location-story-show .location-story-copy h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.05vw, 3.15rem);
}

.location-story-copy p {
  max-width: 48ch;
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.location-story-venue .location-story-copy {
  min-height: auto;
  padding: clamp(0.9rem, 1.6vw, 1.55rem);
}

.location-story-venue .location-story-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 2.9vw, 2.95rem);
}

.location-story-venue .location-story-copy p {
  max-width: 42ch;
  margin-top: 0.85rem;
  font-size: 0.96rem;
  line-height: 1.28;
}

.location-photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 0.75rem;
}

.location-story-venue .location-photo-grid {
  height: min(450px, 52vw);
  grid-template-rows: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.location-photo-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: var(--border-width) solid var(--color-ink);
  border-radius: 12px;
  background: var(--color-ink);
  box-shadow: 4px 4px 0 var(--color-ink);
}

.location-story-venue .location-photo-card {
  min-height: 0;
}

.location-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.location-photo-wide {
  grid-row: 1 / 3;
}

.location-photo-wide img {
  object-position: 50% 44%;
}

.location-photo-grid .location-photo-card:nth-child(2) img {
  object-position: 38% 62%;
  transform: scale(1.12);
  transform-origin: 38% 62%;
}

.location-photo-grid .location-photo-card:nth-child(3) img {
  object-position: 50% 48%;
}

.location-show-media {
  display: grid;
  grid-template-columns: 1.08fr 0.86fr;
  gap: 0.75rem;
}

.location-show-media-single {
  grid-template-columns: minmax(0, 1fr);
}

.location-show-media .location-photo-card {
  min-height: 400px;
}

.location-show-media.location-show-media-single .location-photo-card {
  min-height: 0;
  height: clamp(250px, 27vw, 340px);
}

.location-show-media .location-photo-card:first-child img {
  object-position: 38% 48%;
}

.location-show-media .location-photo-card:first-child .location-wide-room-photo {
  object-fit: cover;
  object-position: 50% 50%;
  background: #100d0c;
}

.location-show-media.location-show-media-single .location-photo-card:first-child .location-wide-room-photo {
  object-position: 50% 42%;
}

.location-show-media .location-photo-card:last-child img {
  object-position: 50% 52%;
}

.location-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.location-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.72rem;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-brand-yellow);
  box-shadow: 2px 2px 0 var(--color-ink);
  font-size: 0.82rem;
  font-weight: 900;
}

/* Show Tickets link on desktop via CSS class (replace invalid inline style) */
.show-on-desktop { display: none; }
@media (min-width: 900px) { .show-on-desktop { display: inline-flex; } }

/* Gentle bob animation for desktop so the bar "mitschwingt" */
@keyframes bob { from { transform: translateY(0); } to { transform: translateY(-6px); } }
@media (min-width: 900px) {
  .mobile-bottom-nav { animation: bob 3s ease-in-out infinite alternate; }

  .ticket-page-body .ticket-month-nav {
    background: rgba(255, 255, 255, 0.95);
  }

  .ticket-page-body .ticket-month-pill {
    max-width: 420px;
    min-height: 52px;
    background: var(--color-neon-pink);
    color: #fff;
    border-radius: 12px;
    font-size: 1.08rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 var(--color-ink);
  }

  .ticket-page-body .ticket-month-pill::after {
    display: none;
  }

  .ticket-page-body .ticket-month-mobile-label {
    display: none;
  }

  .ticket-page-body .ticket-month-desktop-label {
    display: inline;
  }
}


/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 900px) {
  body { background-attachment: scroll; }
  body::before { display: none; }

  /* Reduce side padding on mobile to avoid unnecessary gaps */
  .container { padding: 0 0.5rem; }
  /* Slightly tighter vertical rhythm on mobile */
  .section-spacing { padding: 3rem 0; }
  .section-title { margin-bottom: 2rem; }
  .btn-sticky-main { max-width: none; }

  /* Weniger visuelle Last direkt beim Öffnen */
  .hero { min-height: auto; padding-top: 1rem; padding-bottom: 1rem; }
  .badge-rotate { display: none; }
  .hero-p {
    font-size: .95rem;
    margin: .5rem auto .9rem;
    max-width: 34ch;
    line-height: 1.35;
  }
  .hero-ticket-fastpass {
    width: 100%;
    margin: 0 auto;
    justify-items: center;
  }
  .ticket-partner-label,
  .ticket-fastpass-note {
    justify-content: center;
    text-align: center;
  }
  .display-text { font-size: 1.7rem; line-height: 1.02; }
  .mobile-copy { display: inline; }
  .desktop-copy { display: none; }
  .hero-image-wrapper { width: 68%; max-width: 280px; }
  .hero-image-wrapper { animation: heroWiggle .9s ease-in-out .25s 1 both; }
  .chat-fab { display: none; }

  .mobile-bottom-nav { padding: 10px 12px; gap: 8px; }
  .btn-sticky-main { font-size: 1.05rem; height: 48px; }
  .btn-sticky-map { width: 48px; height: 48px; }
  .btn-sticky-map svg { width: 20px; height: 20px; }
  .btn-sticky-contact { width: 44px; height: 44px; flex-basis: 44px; }
  .btn-sticky-contact svg { width: 18px; height: 18px; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 1.15rem; padding-top: 0.35rem; }
  .hero-text { order: 2; }
  .hero-image-wrapper { order: 1; width: min(74vw, 270px); max-width: 270px; margin: 0 auto; transform: rotate(2deg); }
  .gallery-section.perf-defer {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .reviews-grid { grid-template-columns: 1fr; }
  .section-title-readable { font-size: clamp(1.45rem, 6vw, 1.95rem); line-height: 1.2; }
  /* Prevent marquee from causing horizontal overflow on mobile */
  .marquee { width: 100%; margin-left: 0; transform: none; }
  .marquee-inner { animation-duration: 24s; }
  .marquee span { margin: 0 1rem; }

  .event-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 10px; }
  .date-box { grid-column: 2; grid-row: 1; width: 70px; }
  .event-info { grid-column: 1; grid-row: 1; text-align: left; }
  .event-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
  .event-item .btn { grid-column: 1 / -1; grid-row: 2; width: 100%; margin-top: 5px; }

  .update-strip {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .update-strip h2 {
    max-width: 16ch;
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }

  .update-strip-actions {
    justify-content: stretch;
  }

  .update-primary-cta,
  .update-mail-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .newsletter-submit {
    width: 100%;
  }

  .site-nav,
  .nav-ticket-link {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-wrap {
    width: calc(100% - 0.75rem);
    min-height: 58px;
    padding: 0.3rem 0.46rem 0.3rem 0.42rem;
    border-radius: 13px;
  }
  .logo-container {
    gap: 0.5rem;
  }
  .logo-mark {
    width: 94px;
    height: 43px;
  }
  .logo-wordmark {
    font-size: clamp(0.96rem, 4.2vw, 1.15rem);
    letter-spacing: 0.45px;
  }
  .logo-subline {
    display: block;
    margin-top: 0.06rem;
    font-size: clamp(0.42rem, 1.8vw, 0.54rem);
    letter-spacing: 0.06em;
    color: rgba(14,14,14,0.66);
  }

  /* Mobile Polaroid Stack: smaller closed stack */
  .gallery-stack { height: 440px; padding: 1.4rem 0; overflow: hidden; }
  .gallery-stack .polaroid { position: absolute; width: 44vw; max-width: 210px; top: auto; left: auto; right: auto; box-shadow: 4px 8px 20px rgba(0,0,0,0.12); }
  .gallery-stack .polaroid img { filter: grayscale(0%); }
  .gallery-stack.touch-enabled { cursor: pointer; }
  .stack-hint { display: block; text-align: center; font-size: 0.9rem; color: var(--color-ink); opacity: 0.7; margin-top: 0.5rem; }

  /* Default compact spread: tighter horizontally */
  .gallery-stack .polaroid:nth-child(1) { transform: translate(-140px, -20px) rotate(-6deg); z-index: 10; }
  .gallery-stack .polaroid:nth-child(2) { transform: translate(-80px, -10px) rotate(-4deg); z-index: 20; }
  .gallery-stack .polaroid:nth-child(3) { transform: translate(0px, 0px) rotate(0deg) scale(1.04); z-index: 70; }
  .gallery-stack .polaroid:nth-child(4) { transform: translate(80px, -10px) rotate(4deg); z-index: 20; }
  .gallery-stack .polaroid:nth-child(5) { transform: translate(140px, -20px) rotate(6deg); z-index: 10; }
  .gallery-stack .polaroid:nth-child(6) { transform: translate(0px, 80px) rotate(2deg); z-index: 15; }
  /* Featured on mobile: keep centered and slightly larger */
  .gallery-stack .polaroid.featured,
  .gallery-stack .polaroid[data-name="Till Reiners"] { transform: translate(0px, 0px) rotate(0deg) scale(1.08); z-index: 140; }

  /* Tap-to-open grid: slightly larger thumbs */
  .gallery-stack.touch-open { height: 420px; padding: 1rem 0; display: flex; flex-wrap: wrap; justify-content: center; align-content: center; }
  .gallery-stack.touch-open .polaroid { position: relative; width: 30vw; max-width: 170px; margin: 6px; transform: none !important; z-index: auto; }
  .gallery-stack.touch-open .polaroid img { filter: grayscale(0%); }
  .gallery-stack.touch-open .polaroid .caption { font-size: 0.85rem; margin-top: 0.4rem; }

  .location-preview-hero {
    padding: 0.85rem 0.5rem 1.6rem;
  }

  .location-hero-frame {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    min-height: 0;
    border-radius: 14px;
    box-shadow: 6px 6px 0 var(--color-ink);
  }

  .location-hero-panel {
    min-height: 230px;
    border: 0;
  }

  .location-hero-exterior {
    grid-column: 1 / -1;
    min-height: 420px;
    overflow: hidden;
  }

  .location-hero-stage {
    min-height: 170px;
    border-top: var(--border-width) solid var(--color-ink);
    border-right: var(--border-width) solid var(--color-ink);
  }

  .location-hero-venue {
    min-height: 170px;
    border-top: var(--border-width) solid var(--color-ink);
    border-left: 0;
  }

  .location-hero-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .location-hero-copy .display-text {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.88;
  }

  .location-hero-copy .display-text span {
    white-space: normal;
  }

  .location-hero-copy p {
    max-width: 32ch;
    font-size: 0.92rem;
  }

  .location-hero-actions {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .location-hero-actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: 1.05rem;
  }

  .location-hero-actions span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .venue-note {
    display: none;
  }

  .location-story-section {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.85rem;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 5px 5px 0 var(--color-ink);
  }

  .location-story-show,
  .location-story-venue {
    grid-template-columns: 1fr;
  }

  .location-story-copy {
    padding: 0.85rem 0.2rem 0.2rem;
  }

  .location-story-show .location-story-copy {
    order: -1;
  }

  .location-story-copy h2,
  .location-story-show .location-story-copy h2,
  .location-story-venue .location-story-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 2.8rem);
    line-height: 0.92;
  }

  .location-story-copy p,
  .location-story-venue .location-story-copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.34;
  }

  .location-show-media,
  .location-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .location-show-media-single {
    grid-template-columns: 1fr;
  }

  .location-show-media .location-photo-card,
  .location-photo-card {
    min-height: 220px;
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--color-ink);
  }

  .location-show-media.location-show-media-single .location-photo-card {
    min-height: 0;
    height: clamp(220px, 38vw, 285px);
  }

  .location-story-venue .location-photo-grid {
    height: auto;
    grid-template-rows: auto;
  }

  .location-photo-wide {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .location-facts span {
    font-size: 0.76rem;
  }
}

@media (min-width: 521px) and (max-width: 900px) {
  .location-story-show {
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem;
  }

  .location-story-show .location-story-copy {
    order: 0;
    min-height: auto;
    padding: 0.35rem 0.15rem;
  }

  .location-story-show .location-story-copy h2 {
    max-width: 12.5ch;
    font-size: clamp(1.75rem, 4.8vw, 2.25rem);
    line-height: 0.9;
  }

  .location-story-show .location-story-copy p {
    max-width: 40ch;
    margin-top: 0.7rem;
    font-size: 0.88rem;
    line-height: 1.28;
  }

  .location-story-show .location-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.64rem;
  }

  .location-story-show .location-facts {
    margin-top: 0.8rem;
  }

  .location-story-show .location-facts span {
    padding: 0.32rem 0.56rem;
    font-size: 0.68rem;
  }

  .location-story-show .location-show-media-single .location-photo-card {
    height: clamp(210px, 34vw, 255px);
  }

  .site-nav,
  .nav-ticket-link {
    display: flex;
  }

  .nav-wrap {
    width: calc(100% - 0.9rem);
    min-height: 58px;
    padding: 0.28rem 0.48rem 0.28rem 0.52rem;
  }

  .logo-container {
    gap: 0.5rem;
  }

  .logo-subline {
    display: block;
    margin-top: 0.05rem;
    font-size: 0.62rem;
    color: var(--color-brand-purple);
    letter-spacing: 0.08em;
  }

  .logo-wordmark {
    font-size: clamp(1.18rem, 2.95vw, 1.36rem);
    letter-spacing: 0.32px;
  }

  .nav-actions {
    gap: 0.36rem;
  }

  nav {
    gap: 0.12rem;
  }

  nav a {
    min-height: 32px;
    padding: 0 0.34rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.2px;
  }

  .nav-ticket-link {
    min-height: 32px;
    padding: 0 0.68rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.66rem;
    letter-spacing: 0.02em;
    box-shadow: 2px 2px 0 var(--color-ink);
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .logo-mark {
    width: 112px;
    height: 48px;
  }
}

@media (min-width: 521px) and (max-width: 620px) {
  .nav-wrap {
    min-height: 52px;
    padding: 0.2rem 0.34rem 0.2rem 0.36rem;
  }

  .logo-container {
    gap: 0.28rem;
  }

  .logo-mark {
    width: 112px;
    height: 46px;
  }

  .logo-wordmark {
    font-size: 1.06rem;
    letter-spacing: 0.1px;
  }

  .logo-subline {
    margin-top: 0.02rem;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .nav-actions {
    gap: 0.2rem;
  }

  nav {
    gap: 0;
  }

  nav a {
    min-height: 28px;
    padding: 0 0.28rem;
    font-size: 0.56rem;
    letter-spacing: 0.12px;
  }

  .nav-ticket-link {
    min-height: 27px;
    padding: 0 0.56rem;
    font-size: 0.56rem;
    letter-spacing: 0.18px;
    box-shadow: 1.5px 1.5px 0 var(--color-ink);
  }

  .menu-toggle {
    width: 29px;
    height: 29px;
    gap: 4px;
  }

  .menu-toggle span {
    width: 15px;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 112px;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .site-nav,
  .nav-ticket-link {
    display: none;
  }

  .event-list {
    padding-bottom: 5.2rem;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed; inset: 0; background: var(--color-brand-purple); z-index: 98;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateY(-110vh); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-open {
  overflow: hidden;
}
.mobile-menu-open .mobile-bottom-nav {
  transform: translateY(120%);
  pointer-events: none;
}
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.5rem;
  color: white; -webkit-text-stroke: 1px black; text-shadow: 3px 3px 0 black;
}

.mobile-menu-close {
  background: white;
  margin-top: 20px;
}

.tickets-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 10px;
}

.tickets-title {
  margin: 0;
  text-align: left;
}

.live-status-badge {
  font-weight: 700;
  color: var(--color-brand-yellow);
  background: #000;
  padding: 5px 10px;
  border-radius: 4px;
}

.ticket-promise {
  display: grid;
  gap: 0.35rem;
  background: var(--color-brand-yellow);
  border: 3px solid var(--color-ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--color-ink);
  margin: 0 0 1.4rem;
  padding: 0.95rem 1.1rem;
  max-width: 760px;
}

.ticket-promise strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticket-promise span {
  font-weight: 700;
  line-height: 1.35;
}

.tickets-primary-cta {
  width: 100%;
  max-width: 760px;
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  min-height: 62px;
}

.universe-widget-shell {
  max-width: 980px;
  margin: 1.5rem 0 1.2rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.4fr);
  gap: 1rem;
  align-items: stretch;
  background: #fff;
  border: 3px solid var(--color-ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--color-ink);
  overflow: hidden;
}

.universe-widget-copy {
  background: var(--color-brand-yellow);
  border-right: 3px solid var(--color-ink);
  padding: 1.25rem;
}

.universe-widget-copy h2 {
  color: var(--color-ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin: 0.45rem 0 0.7rem;
}

.universe-widget-copy p {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.universe-widget-frame {
  min-height: 620px;
  padding: 1rem;
  background: #fff;
}

.universe-widget-frame iframe {
  width: 100% !important;
  min-height: 600px;
}

@media (max-width: 900px) {
  .universe-widget-shell {
    grid-template-columns: 1fr;
    margin: 1.2rem 0 1rem;
  }

  .universe-widget-copy {
    border-right: 0;
    border-bottom: 3px solid var(--color-ink);
  }

  .universe-widget-frame {
    min-height: 580px;
    padding: 0.75rem;
  }
}

.footer-contact-link {
  color: var(--color-brand-yellow);
  font-weight: 700;
}

.heading-ink {
  color: var(--color-ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.mb-sm { margin-bottom: 1.2rem; }
.mb-md { margin-bottom: 1.25rem; }

.gallery-section {
  background: white;
  padding: 3rem 0;
  border-top: 3px solid var(--color-ink);
}

.section-subtitle-ink {
  text-align: center;
  font-size: 1.05rem;
  margin-top: 0.12rem;
  color: var(--color-ink);
  opacity: 0.85;
}

.site-footer {
  background: var(--color-ink);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
  border-top: 3px solid white;
}

.footer-wad-signature {
  display: block;
  width: min(76vw, 330px);
  height: auto;
  margin: 0 auto 1.55rem;
  object-fit: contain;
}

.footer-meta {
  opacity: 0.5;
  margin-top: 30px;
  font-size: 0.8rem;
}

.footer-copy { margin-top: 20px; }

/* Universe checkout overlay */
body.universe-overlay-open {
  overflow: hidden;
}

.universe-checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: clamp(0.65rem, 2.2vw, 1.5rem);
  background: rgba(14,14,14,0.72);
  backdrop-filter: blur(8px);
}

.universe-checkout-panel {
  width: min(980px, 100%);
  height: min(780px, 90dvh);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--color-ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--color-ink);
}

.universe-checkout-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.7rem 0.5rem 1rem;
  border-bottom: 3px solid var(--color-ink);
  background: var(--color-brand-yellow);
}

.universe-checkout-topbar strong {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.universe-checkout-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 2px 2px 0 var(--color-ink);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.universe-checkout-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.universe-checkout-fallback {
  display: block;
  padding: 0.7rem 1rem;
  border-top: 2px solid rgba(14,14,14,0.14);
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  background: #fff;
}

.ticket-mobile-fallback {
  display: none;
}

.event-month-divider {
  scroll-margin-top: 96px;
  margin: 0.25rem 0 -0.2rem;
  color: var(--color-ink);
}

.event-month-divider span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.32rem 0.72rem;
  background: #fff;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--color-ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-load-more {
  display: flex;
  justify-content: center;
  padding: 0.35rem 0 0.9rem;
}

.ticket-load-more-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: min(100%, 340px);
  padding: 0.62rem 1.25rem;
  border: 3px solid var(--color-ink);
  border-radius: 999px;
  background: #fff;
  color: var(--color-ink);
  box-shadow: 4px 4px 0 var(--color-ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: none;
  transition:
    transform 520ms var(--button-ease),
    box-shadow 520ms var(--button-ease),
    background 520ms var(--button-ease);
}

.ticket-load-more-btn span {
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.ticket-load-more-btn:hover {
  background: var(--color-brand-yellow);
  transform: translate(-2px, -3px);
  box-shadow: 7px 7px 0 var(--color-ink);
}

.ticket-load-more-btn:active {
  transform: translate(2px, 2px) scale(0.985);
  box-shadow: 1px 1px 0 var(--color-ink);
}

/* Consent UI */
.hidden { display: none !important; }

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 2000;
}

.consent-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 16px;
  width: min(560px, calc(100vw - 32px));
  margin: 0;
  background: #fff;
  color: #111;
  border: 3px solid #111;
  border-radius: 12px;
  box-shadow: 6px 6px 0 #111;
  padding: 12px;
  transform: translateX(-50%);
  z-index: 2100;
}

.consent-banner h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.consent-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.28;
}

.consent-links {
  margin-top: 6px;
  font-size: .82rem;
}

.consent-links a {
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 9px;
}

.consent-btn {
  border: 2px solid #111;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.05;
  cursor: pointer;
}

.consent-btn-primary {
  background: #fbf958; /* dein Gelb */
}

.consent-btn-ghost {
  background: #f2f2f2;
}

.consent-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  background: #fff;
  color: #111;
  border: 3px solid #111;
  border-radius: 14px;
  box-shadow: 8px 8px 0 #111;
  padding: 16px;
  z-index: 2200;
}

.consent-modal h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.consent-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.consent-row p {
  margin: 4px 0 0;
  font-size: .93rem;
  color: #333;
}

.cookie-settings-btn {
  position: fixed;
  left: 16px;
  bottom: 98px;
  z-index: 1900;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

/* Simple Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  min-width: 50px;
  height: 28px;
}
.switch input { display: none; }
.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 999px;
  transition: .2s;
}
.slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.switch input:checked + .slider {
  background: #b381fd; /* dein Lila */
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}

@media (max-width: 900px){
  .cookie-settings-btn{
    display: none !important;
  }
}

/* Global carousel overrides to ensure ordered row on all widths */
.gallery-stack.scrollable {
  --gap: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap);
  overflow-x: auto;
  padding: 1rem 0.75rem 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.gallery-stack.scrollable .polaroid {
  position: relative;
  width: clamp(300px, 34vw, 390px);
  flex: 0 0 auto;
  transform: none !important;
  z-index: 1;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-stack.scrollable .polaroid + .polaroid { margin-left: 0; }

.gallery-stack.scrollable .polaroid.is-active {
  transform: scale(1.03) !important;
  box-shadow: 8px 16px 30px rgba(0,0,0,0.22);
  z-index: 3;
}

.gallery-stack.scrollable .polaroid img { filter: grayscale(0%); }

@media (max-width: 1200px) {
  .gallery-stack.scrollable { --gap: 12px; }
}

@media (max-width: 900px) {
  .gallery-stack.scrollable { --gap: 10px; }
}

/* --- Button polish: high-end haptics, original colors preserved --- */
:root {
  --button-ease: cubic-bezier(0.32, 0.72, 0, 1);
}

.btn,
.btn-sticky-main,
.btn-sticky-map,
.gallery-btn,
.consent-btn {
  transform: translateZ(0);
  transition:
    transform 520ms var(--button-ease),
    box-shadow 520ms var(--button-ease),
    filter 520ms var(--button-ease);
}

.btn,
.btn-sticky-main,
.btn-sticky-map,
.gallery-btn {
  box-shadow:
    4px 4px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -2px 0 rgba(0,0,0,0.10);
}

.btn {
  border-radius: 999px;
  gap: 0.65rem;
}

.btn:hover,
.gallery-btn:hover {
  transform: translate(-2px, -3px);
  filter: saturate(1.04);
  box-shadow:
    7px 7px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.62),
    inset 0 -2px 0 rgba(0,0,0,0.10);
}

.btn:active,
.btn-sticky-main:active,
.btn-sticky-map:active,
.gallery-btn:active,
.consent-btn:active {
  transform: translate(2px, 2px) scale(0.985);
  box-shadow:
    1px 1px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 0 rgba(0,0,0,0.12);
}

.btn-sticky-main {
  border-radius: 999px;
}

.btn-sticky-map,
.gallery-btn,
.consent-btn {
  border-radius: 999px;
}

.btn:focus-visible,
.nav-ticket-link:focus-visible,
.menu-toggle:focus-visible,
.btn-sticky-main:focus-visible,
.btn-sticky-map:focus-visible,
.ticket-load-more-btn:focus-visible,
.gallery-btn:focus-visible,
.footer-whatsapp-btn:focus-visible,
.hero-host-link:focus-visible,
.consent-btn:focus-visible,
.mobile-menu a:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 3px solid var(--color-brand-yellow);
  outline-offset: 3px;
}

/* --- Professionalized ticket checkout, WAD colors preserved --- */
.ticket-page-body .ticket-checkout-section {
  max-width: 1120px;
  padding-top: clamp(2.4rem, 6vw, 5.25rem);
}

.ticket-page-body .ticket-hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
  margin-bottom: 1rem;
}

.ticket-page-body .ticket-hero-copy,
.ticket-page-body .ticket-promise,
.ticket-page-body .universe-widget-shell {
  border: var(--border-width) solid var(--color-ink);
  border-radius: 18px;
  box-shadow:
    6px 6px 0 var(--color-ink),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.ticket-page-body .ticket-hero-copy {
  background: rgba(255,255,255,0.96);
  padding: clamp(1rem, 2.4vw, 1.45rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: clamp(1.2rem, 3vw, 2.3rem);
  align-items: stretch;
}

.ticket-hero-main {
  min-width: 0;
  align-self: center;
}

.ticket-hero-aside {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  min-width: 0;
  padding-left: clamp(1rem, 2.3vw, 1.45rem);
  border-left: 3px solid var(--color-ink);
}

.ticket-page-body .tickets-header-row {
  align-items: flex-start;
  margin-bottom: 0;
}

.ticket-page-body .tickets-title {
  max-width: 760px;
  font-family: var(--font-sales-display);
  font-weight: 900;
  color: var(--color-ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
  font-size: clamp(2.15rem, 5.4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.ticket-page-body .live-status-badge {
  flex: 0 0 auto;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  box-shadow: 3px 3px 0 var(--color-ink);
}

.ticket-page-body .lede {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.13rem);
  font-weight: 600;
  line-height: 1.48;
}

.ticket-hero-lede {
  max-width: 58ch;
  margin: 0.55rem 0 0;
  font-size: clamp(1rem, 2vw, 1.14rem);
  font-weight: 700;
  line-height: 1.45;
}

.ticket-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0;
}

.ticket-page-body .ticket-hero-aside .ticket-proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: 100%;
}

.ticket-page-body .ticket-hero-aside .ticket-proof-strip span {
  width: 100%;
  justify-content: center;
}

.ticket-proof-strip span,
.ticket-promise-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: #fff;
  color: var(--color-ink);
  padding: 0.34rem 0.72rem;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.18);
}

.ticket-page-body .ticket-promise {
  align-content: start;
  max-width: none;
  margin: 0;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: var(--color-brand-yellow);
  gap: 0.75rem;
}

.ticket-promise-kicker {
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.ticket-page-body .ticket-promise strong {
  max-width: 12ch;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  line-height: 0.95;
}

.ticket-page-body .ticket-promise span:not(.ticket-promise-kicker) {
  max-width: 32ch;
}

.ticket-page-body .ticket-page-event-list {
  margin: 0 0 0.8rem;
}

.ticket-page-body .event-item {
  border-radius: 16px;
  box-shadow:
    5px 5px 0 rgba(0,0,0,0.96),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.ticket-page-body .event-item .btn {
  min-width: 178px;
}

.ticket-page-body .tickets-primary-cta {
  width: 100%;
  max-width: none;
  margin: 0.35rem 0 0;
  min-height: 58px;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.ticket-page-body .universe-widget-shell {
  max-width: none;
  margin: 0 0 1.25rem;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1.48fr);
  gap: 0;
  background: #fff;
  overflow: hidden;
}

.ticket-page-body .universe-widget-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border-right: var(--border-width) solid var(--color-ink);
  padding: clamp(1.15rem, 2.8vw, 1.6rem);
}

.ticket-page-body .universe-widget-copy .tag-scarcity {
  width: fit-content;
}

.ticket-page-body .universe-widget-copy h2 {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  line-height: 0.94;
  text-wrap: balance;
}

.ticket-page-body .universe-widget-copy p {
  max-width: 31ch;
  line-height: 1.45;
}

.ticket-page-body .universe-widget-frame {
  position: relative;
  padding: clamp(0.8rem, 2vw, 1.1rem);
}

.ticket-page-body .universe-widget-frame::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 14px;
  border: 2px dashed rgba(14,14,14,0.12);
  pointer-events: none;
}

.ticket-page-body .ticket-widget-fallback {
  margin-top: 1.1rem;
}

.ticket-page-body .ticket-widget-fallback .universe-widget-frame {
  display: grid;
  align-content: center;
  min-height: 0;
}

.ticket-page-body .ticket-widget-fallback .universe-widget-frame::before {
  display: none;
}

.ticket-page-body .ticket-widget-fallback .btn {
  width: fit-content;
  min-height: 58px;
}

.ticket-fallback-details {
  margin: 0.9rem 0 0;
  color: var(--color-ink);
  font-weight: 700;
}

.ticket-fallback-details summary {
  width: fit-content;
  cursor: pointer;
  background: rgba(255,255,255,0.92);
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  box-shadow: 2px 2px 0 var(--color-ink);
}

.ticket-fallback-details a {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--color-ink);
  background: var(--color-brand-yellow);
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--color-ink);
}

@media (max-width: 900px) {
  .ticket-page-body .ticket-checkout-section {
    padding-top: 2.4rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .ticket-page-body .ticket-hero-card,
  .ticket-page-body .universe-widget-shell {
    grid-template-columns: 1fr;
  }

  .ticket-page-body .ticket-hero-copy,
  .ticket-page-body .ticket-promise,
  .ticket-page-body .universe-widget-shell {
    border-radius: 16px;
    box-shadow:
      4px 4px 0 var(--color-ink),
      inset 0 1px 0 rgba(255,255,255,0.55);
  }

  .ticket-page-body .ticket-hero-copy {
    display: block;
  }

  .ticket-hero-aside {
    display: block;
    margin-top: 0.7rem;
    padding-left: 0;
    border-left: 0;
  }

  .ticket-proof-desktop-only {
    display: none !important;
  }

  .ticket-page-body .ticket-hero-aside .ticket-proof-strip {
    display: flex;
    width: auto;
    margin-top: 0.7rem;
  }

  .ticket-page-body .ticket-hero-aside .ticket-proof-strip span {
    width: fit-content;
  }

  .ticket-page-body .tickets-header-row {
    display: grid;
    align-items: start;
    justify-content: start;
    gap: 0.7rem;
  }

  .ticket-page-body .tickets-title {
    max-width: 15ch;
    font-size: clamp(1.62rem, 6.65vw, 2.05rem);
    line-height: 1.2;
  }

  .ticket-page-body .live-status-badge {
    width: fit-content;
    justify-self: start;
  }

  .ticket-page-body .ticket-hero-lede {
    margin: 0.72rem 0 1.15rem;
    max-width: 33ch;
    font-size: clamp(1rem, 3.9vw, 1.08rem);
    line-height: 1.42;
  }

  .ticket-page-body .ticket-promise strong {
    max-width: none;
  }

  .ticket-page-body .event-item .btn,
  .ticket-page-body .ticket-widget-fallback .btn {
    width: 100%;
  }

  .event-item .ticket-mobile-fallback {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .event-item > .btn.js-ticket-checkout {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .ticket-mobile-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.62rem 0.85rem;
    color: var(--color-ink);
    background: var(--color-brand-yellow);
    border: 2px solid var(--color-ink);
    border-radius: 999px;
    box-shadow: 2px 2px 0 var(--color-ink);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }

  .ticket-page-body .universe-widget-copy {
    border-right: 0;
    border-bottom: var(--border-width) solid var(--color-ink);
  }

  .ticket-page-body .universe-widget-copy p {
    max-width: none;
  }

  .ticket-page-body .universe-widget-frame::before {
    inset: 0.65rem;
  }

}

/* --- Mobile final pass: compact, tappable, conversion-first --- */
@media (max-width: 520px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 76px;
  }

  .consent-banner {
    left: 50%;
    right: auto;
    bottom: calc(72px + env(safe-area-inset-bottom));
    width: min(420px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px 5px;
    padding: 6px;
    border-width: 2px;
    border-radius: 9px;
    box-shadow: 3px 3px 0 #111;
    transform: translateX(-50%);
  }

  .consent-banner h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 0.74rem;
    line-height: 1.05;
  }

  .consent-banner p {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    line-height: 1.18;
  }

  .consent-banner .consent-actions {
    display: contents;
  }

  .consent-banner .consent-btn {
    min-height: 25px;
    padding: 3px 4px;
    border-width: 2px;
    font-size: 0.58rem;
    line-height: 1.05;
    white-space: nowrap;
  }

  .consent-banner .consent-btn-ghost {
    grid-column: auto;
  }

  .consent-banner .consent-links {
    grid-column: 1 / -1;
    align-self: center;
    justify-self: end;
    margin: 0;
    font-size: 0.6rem;
    line-height: 1;
  }

  .perf-defer {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .section-spacing {
    padding: 2.25rem 0;
  }

  .hero {
    padding-top: 1.1rem;
    padding-bottom: 1.15rem;
  }

  .hero-grid {
    gap: 1rem;
    padding-top: 0.25rem;
  }

  .display-text {
    max-width: 21ch;
    margin: 0 auto;
    font-size: clamp(1.45rem, 7.15vw, 1.72rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .hero-p {
    max-width: 31ch;
    margin: 0.55rem auto 0.9rem;
    font-size: 0.94rem;
  }

  .hero-cta-btn {
    min-height: 58px;
    max-width: 360px;
    font-size: 1.45rem;
  }

  .hero-image-wrapper {
    width: min(74vw, 246px);
    max-width: 246px;
  }

  .hero-img {
    border-radius: 14px;
    box-shadow: 7px 7px 0 var(--color-ink);
  }

  .reviews-section {
    padding: 2.15rem 0 1.75rem;
  }

  .reviews-headline,
  .section-title-readable {
    font-size: clamp(1.38rem, 6vw, 1.72rem);
    line-height: 1.16;
    text-wrap: balance;
  }

  .reviews-grid {
    gap: 0.75rem;
  }

  .review-card {
    padding: 0.85rem;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.14);
  }

  .review-stars {
    margin-bottom: 0.35rem;
  }

  .review-quote {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  #tickets.container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    overflow: hidden;
  }

  .tickets-header-row {
    display: grid;
    justify-content: start;
    align-items: start;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
  }

  .tickets-title,
  .ticket-page-body .tickets-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 10.6vw, 2.35rem);
    line-height: 0.98;
    text-align: left;
    text-wrap: balance;
    text-shadow: 2px 2px 0 var(--color-ink);
  }

  .live-status-badge {
    width: fit-content;
    font-size: 0.78rem;
    padding: 0.28rem 0.48rem;
  }

  .event-list {
    gap: 0.85rem;
    margin-top: 1.05rem;
  }

  .event-item {
    grid-template-columns: minmax(0, 1fr) 62px;
    gap: 0.75rem;
    padding: 0.95rem;
    border-radius: 10px;
  }

  .date-box {
    width: 62px;
    align-self: start;
    padding: 0.34rem 0.25rem;
  }

  .date-num {
    font-size: 1.45rem;
  }

  .date-month {
    font-size: 0.72rem;
  }

  .tag-scarcity {
    padding: 0.12rem 0.45rem;
    font-size: 0.66rem;
  }

  .event-badge-slot {
    gap: 0.28rem;
    margin-bottom: 0.32rem;
  }

  .event-info h3 {
    font-size: 1rem;
    line-height: 1.08;
  }

  .event-info p {
    margin: 0.35rem 0 0;
    font-size: 0.93rem;
    line-height: 1.34;
  }

  .event-item .btn {
    min-height: 50px;
    padding: 0.78rem 1rem;
    font-size: 1.12rem;
  }

  .ticket-summer-pause {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .summer-pause-date {
    width: fit-content;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.28rem 0.55rem;
    font-size: 0.82rem;
  }

  .ticket-summer-pause .summer-pause-copy p {
    font-size: 0.9rem;
  }

  .summer-pause-cta {
    width: 100%;
    min-height: 42px;
    font-size: 0.96rem;
  }

  .marquee {
    display: none;
  }

  .gallery-section {
    padding: 2.2rem 0 2rem;
  }

  .gallery-section .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .section-subtitle-ink {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .stack-hint {
    display: none;
  }

  .gallery-stack.scrollable {
    --gap: 0.75rem;
    margin: 0 -0.45rem;
    padding: 0.65rem 0.45rem 1rem;
    scroll-padding-inline: 0.8rem;
  }

  .gallery-stack.scrollable .polaroid {
    width: min(72vw, 232px);
    padding: 0.75rem;
  }

  .gallery-stack.scrollable .polaroid .caption {
    font-size: 0.92rem;
    margin-top: 0.48rem;
  }

  .gallery-controls {
    margin-top: 0.15rem;
  }

  .gallery-btn {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .press-feature {
    padding: 1rem 0 1.35rem;
  }

  .press-feature .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .press-feature-card {
    gap: 0.45rem;
    padding: 0.9rem;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.14);
  }

  .press-feature-card h3 {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .press-feature-card p {
    font-size: 0.9rem;
  }

  .press-feature-card .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 0.25rem;
    font-size: 1.02rem;
  }

  .mobile-bottom-nav {
    min-height: 60px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    border-top-width: 2px;
  }

  .btn-sticky-main {
    height: 44px;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
  }

  .btn-sticky-map {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .btn-sticky-map svg {
    width: 18px;
    height: 18px;
  }

  .site-footer {
    margin-top: 0;
    padding: 3rem 0 6.8rem;
  }

  .universe-checkout-overlay {
    padding: 0;
    place-items: stretch;
  }

  .universe-checkout-panel {
    width: 100%;
    height: 100dvh;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .universe-checkout-topbar {
    min-height: 44px;
    padding: 0.28rem 0.5rem 0.28rem 0.72rem;
  }

  .universe-checkout-topbar strong {
    font-size: 0.95rem;
  }

  .universe-checkout-close {
    width: 32px;
    height: 32px;
  }

  .universe-checkout-fallback {
    margin: 0.45rem 0.55rem calc(0.45rem + env(safe-area-inset-bottom));
    padding: 0.72rem 0.85rem;
    border: 2px solid var(--color-ink);
    border-radius: 10px;
    background: var(--color-brand-yellow);
    box-shadow: 2px 2px 0 var(--color-ink);
    font-size: 0.9rem;
    line-height: 1.15;
    text-decoration: none;
  }

  .footer-whatsapp-follow {
    width: min(100%, 347px);
    margin-bottom: 1.2rem;
  }

  .footer-wad-signature {
    width: min(86vw, 286px);
    margin-bottom: 1.3rem;
  }

  .footer-whatsapp-follow span {
    max-width: 28ch;
    font-size: 0.92rem;
  }

  .footer-whatsapp-btn {
    min-height: 42px;
    padding: 0.58rem 0.95rem;
  }

  .ticket-page-body .ticket-checkout-section {
    padding-top: 1.8rem;
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .ticket-page-body .ticket-hero-copy {
    padding: 1.18rem 1.02rem 1.12rem;
  }

  .ticket-page-body .tickets-header-row {
    gap: 0.62rem;
    margin-bottom: 0;
  }

  .ticket-page-body .tickets-title {
    max-width: 15.5ch;
    font-size: clamp(1.5rem, 7.2vw, 1.78rem);
    line-height: 1.22;
    letter-spacing: 0;
  }

  .ticket-page-body .live-status-badge {
    padding: 0.34rem 0.58rem;
    font-size: 0.82rem;
    line-height: 1;
    box-shadow: 2px 2px 0 var(--color-ink);
  }

  .ticket-page-body .ticket-hero-lede {
    margin: 0.72rem 0 1.05rem;
    max-width: none;
    font-size: 1rem;
    line-height: 1.44;
  }

  .ticket-proof-strip {
    gap: 0.5rem;
  }

  .ticket-proof-strip span {
    min-height: 34px;
    padding: 0.4rem 0.68rem;
    font-size: 0.82rem;
  }

  .ticket-page-body .ticket-hero-copy,
  .ticket-page-body .ticket-promise,
  .ticket-page-body .universe-widget-shell {
    border-radius: 12px;
  }

  .ticket-page-body .universe-widget-frame {
    min-height: 72dvh;
    padding: 0.45rem;
  }

  .ticket-page-body .universe-widget-frame iframe {
    min-height: 72dvh;
  }
}

@media (max-width: 900px) {
  .ticket-page-body {
    padding-bottom: 96px;
  }

  .ticket-page-body .ticket-month-nav {
    display: flex;
    padding: 9px 12px;
    gap: 9px;
    background: rgba(255,255,255,0.96);
    animation: none;
  }

  .ticket-page-body .ticket-page-event-list {
    gap: 0.58rem;
    margin-top: 0.8rem;
    padding-bottom: 4.8rem;
  }

  .ticket-page-body .event-month-divider {
    margin: 0.1rem 0 -0.15rem;
  }

  .ticket-page-body .event-month-divider span {
    min-height: 27px;
    padding: 0.22rem 0.58rem;
    font-size: 0.7rem;
  }

  .ticket-page-body .ticket-load-more {
    padding: 0.15rem 0 0.7rem;
  }

  .ticket-page-body .ticket-load-more-btn {
    width: calc(100% - 0.2rem);
    min-height: 46px;
    padding: 0.52rem 0.9rem;
    border-width: 2px;
    box-shadow: 3px 3px 0 var(--color-ink);
    font-size: 0.98rem;
  }

  .ticket-page-body .ticket-load-more-btn span {
    font-size: 0.61rem;
  }

  .ticket-page-body .event-item {
    grid-template-columns: minmax(0, 1fr) 54px;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.42rem 0.55rem;
    padding: 0.62rem 0.7rem;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.96);
  }

  .ticket-page-body .event-item:hover {
    transform: none;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.96);
  }

  .ticket-page-body .date-box {
    grid-column: 2;
    grid-row: 1;
    width: 54px;
    padding: 0.26rem 0.2rem;
    border-radius: 7px;
  }

  .ticket-page-body .date-num {
    font-size: 1.15rem;
  }

  .ticket-page-body .date-month {
    font-size: 0.58rem;
  }

  .ticket-page-body .event-info {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .ticket-page-body .event-badge-slot {
    gap: 0.22rem;
    margin-bottom: 0.16rem;
  }

  .ticket-page-body .tag-scarcity {
    padding: 0.08rem 0.34rem;
    border-width: 1.5px;
    font-size: 0.56rem;
    letter-spacing: 0.15px;
  }

  .ticket-page-body .event-info h3 {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.04;
  }

  .ticket-page-body .event-info p {
    margin: 0.18rem 0 0;
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .ticket-page-body .event-item > .btn.js-ticket-checkout {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 38px;
    margin-top: 0.1rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.94rem;
    line-height: 1;
  }

  .ticket-page-body .event-item .ticket-mobile-fallback {
    display: none !important;
  }

  .ticket-page-body .ticket-summer-pause {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .ticket-page-body .ticket-summer-pause .summer-pause-date,
  .ticket-page-body .ticket-summer-pause .event-info,
  .ticket-page-body .ticket-summer-pause .summer-pause-cta {
    grid-column: 1;
    grid-row: auto;
  }

  .ticket-page-body .ticket-summer-pause .summer-pause-date {
    width: fit-content;
  }

  .ticket-page-body .ticket-summer-pause .summer-pause-cta {
    width: 100%;
    min-height: 38px;
    margin-top: 0.05rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .ticket-page-body {
    padding-bottom: 96px;
  }

  .ticket-page-body .ticket-checkout-section {
    padding-top: 0.9rem;
  }

  .ticket-page-body .ticket-hero-card {
    margin-bottom: 0.55rem;
  }

  .ticket-page-body .ticket-hero-copy {
    padding: 0.82rem 0.82rem 0.78rem;
  }

  .ticket-page-body .tickets-header-row {
    gap: 0.42rem;
  }

  .ticket-page-body .tickets-title {
    max-width: 100%;
    font-size: 1.22rem;
    line-height: 1.08;
    text-shadow: 1px 1px 0 var(--color-ink);
  }

  .ticket-page-body .live-status-badge {
    padding: 0.22rem 0.46rem;
    font-size: 0.68rem;
  }

  .ticket-page-body .ticket-hero-lede {
    display: none;
  }

  .ticket-page-body .ticket-proof-strip {
    margin-top: 0.55rem;
  }

  .ticket-page-body .ticket-proof-strip span {
    min-height: 28px;
    padding: 0.28rem 0.54rem;
    font-size: 0.72rem;
  }

  .ticket-month-pill {
    min-height: 44px;
    font-size: 0.94rem;
  }

  .ticket-month-calendar {
    width: 44px;
    height: 44px;
  }
}
