/* =====================================================================
   Jüttner Entertainment — Design System
   A warm, cinematic, festival-night aesthetic.
   ===================================================================== */

:root {
  /* Palette */
  --ink:        #0b0a10;
  --ink-2:      #100e17;
  --surface:    #16131f;
  --surface-2:  #1d1929;
  --line:       rgba(255, 255, 255, 0.10);
  --line-soft:  rgba(255, 255, 255, 0.06);

  --text:       #f4f0ea;
  --muted:      #b1aabd;
  --muted-2:    #847d92;

  --amber:      #ffb24c;
  --coral:      #ff6a4d;
  --magenta:    #c64bff;
  --violet:     #7b5cff;

  --grad:       linear-gradient(100deg, #ffb24c 0%, #ff6a4d 42%, #c64bff 100%);
  --grad-soft:  linear-gradient(100deg, rgba(255,178,76,.18), rgba(198,75,255,.18));

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow:     0 24px 60px -22px rgba(0,0,0,.7);
  --shadow-glow: 0 30px 80px -28px rgba(198,75,255,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Background ambience */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 60vw at 8% -8%, rgba(255,106,77,.16), transparent 60%),
    radial-gradient(55vw 55vw at 100% 0%, rgba(198,75,255,.15), transparent 58%),
    radial-gradient(70vw 50vw at 50% 120%, rgba(123,92,255,.12), transparent 60%),
    var(--ink);
}
/* Subtle grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: rgba(255,106,77,.35); color: #fff; }

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 200;
  background: var(--text); color: var(--ink);
  padding: .6rem 1rem; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(255,106,77,.8);
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Legibility floor for gradient text over the bright hero photo */
.hero-title .grad { filter: drop-shadow(0 1px 10px rgba(0, 0, 0, .55)); }
/* Solid-colour fallback where background-clip:text is unsupported */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .grad { color: var(--amber); -webkit-text-fill-color: currentColor; background: none; }
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }

.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: .7rem 0 1rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; max-width: 60ch; }
.lead { color: var(--muted); font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  --b: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  border: 1px solid var(--b);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .25s;
  will-change: transform;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.04rem; }
.btn-primary {
  color: #1a0f06;
  background: var(--grad);
  background-size: 160% 160%;
  box-shadow: 0 14px 34px -12px rgba(255,106,77,.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -14px rgba(198,75,255,.65); background-position: 100% 0; }
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.04);
  --b: var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); --b: rgba(255,255,255,.22); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s, box-shadow .4s, padding .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,16,.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 40px -24px rgba(0,0,0,.9);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1.05rem;
  transition: padding-block .35s var(--ease);
}
.site-header.scrolled .header-inner { padding-block: .7rem; }

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 34px; width: auto; display: block;
  transition: height .35s var(--ease);
}
.site-header.scrolled .brand-logo { height: 30px; }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: .35rem; list-style: none; }
.nav-list a {
  position: relative; display: block; padding: .55rem .72rem; border-radius: 999px;
  font-size: .92rem; color: var(--muted); font-weight: 500; white-space: nowrap;
  transition: color .25s, background .25s;
}
.nav-list a:hover { color: var(--text); }
.nav-list a.active { color: var(--text); background: rgba(255,255,255,.06); }
.nav-list a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 16px; height: 2px; border-radius: 2px; background: var(--grad);
}
.header-cta { padding: .62rem 1.2rem; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 12px; }
.burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,7,12,.96);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: 6rem var(--pad) 3rem;
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--text); }
.mobile-menu nav a.btn { font-size: 1.05rem; align-self: flex-start; color: #1a0f06; margin-top: .5rem; }
.mobile-menu-foot { display: flex; flex-direction: column; gap: .35rem; margin-top: auto; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.4rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem; padding-bottom: 4rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  animation: heroZoom 22s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 18% 50%, rgba(11,10,16,.92), rgba(11,10,16,.55) 45%, rgba(11,10,16,.78) 100%),
    linear-gradient(to top, var(--ink) 2%, transparent 38%),
    linear-gradient(to bottom, rgba(11,10,16,.55), transparent 30%);
}
/* cursor spotlight */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(280px 280px at var(--mx, -100px) var(--my, -100px), rgba(255,178,76,.14), transparent 70%);
  transition: opacity .4s; opacity: 0;
}
.hero.spotlight-on::after { opacity: 1; }

.hero-content { position: relative; z-index: 1; max-width: 880px; }
.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  letter-spacing: -.03em; margin: 1.1rem 0 1.4rem;
}
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d9d3e0; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem);
  list-style: none; margin-top: 2.8rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1; }
.hero-stats span { color: var(--muted); font-size: .95rem; margin-top: .35rem; }

