/* ============================================================
   SPIELFALTER – Modern Theater Design
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --black:       #09090b;
  --dark:        #111113;
  --surface:     #18181b;
  --surface-2:   #27272a;
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(255,255,255,0.18);

  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dim:    rgba(201,168,76,0.12);
  --crimson:     #8b1a1a;
  --crimson-light:#c0392b;

  --text:        #f4f4f5;
  --text-muted:  #a1a1aa;
  --text-faint:  #52525b;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-display:'DM Serif Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:       72px;
  --radius:      4px;
  --radius-lg:   12px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}

.section__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.section__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section__header {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__sub {
  margin-inline: auto;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.8em;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-muted);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7em 1.5em;
}
.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1em 2.4em;
  font-size: 1rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(9,9,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* Weißes Logo leuchtet auf dunklem Hintergrund gut –
     beim Scrollen bleibt die Navleiste dunkel, passt immer */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.4em 0.9em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav__ticket {
  margin-left: 0.5rem;
  padding: 0.4em 1.1em;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.nav__ticket:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  /* Starkes Abdunkeln unten für Lesbarkeit, oben etwas transparenter */
  background:
    linear-gradient(to bottom,
      rgba(9,9,11,0.55) 0%,
      rgba(9,9,11,0.45) 40%,
      rgba(9,9,11,0.80) 75%,
      rgba(9,9,11,1.00) 100%
    );
}

/* Spotlights */
.hero__spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__spotlight--1 {
  width: 700px;
  height: 700px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  animation: spotFloat1 10s ease-in-out infinite;
}

.hero__spotlight--2 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 10%;
  background: radial-gradient(circle, rgba(100,80,200,0.06) 0%, transparent 70%);
  animation: spotFloat2 14s ease-in-out infinite;
}

@keyframes spotFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(60px,40px) scale(1.1); }
}
@keyframes spotFloat2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-40px,60px); }
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero__logo {
  max-width: clamp(240px, 40vw, 480px);
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s var(--ease-out-expo) forwards;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s var(--ease-out-expo) forwards;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease-out-expo) forwards;
}

.hero__meta-item { text-align: center; }
.hero__meta-label { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.25rem; }
.hero__meta-value { font-size: 1rem; font-weight: 500; color: var(--text); }

.hero__meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border-hover);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.95s var(--ease-out-expo) forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   PRODUKTIONEN
══════════════════════════════════════════════════════════ */
.produktionen {
  background: var(--dark);
}

.produktionen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Single production block */
.produktion {
  margin-top: 1rem;
}

.produktion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.produktion__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4em 1em;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.produktion__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.produktion__genre {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.produktion__genre span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.produktion__genre .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.produktion__desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.produktion__team {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.produktion__team-item {
  display: flex;
  flex-direction: column;
}
.produktion__team-role  { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.produktion__team-name  { font-size: 1rem; font-weight: 500; }

/* Poster */
.produktion__poster {
  position: relative;
}

.produktion__poster-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
}

.produktion__poster-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.produktion__poster-img:hover img { transform: scale(1.04); }

.produktion__poster-deco {
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.produktion__poster-number {
  position: absolute;
  top: -24px;
  right: -24px;
  font-family: var(--font-serif);
  font-size: 10rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

/* Fotogalerie */
.galerie {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.galerie__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.galerie__credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.galerie__credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.galerie__credit a:hover {
  color: var(--text);
}

.galerie__refresh-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.galerie__refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.galerie__refresh-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s;
}

.galerie__refresh-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.galerie__refresh-btn:hover svg {
  transform: rotate(180deg);
}

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

.galerie__placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  border: 2px dashed var(--border-hover);
  border-radius: var(--radius-lg);
  color: var(--text-faint);
}

.galerie__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.galerie__placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.galerie__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}

.galerie__item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-expo);
}

.galerie__item:hover img {
  transform: scale(1.06);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 2rem;
  padding: 1rem;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
  color: var(--gold);
}

.lightbox__close {
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .galerie__grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
  }

  .lightbox__prev { left: 0; font-size: 2rem; padding: 0.5rem; }
  .lightbox__next { right: 0; font-size: 2rem; padding: 0.5rem; }
}

/* ══════════════════════════════════════════════════════════
   ENSEMBLE
══════════════════════════════════════════════════════════ */
.ensemble {
  background: var(--black);
}

.ensemble::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-hover), transparent);
}

.ensemble__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ensemble__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: ensembleFadeIn 0.5s ease forwards;
  animation-play-state: paused;
}

