/* ═══════════════════════════════════════════
   MARGOT SCHLÖNZKE — Berlin Cabaret Noir
   meets Neon Glamour
   Shared Styles for Multi-Page Site
   ═══════════════════════════════════════════ */

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

:root {
  --noir: #0a0a0b;
  --noir-warm: #110e14;
  --noir-lighter: #1a1620;
  --velvet: #1e1428;
  --neon-pink: #ff2d7b;
  --neon-pink-glow: #ff2d7b80;
  --electric-magenta: #e91e8c;
  --gold: #d4a853;
  --gold-bright: #f0c75e;
  --gold-dim: #a07830;
  --purple-deep: #6b21a8;
  --purple-glow: #9333ea;
  --lavender: #c4b5fd;
  --cream: #f5f0e8;
  --smoke: #a8a0b0;
  --font-display: 'Unbounded', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Instrument Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--noir);
}

body {
  background: var(--noir);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a { color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 3px; }

/* ─── Custom Cursor ─── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--neon-pink);
  border-width: 2px;
}

/* ─── Glitter Canvas ─── */
#glitter-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255, 45, 123, 0.15);
}

/* On subpages, nav starts with bg */
.page-sub .nav {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 123, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--smoke);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-pink);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-pink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 5px;
}

.nav-burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--neon-pink);
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════
   SECTION: HERO (Index)
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.45) saturate(1.1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107, 33, 168, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255, 45, 123, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0) 30%, rgba(10, 10, 11, 0) 60%, rgba(10, 10, 11, 0.85) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 2rem;
}

.hero-pre {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--cream) 0%, var(--neon-pink) 40%, var(--gold-bright) 70%, var(--cream) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease infinite, heroReveal 1.2s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  filter: drop-shadow(0 0 60px rgba(255, 45, 123, 0.3));
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  color: var(--smoke);
  margin-top: 1.5rem;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeInUp 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle span {
  color: var(--neon-pink);
}

.hero-cta-group {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-social {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--cream);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-social a:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 45, 123, 0.3);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--electric-magenta));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 45, 123, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--neon-pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--neon-pink);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-pink);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 45, 123, 0.25);
  color: white;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--gold-dim);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee-section {
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 45, 123, 0.2);
  border-bottom: 1px solid rgba(255, 45, 123, 0.2);
  background: var(--noir-warm);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 2rem;
  color: var(--smoke);
  opacity: 0.4;
}

.marquee-track span.accent {
  color: var(--neon-pink);
  opacity: 0.7;
}

.marquee-track span.gold {
  color: var(--gold);
  opacity: 0.6;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   PAGE HEADER (Subpages)
   ═══════════════════════════════════════════ */
.page-header {
  position: relative;
  padding: 10rem 3rem 5rem;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107, 33, 168, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255, 45, 123, 0.1) 0%, transparent 60%);
}

.page-header-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 1rem;
  position: relative;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--neon-pink) 50%, var(--gold-bright) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease infinite;
}

.page-header-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--smoke);
  margin-top: 1.5rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   COUNTDOWN
   ═══════════════════════════════════════════ */
.countdown-section {
  position: relative;
  padding: 8rem 3rem;
  overflow: hidden;
}

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255, 45, 123, 0.08) 0%, transparent 70%);
}

.countdown-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 1rem;
}

.countdown-event-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.countdown-event-title em {
  color: var(--gold);
}

.countdown-meta {
  font-size: 0.95rem;
  color: var(--smoke);
  margin-bottom: 3rem;
}

.countdown-meta strong {
  color: var(--cream);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.countdown-block {
  text-align: center;
  min-width: 100px;
}

.countdown-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--cream) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-unit {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.5rem;
}

.countdown-divider {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  color: var(--neon-pink);
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.countdown-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--purple-deep));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.countdown-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: ctaShine 3s ease infinite;
}

.countdown-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 45, 123, 0.4);
}