.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--text); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(13px); opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line-soft); background: rgba(255,255,255,.02); overflow: hidden; padding-block: 1.1rem; }
.marquee-track { display: flex; align-items: center; gap: 1.4rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.marquee-track .sep { color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.intro-text h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: .8rem 0 1.3rem; }
.intro-points { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.5rem; margin-top: 1.8rem; }
.point { display: flex; align-items: center; gap: .65rem; color: var(--text); font-weight: 500; }
.point-ic { color: var(--coral); font-size: .7rem; }

.intro-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.intro-card::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit; background: var(--grad-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.intro-card-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--muted); margin-bottom: .9rem; }
.intro-card-num strong { display: block; font-size: 2.8rem; font-weight: 700; color: var(--text); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.intro-card p { color: var(--muted); }
.intro-card-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.3rem 0 1.6rem; }
.intro-card-list li { font-size: .85rem; padding: .35rem .8rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--text); }

/* ---------- Cards (Leistungen) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  isolation: isolate;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(255,178,76,.35); }
.card-media { aspect-ratio: 4 / 3.2; overflow: hidden; border-radius: inherit; transform: translateZ(0); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); backface-visibility: hidden; will-change: transform; }
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,10,16,.55), transparent 55%); pointer-events: none; }
.card-body { padding: 1.2rem 1.25rem 1.4rem; position: relative; }
.card-no { font-family: var(--font-display); font-size: .8rem; font-weight: 600; color: var(--coral); letter-spacing: .1em; }
.card-body h3 { font-size: 1.18rem; margin: .25rem 0 .5rem; }
.card-body p { color: var(--muted); font-size: .94rem; }

/* ---------- Ablauf / Steps ---------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.step {
  position: relative; padding: 1.8rem 1.4rem 1.6rem;
  border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), rgba(22,19,31,.4));
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(198,75,255,.35); }
.step-no { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { font-size: 1.18rem; margin: .7rem 0 .5rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Konzepte ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: 1.3rem; }
.feature { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; border: 1px solid var(--line); display: flex; align-items: flex-end; }
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,12,.92) 5%, rgba(8,7,12,.15) 55%, transparent); }
.feature:hover img { transform: scale(1.07); }
.feature-cap { position: relative; z-index: 1; padding: 1.5rem; }
.feature-cap h3 { font-size: 1.45rem; }
.feature-cap p { color: #cfc8d8; font-size: .96rem; margin-top: .35rem; }

.concept-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.concept-list li {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.concept-list li:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(255,178,76,.35); }
.concept-list li > img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; cursor: zoom-in; border-bottom: 1px solid var(--line-soft); }
.concept-body { padding: 1.3rem 1.5rem 1.5rem; }
.concept-list h3 { font-size: 1.12rem; display: flex; align-items: center; gap: .5rem; }
.concept-list h3::before { content: "✦"; color: var(--coral); font-size: .75rem; }
.concept-list p { color: var(--muted); font-size: .92rem; margin-top: .4rem; }
.photo-count { position: absolute; top: .8rem; right: .8rem; z-index: 1; pointer-events: none; font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .04em; color: #fff; background: rgba(8,7,12,.62); border: 1px solid rgba(255,255,255,.22); padding: .26rem .62rem; border-radius: 999px; backdrop-filter: blur(6px); }

/* ---------- Referenzen ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1.2rem; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.shot-lg { grid-column: span 2; grid-row: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,12,.9), transparent 50%); opacity: .85; transition: opacity .4s; }
.shot:hover img { transform: scale(1.07); }
.shot:hover::after { opacity: 1; }
.shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; }
.shot figcaption strong { font-family: var(--font-display); font-size: 1.05rem; }
.shot-lg figcaption strong { font-size: 1.4rem; }
.shot figcaption span { color: var(--muted); font-size: .82rem; margin-top: .2rem; }

.ref-sub { font-size: 1.3rem; margin: 2.8rem 0 1.2rem; }
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ref-card {
  position: relative; display: flex; align-items: center; gap: .9rem;
  padding: 1.15rem 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--surface), rgba(22,19,31,.45));
  transition: transform .4s var(--ease), border-color .4s;
}
.ref-card:hover { transform: translateY(-4px); border-color: rgba(255,178,76,.35); }
.ref-ic { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--amber); }
.ref-ic svg { width: 22px; height: 22px; }
.ref-card-body { min-width: 0; }
.ref-card-body h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.ref-card-body p { color: var(--muted); font-size: .82rem; margin-top: .18rem; overflow-wrap: anywhere; }
.ref-year { position: absolute; top: .75rem; right: .8rem; font-family: var(--font-display); font-size: .66rem; font-weight: 600; letter-spacing: .03em; color: var(--coral); background: rgba(255,106,77,.1); border: 1px solid rgba(255,106,77,.25); padding: .18rem .5rem; border-radius: 999px; }
.ref-note { margin: 0; color: var(--muted); font-size: .92rem; }
.ref-note a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Mediathek (Videos) ---------- */
.mediathek { margin-top: 3.4rem; padding-top: 2.8rem; border-top: 1px solid var(--line-soft); }
.mediathek-head { max-width: 640px; margin-bottom: 1.8rem; }
.mediathek-head h3 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
.mediathek-head p { color: var(--muted); margin-top: .6rem; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.video-card {
  position: relative; padding: 0; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 16 / 9; background: var(--surface); cursor: pointer;
  text-align: left; color: var(--text); isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: rgba(255,178,76,.4); }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.video-card:hover img { transform: scale(1.05); filter: brightness(.82); }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,12,.88), transparent 58%); pointer-events: none; z-index: 1; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%; z-index: 2;
  background: var(--grad); display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(255,106,77,.7); transition: transform .35s var(--ease);
}
.video-play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #1a0f06; margin-left: 4px; }
.video-card:hover .video-play { transform: translate(-50%,-50%) scale(1.12); }
.video-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .9rem 1rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; line-height: 1.3; }
.video-cap em { display: block; font-style: normal; font-weight: 400; color: var(--muted); font-size: .8rem; margin-top: .1rem; }
.video-card.loaded { cursor: default; }
.video-card.loaded::after, .video-card.loaded .video-play, .video-card.loaded .video-cap { display: none; }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.mediathek-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: 1.9rem; }

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.kontakt-intro h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: .8rem 0 1.2rem; }
.contact-cards { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0 1.6rem; }
.contact-cards li { display: flex; gap: .9rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
.contact-ic { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--amber); }
.contact-ic svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.contact-cards strong { display: block; font-family: var(--font-display); font-size: .92rem; margin-bottom: .25rem; }
.contact-cards div { color: var(--muted); font-size: .92rem; }
.contact-cards a { color: var(--text); }
.contact-cards a:hover { color: var(--amber); }
.contact-cards small { color: var(--muted-2); }