.ensemble__grid.in-view .ensemble__card {
  animation-play-state: running;
}

.ensemble__grid.in-view .ensemble__card:nth-child(1) { animation-delay: 0s; }
.ensemble__grid.in-view .ensemble__card:nth-child(2) { animation-delay: 0.06s; }
.ensemble__grid.in-view .ensemble__card:nth-child(3) { animation-delay: 0.12s; }
.ensemble__grid.in-view .ensemble__card:nth-child(4) { animation-delay: 0.18s; }
.ensemble__grid.in-view .ensemble__card:nth-child(5) { animation-delay: 0.24s; }
.ensemble__grid.in-view .ensemble__card:nth-child(6) { animation-delay: 0.3s; }
.ensemble__grid.in-view .ensemble__card:nth-child(7) { animation-delay: 0.36s; }
.ensemble__grid.in-view .ensemble__card:nth-child(8) { animation-delay: 0.42s; }
.ensemble__grid.in-view .ensemble__card:nth-child(9) { animation-delay: 0.48s; }

@keyframes ensembleFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.ensemble__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ensemble__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}

.ensemble__card:hover::before { opacity: 1; }

.ensemble__card-inner { position: relative; }

.ensemble__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.25s;
}

.ensemble__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-expo);
}

.ensemble__card:hover .ensemble__avatar {
  border-color: var(--gold);
}

.ensemble__card:hover .ensemble__avatar img {
  transform: scale(1.06);
}

/* Regie block */
.ensemble__regie {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.ensemble__regie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  text-align: center;
  position: relative;
}

.ensemble__regie-card::before {
  content: 'Regie';
  position: absolute;
  top: -0.6em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  padding: 0 0.75em;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.ensemble__regie-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.ensemble__regie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ensemble__role--regie {
  color: var(--gold) !important;
}

.ensemble__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ensemble__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════════════════════════ */
.ueber {
  background: var(--dark);
}

.ueber::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ueber__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ueber__visual {
  position: relative;
}

.ueber__bg-text {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  margin-bottom: -2rem;
}

.ueber__stat-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.ueber__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ueber__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.ueber__stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.ueber__desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.ueber__links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* ══════════════════════════════════════════════════════════
   MITMACHEN
══════════════════════════════════════════════════════════ */
.mitmachen {
  background: var(--black);
}

.mitmachen__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mitmachen__spotlight {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.mitmachen__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mitmachen__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.mitmachen__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--crimson-light));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}

.mitmachen__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.mitmachen__card:hover::after { transform: scaleX(1); }

.mitmachen__card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: border-color 0.25s, background 0.25s;
}
.mitmachen__card-icon svg { width: 26px; height: 26px; }
.mitmachen__card:hover .mitmachen__card-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.mitmachen__card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mitmachen__card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.mitmachen__cta {
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   INSTAGRAM
══════════════════════════════════════════════════════════ */
.instagram {
  padding-block: 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.instagram__handle {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.instagram__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}

.instagram__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.instagram__icon {
  width: 22px;
  height: 22px;
}

/* ══════════════════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════════════════ */
.kontakt {
  background: var(--dark);
}

.kontakt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.kontakt__desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: inherit;
  transition: color 0.2s;
}
a.kontakt__info-item:hover { color: var(--gold); }

.kontakt__info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.kontakt__info-icon svg { width: 18px; height: 18px; }

.kontakt__info-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.15rem;
}

.kontakt__info-value {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Form */
.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75em 1em;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form__input::placeholder { color: var(--text-faint); }
.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  cursor: pointer;
}

.form__select option { background: var(--dark); }

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: -0.5rem;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  margin-bottom: 0.75rem;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer__sub {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer__bottom a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }
.reveal--delay-7 { transition-delay: 0.7s; }
.reveal--delay-8 { transition-delay: 0.8s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .produktion__grid,
  .ueber__grid,
  .kontakt__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .produktion__visual { order: -1; max-width: 400px; margin-inline: auto; }
  .ueber__visual  { display: none; }
  .ensemble__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(9,9,11,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    font-size: 1rem;
    padding: 0.75em 1em;
    width: 100%;
  }

  .nav__ticket {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav__burger { display: flex; }

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

  .hero__title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero__cta   { flex-direction: column; }
  .hero__meta  { gap: 1rem; }

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

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

@media (max-width: 480px) {
  .ensemble__grid { grid-template-columns: 1fr; }
  .ueber__stat-block { flex-direction: column; gap: 1.5rem; }
}

/* ── Focus styles for a11y ───────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── Selection ───────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