@keyframes ctaShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-section {
  padding: 10rem 3rem;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual:hover img {
  transform: scale(1.03);
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 11, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-visual-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(212, 168, 83, 0.3);
  z-index: 3;
  pointer-events: none;
  transition: inset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual:hover .about-visual-frame {
  inset: 0.75rem;
}

.about-text-col {
  position: relative;
}

.about-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 1.5rem;
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-headline em {
  font-style: italic;
  color: var(--gold);
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--smoke);
  margin-bottom: 2rem;
}

.about-body strong {
  color: var(--cream);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.about-stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--neon-pink);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--smoke);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   SHOWS
   ═══════════════════════════════════════════ */
.shows-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.shows-hero-img {
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  overflow: hidden;
}

.shows-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.shows-header {
  text-align: center;
  padding: 0 3rem;
  margin-bottom: 5rem;
}

.shows-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.show-card {
  position: relative;
  background: var(--noir-warm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.show-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.show-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 123, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.show-card:hover::before {
  transform: scaleX(1);
}

.show-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  height: 3rem;
}

.show-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.show-card .show-venue {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.show-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--smoke);
}

.show-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
}

.show-tag.free {
  border-color: var(--gold);
  color: var(--gold);
}

.show-detail-section {
  padding: 5rem 3rem;
  position: relative;
}

.show-detail-section:nth-child(even) {
  background: var(--noir-warm);
}

.show-detail-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.show-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.show-detail-grid h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.show-detail-grid h2 em {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.show-detail-venue {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.show-detail-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--smoke);
}

.show-detail-body strong {
  color: var(--cream);
}

.show-detail-meta {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.show-detail-meta h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 1rem;
}

.show-detail-meta ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.show-detail-meta li {
  font-size: 0.9rem;
  color: var(--smoke);
  padding-left: 1.2rem;
  position: relative;
}

.show-detail-meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.show-detail-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.show-detail-subtitle {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.65;
  margin-bottom: 0.4rem;
}

.show-detail-cta-hint {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 1rem 0 0.75rem;
}

/* ═══════════════════════════════════════════
   TERMINE (EVENTS)
   ═══════════════════════════════════════════ */
.termine-section {
  padding: 8rem 3rem;
  position: relative;
  background: var(--noir-warm);
}

.termine-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.termine-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.termine-header {
  text-align: center;
  margin-bottom: 4rem;
}

.termine-month-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.termine-month-label:first-of-type {
  margin-top: 0;
}

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

a.event-row:hover {
  padding-left: 1rem;
  border-bottom-color: var(--neon-pink);
}

a.event-row:hover .event-name {
  color: var(--neon-pink);
}

.event-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}

.event-date small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--smoke);
  margin-top: 0.2rem;
}

.event-info {
  min-width: 0;
}

.event-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-bottom: 0.2rem;
}

.event-venue {
  font-size: 0.8rem;
  color: var(--smoke);
}

.event-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 10rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, var(--neon-pink), var(--electric-magenta));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.event-ticket:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 45, 123, 0.3);
}

.event-ticket.free-tag {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.event-ticket.tour-tag {
  background: transparent;
  border: 1px solid var(--purple-glow);
  color: var(--lavender);
}

.event-ticket.website-tag {
  background: transparent;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
}

.event-ticket.coming-soon-tag {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--smoke);
}

/* ═══════════════════════════════════════════
   KIEZTOUR STICKY
   ═══════════════════════════════════════════ */