.socials { display: flex; gap: .7rem; }
.socials a { padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); font-size: .9rem; font-weight: 500; transition: background .3s, border-color .3s, transform .3s; }
.socials a:hover { background: var(--grad-soft); border-color: rgba(255,178,76,.4); transform: translateY(-2px); }

.contact-form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.3rem); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.contact-form::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit; background: var(--grad-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--muted); }
.field .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text);
  background: rgba(0,0,0,.25); border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem; transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(255,178,76,.6); box-shadow: 0 0 0 3px rgba(255,178,76,.15); background: rgba(0,0,0,.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23b1aabd' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.contact-form .btn { width: 100%; margin-top: .4rem; }
.form-hint { font-size: .8rem; color: var(--muted-2); margin-top: .8rem; text-align: center; overflow-wrap: anywhere; }
.form-legend { font-size: .8rem; color: var(--muted-2); margin: .2rem 0 1rem; }
.req { color: var(--coral); }

/* Prevent long email/URL tokens from forcing horizontal overflow on narrow screens */
.mobile-menu-foot a, .contact-cards a, .ref-note a, .footer-col a { overflow-wrap: anywhere; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-2); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-logo { height: 38px; width: auto; opacity: .95; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); max-width: 44ch; margin-bottom: 1.3rem; }
.footer-col h4 { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a, .footer-col span { color: var(--muted); transition: color .25s; }
.footer-col a:hover { color: var(--amber); }
.footer-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: .9rem; }
.footer-bar nav { display: flex; gap: 1.4rem; }
.footer-bar a:hover { color: var(--text); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #1a0f06; font-size: 1.2rem; font-weight: 700;
  border: none; box-shadow: 0 14px 30px -10px rgba(255,106,77,.6);
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 5vw; background: rgba(6,5,9,.92); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 85vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 1.4rem; border: 1px solid var(--line); }
.lightbox-cap { position: absolute; bottom: 1.6rem; left: 0; right: 0; text-align: center; color: var(--muted); font-size: .95rem; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 2rem; line-height: 1; border: 1px solid var(--line); display: none; place-items: center; padding-bottom: .25rem; z-index: 1; }
.lightbox.has-nav .lightbox-nav { display: grid; }
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.lightbox-num { position: absolute; top: 1.75rem; left: 1.6rem; color: var(--muted); font-family: var(--font-display); font-size: .92rem; letter-spacing: .05em; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--rd, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .concept-list { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1150px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .shot-lg { grid-column: span 2; grid-row: span 1; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .concept-list { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .feature { min-height: 280px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .shot-lg { grid-column: span 1; }
  .ref-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .intro-points { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem 2.2rem; }
}

/* ---------- Mini-Galerien (Karten & Konzepte) ---------- */
.card-gallery { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.card-gallery[hidden] { display: none; }
img[data-zoom] { cursor: zoom-in; }
.card-gallery img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 8px;
  border: 1px solid var(--line); cursor: zoom-in;
  transition: transform .3s var(--ease), border-color .3s;
}
.card-gallery img:hover { transform: scale(1.1); border-color: rgba(255,178,76,.5); }

/* ---------- Impressionen ---------- */
.impressionen-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .7rem; }
.impressionen-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-sm); border: 1px solid var(--line); cursor: zoom-in;
  transition: transform .35s var(--ease), border-color .35s;
}
.impressionen-grid img:hover { transform: translateY(-3px) scale(1.03); border-color: rgba(255,178,76,.5); }
@media (max-width: 1080px) {
  .impressionen-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 620px) {
  .impressionen-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Karten-Links (z. B. Showstars-Videos) ---------- */
.card-links { display: flex; flex-wrap: wrap; gap: .3rem 1rem; margin-top: .55rem; }
.card-links a { color: var(--amber); font-size: .85rem; font-weight: 500; }
.card-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Veranstaltungen / Tickets ---------- */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.event-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.event-card::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: inherit; background: var(--grad-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.event-card h3 { font-size: 1.4rem; margin-bottom: .7rem; }
.event-card p { color: var(--muted); margin-bottom: 1.3rem; }
.event-card .btn { margin-right: .6rem; margin-bottom: .5rem; }
.event-note { color: var(--muted-2); font-size: .85rem; margin-top: .6rem; }

/* ---------- Partner-Logos ---------- */
.partner { margin-top: 2.4rem; }
.partner h3 {
  font-size: .85rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 1.1rem;
}
.partner-grid { display: flex; flex-wrap: wrap; gap: .9rem; }
.partner-logo {
  width: 132px; height: 88px; padding: .7rem 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: transform .3s var(--ease);
}
.partner-logo:hover { transform: translateY(-3px); }
.partner-logo img { max-width: 100%; max-height: 62px; width: auto; height: auto; object-fit: contain; }

/* ---------- Referenzen: komplette Liste ---------- */
.ref-cat { font-size: 1.05rem; margin: 2.2rem 0 .9rem; color: var(--text); display: flex; align-items: center; gap: .5rem; }
.ref-cat::before { content: "✦"; color: var(--coral); font-size: .75rem; }
.ref-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.ref-list li {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--surface), rgba(22,19,31,.45));
  transition: transform .35s var(--ease), border-color .35s;
}
.ref-list li:hover { transform: translateY(-3px); border-color: rgba(255,178,76,.35); }
.ref-list li > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; cursor: zoom-in; border-bottom: 1px solid var(--line-soft); transition: transform .5s var(--ease); }
.ref-list li:hover > img { transform: scale(1.05); }
.ref-body { padding: .9rem 1rem 1rem; padding-right: 4.2rem; }
.ref-list h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em; }
.ref-list p { color: var(--muted); font-size: .8rem; margin-top: .15rem; }