.kieztour-sticky {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: rgba(138, 43, 226, 0.12);
  border: 1px solid var(--purple-glow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  max-width: 1000px;
  width: calc(100% - 6rem);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.kieztour-sticky::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    -45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: kieztour-shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes kieztour-shine {
  0%, 80% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.kieztour-sticky:hover {
  background: rgba(138, 43, 226, 0.2);
}

.kieztour-sticky:hover .event-name {
  color: var(--lavender);
}

@media (max-width: 768px) {
  .kieztour-sticky {
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    bottom: 0.8rem;
    width: auto;
    left: 0.8rem;
    right: 0.8rem;
    transform: none;
    max-width: none;
  }

  .kieztour-sticky .event-date small,
  .kieztour-sticky .event-venue {
    display: none;
  }

  .kieztour-sticky .event-name {
    font-size: 0.8rem;
  }

  .kieztour-sticky .event-date {
    font-size: 0.7rem;
  }

  .kieztour-sticky .kieztour-full {
    display: none;
  }

  .kieztour-sticky .event-ticket {
    width: auto;
    padding: 0.4rem 0.8rem;
    font-size: 0.55rem;
  }
}

/* ═══════════════════════════════════════════
   ACTIVISM
   ═══════════════════════════════════════════ */
.activism-section {
  padding: 10rem 3rem;
  position: relative;
  overflow: hidden;
}

.activism-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(107, 33, 168, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(255, 45, 123, 0.1) 0%, transparent 50%);
}

.activism-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.activism-header {
  margin-bottom: 5rem;
}

.activism-header .section-title {
  margin-bottom: 1.5rem;
}

.activism-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--smoke);
  max-width: 700px;
  line-height: 1.6;
}

.activism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.activism-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: border-color 0.3s ease;
}

.activism-card:hover {
  border-color: rgba(255, 45, 123, 0.3);
}

.activism-card-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255, 45, 123, 0.12);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.activism-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.activism-card h3 em {
  color: var(--gold);
}

.activism-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--smoke);
}

.activism-card .stat-highlight {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--neon-pink);
  display: block;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   REFERENZEN
   ═══════════════════════════════════════════ */
.referenzen-category {
  padding: 5rem 3rem;
  position: relative;
}

.referenzen-category:nth-child(even) {
  background: var(--noir-warm);
}

.referenzen-category-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.referenzen-category h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.referenzen-category h2 em {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.referenz-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.referenz-card:hover {
  border-color: rgba(255, 45, 123, 0.3);
  transform: translateY(-4px);
}

.referenz-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.referenz-card p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.6;
}

.referenz-card .referenz-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.referenz-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .referenz-videos {
    grid-template-columns: 1fr;
  }
}

.referenz-video-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.venue-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.venue-list li {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-serif);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.venue-list li:hover {
  border-color: var(--neon-pink);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
}

.city-list li {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.city-list li:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   GALERIE
   ═══════════════════════════════════════════ */
.galerie-section {
  padding: 5rem 3rem;
  position: relative;
}

.galerie-section:nth-child(even) {
  background: var(--noir-warm);
}

.galerie-section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.galerie-section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.galerie-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--noir);
}

.galerie-scroll::-webkit-scrollbar { height: 4px; }
.galerie-scroll::-webkit-scrollbar-track { background: var(--noir); }
.galerie-scroll::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 2px; }

.galerie-item {
  flex: 0 0 auto;
  width: 350px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.galerie-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.galerie-item:hover img {
  transform: scale(1.05);
}

.galerie-item-caption {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--smoke);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.galerie-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.galerie-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.galerie-grid-item:hover img {
  transform: scale(1.05);
}

.galerie-grid-item .galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerie-grid-item:hover .galerie-overlay {
  opacity: 1;
}

.galerie-overlay span {
  font-size: 0.85rem;
  color: var(--cream);
}

.galerie-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir-warm);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  min-height: 200px;
  padding: 2rem;
  text-align: center;
}

.galerie-placeholder p {
  color: var(--smoke);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-section {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
}

.contact-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--cream), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--smoke);
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.contact-link {
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-4px);
}

.contact-link-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-link-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  display: block;
}

.contact-link-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  margin-top: 0.3rem;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--smoke);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 45, 123, 0.2);
}

.social-link-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link-label:hover {
  transform: translateY(-4px);
}

.social-link-label .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--smoke);
  transition: all 0.3s ease;
}

.social-link-label:hover .social-icon {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 8px 25px rgba(255, 45, 123, 0.2);
}

.social-link-label span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ═══════════════════════════════════════════
   RAINBOW DIVIDER
   ═══════════════════════════════════════════ */