/* ---------- Über uns ---------- */
.ueber-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ueber-text h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: .8rem 0 1.3rem; }
.ueber-text p { color: var(--muted); margin-bottom: 1rem; }
.ueber-text p strong { color: var(--text); }
.ueber-aside { display: flex; flex-direction: column; gap: 1.3rem; }
.portrait-card {
  align-self: start; max-width: 300px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow);
}
.portrait-card img { width: 100%; height: auto; }
.portrait-card figcaption { padding: .9rem 1.1rem; }
.portrait-card strong { display: block; font-family: var(--font-display); font-size: .98rem; }
.portrait-card span { color: var(--muted); font-size: .85rem; }
.member-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.member-card h3 { font-size: 1.1rem; margin-bottom: .9rem; }
.member-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.member-card li { display: flex; gap: .6rem; color: var(--muted); font-size: .92rem; }
.member-card li::before { content: "◆"; color: var(--coral); font-size: .65rem; line-height: 1.9; }

@media (max-width: 1080px) {
  .ref-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .event-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-aside { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .member-card { flex: 1 1 300px; }
}
@media (max-width: 620px) {
  .ref-list { grid-template-columns: 1fr; }
  .ueber-aside { flex-direction: column; }
}

/* Short / landscape viewports: drop the decorative scroll cue so it can't overlap the hero stats */
@media (max-height: 640px), (orientation: landscape) and (max-width: 900px) {
  .scroll-cue { display: none; }
}
@media (max-height: 640px) {
  .hero { padding-top: 5rem; padding-bottom: 2.5rem; }
}