.rainbow-divider {
  height: 4px;
  background: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   BIG QUOTE / INTERLUDE
   ═══════════════════════════════════════════ */
.interlude {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
}

.interlude-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  color: var(--cream);
}

.interlude-quote .pink { color: var(--neon-pink); }
.interlude-quote .gold { color: var(--gold); }

.interlude-attr {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ═══════════════════════════════════════════ */
.legal-content {
  padding: 3rem 3rem 8rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--smoke);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--neon-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--gold);
}

.legal-content ul {
  list-style: none;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--smoke);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 5rem 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--noir);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--smoke);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--smoke);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

.footer-nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-list a:hover {
  color: var(--neon-pink);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--smoke);
  opacity: 0.5;
}

.footer-bottom a {
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--neon-pink);
}

.copyright a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.made-by {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.made-by svg {
  fill: currentColor;
  opacity: 0.7;
  transition: opacity 0.3s ease, fill 0.3s ease;
}

.made-by:hover svg {
  opacity: 1;
  fill: var(--neon-pink);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .shows-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-height: 400px;
  }

  .activism-grid {
    grid-template-columns: 1fr;
  }

  .show-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

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

  .shows-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .countdown-section,
  .about-section,
  .activism-section,
  .contact-section,
  .termine-section {
    padding: 5rem 1.5rem;
  }

  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }

  .event-ticket {
    justify-self: start;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .countdown-timer {
    gap: 0.75rem;
  }

  .countdown-block {
    min-width: 70px;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .referenzen-grid {
    grid-template-columns: 1fr;
  }

  .galerie-item {
    width: 280px;
  }

  .referenzen-category,
  .galerie-section,
  .show-detail-section {
    padding: 3rem 1.5rem;
  }

  .legal-content {
    padding: 2rem 1.5rem 5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   SHOWS — ARCHIV-SEKTION
   ═══════════════════════════════════════════ */
.shows-archive-header {
  text-align: center;
  padding: 4rem 2rem 1rem;
}

.shows-archive-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.75rem;
}

.shows-archive-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--smoke);
  margin-bottom: 0.5rem;
}

.shows-archive-sub {
  color: var(--smoke);
  opacity: 0.6;
  font-style: italic;
}

.show-detail-section--archived {
  opacity: 0.65;
  filter: saturate(0.4);
  transition: opacity 0.3s, filter 0.3s;
}

.show-detail-section--archived:hover {
  opacity: 0.85;
  filter: saturate(0.7);
}

.show-archive-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  border: 1px solid var(--smoke);
  border-radius: 2px;
  padding: 0.2em 0.6em;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   PRESSEKIT — PASSWORTSCHUTZ
   ═══════════════════════════════════════════ */
.pk-lock-overlay {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.pk-lock-box {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.pk-lock-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pk-lock-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pk-lock-sub {
  color: var(--smoke);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.pk-input-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pk-input-row input[type="password"] {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.pk-input-row input[type="password"]:focus {
  border-color: var(--pink);
}

.pk-lock-error {
  color: var(--pink);
  font-size: 0.85rem;
  min-height: 1.2em;
  margin-top: -0.25rem;
}

.pk-content {
  display: none;
}

.pk-content.unlocked {
  display: block;
}

.pk-section {
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.pk-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pk-section h2 em {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.pk-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pk-download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  text-decoration: none;
  color: var(--smoke);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.pk-download-card:hover {
  border-color: var(--gold);
  background: rgba(212,168,83,0.05);
  color: var(--cream);
}

.pk-download-card i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.pk-download-card-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.pk-download-card:hover .pk-download-card-thumb {
  opacity: 1;
}

.pk-download-card-label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.pk-download-card-meta {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.15rem;
}

.pk-text-block {
  color: var(--smoke);
  line-height: 1.8;
  font-size: 1rem;
  white-space: pre-wrap;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pk-input-row {
    flex-direction: column;
  }

  .pk-section {
    padding: 3rem 1.5rem;
  }
}
