/* ===================================================================
   VTP — Veranstaltungstechnik Prath
   Theme: Editorial-Brutalist meets Stage-Light
   Built by HKS Creations
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #07080a;
  --bg-soft:   #0e1014;
  --bg-card:   #11141a;
  --fg:        #f5f6f8;
  --fg-dim:    #9aa0a6;
  --fg-muted:  #5a5f66;
  --accent:    #00e0ff;
  --accent-dim:#00b8d4;
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.18);

  --font-display: "Anton", "Bebas Neue", "Arial Narrow Bold", sans-serif;
  --font-body:    "Inter Tight", -apple-system, "Segoe UI", system-ui, sans-serif;

  --nav-h: 104px;
  --maxw: 1440px;
  --wa-green: #25D366;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.55, 0, 0.7, 0.2);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--accent); color: #000;
  padding: 12px 18px; font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container--narrow { max-width: 820px; }

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section__head {
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow--accent { color: var(--accent); }

.display {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display--xl { font-size: clamp(3rem, 8vw, 7rem); }

.lead {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
}

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background-color .35s var(--ease-out), border-color .35s var(--ease-out), backdrop-filter .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav[data-state="solid"] {
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav__inner {
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logo {
  width: 76px; height: 76px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}
.brand__rule {
  width: 2px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--line-2) 12%, var(--line-2) 88%, transparent);
}
.brand__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}
.brand__name > span:first-child { font-size: 13px; }
.brand__name > span:last-child {
  font-size: 17px;
  letter-spacing: 0.2em;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.brand__name > span:last-child > strong { color: var(--accent); font-weight: 700; }
.brand__name .gbr {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--fg-dim);
  padding: 2px 6px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  align-self: center;
}

.nav__links {
  justify-self: end;
  display: flex;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  color: var(--fg-dim);
  transition: color .25s var(--ease-out);
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--fg); }
.nav__links a.is-active { color: var(--fg); }
.nav__links a.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
}

.wa-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px 13px 18px;
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .2s var(--ease-out), background-color .2s, box-shadow .25s var(--ease-out);
}
.wa-pill:hover {
  transform: translateY(-1px);
  background: #1ebe57;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.18);
}
.wa-pill:active { transform: translateY(0); }
.wa-pill svg { color: #fff; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background: #07080a;
  padding: calc(var(--nav-h) + 32px) clamp(20px, 6vw, 48px) 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: mobileIn .35s var(--ease-out);
  z-index: 150;  /* under nav (200) so hamburger stays clickable, over content */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile nav { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a:not(.wa-pill) {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.5rem);
  line-height: 1.05;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
}
.wa-pill--block {
  margin-top: auto;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
}
@keyframes mobileIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Sub-pages get nav-height padding */
body.page-sub main { padding-top: var(--nav-h); }

/* ===================================================================
   AUDIO ZENIT × VTP — BRAND PAIR CARD
   =================================================================== */
.zenit-pair {
  background: linear-gradient(180deg, #001016 0%, var(--bg-soft) 100%);
  border-top: 1px solid rgba(0, 224, 255, 0.3);
  border-bottom: 1px solid rgba(0, 224, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.zenit-pair::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0, 224, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 70% 100%, rgba(195, 29, 75, 0.12), transparent 55%);
  pointer-events: none;
}
.zenit-pair > .container { position: relative; }
.zenit-pair__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
  font-size: 13px;
  letter-spacing: 0.32em;
}
.zenit-pair__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.zenit-pair__brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zenit-pair__logo-frame {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  width: 110px; height: 110px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.6);
}
.zenit-pair__logo-frame--vtp { padding: 6px; background: #fff; }
.zenit-pair__logo {
  width: 100%; height: 100%;
  object-fit: contain;
}
.zenit-pair__logo--vtp { object-fit: cover; border-radius: 6px; }
.zenit-pair__name {
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
}
.zenit-pair__brand--zenit .zenit-pair__name { color: var(--fg); }
.zenit-pair__brand--vtp .zenit-pair__name { color: var(--accent); }
.zenit-pair__sub {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.5;
  max-width: 28ch;
  margin: 0;
}
.zenit-pair__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}
.zenit-pair__x {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 224, 255, 0.5);
}
.zenit-pair__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: center;
  font-weight: 600;
}
.zenit-pair__cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

@media (max-width: 760px) {
  .zenit-pair { padding: clamp(48px, 10vw, 80px) 0; }
  .zenit-pair__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .zenit-pair__connector { padding: 4px 0; flex-direction: row; gap: 14px; }
  .zenit-pair__x { font-size: 2.4rem; }
  .zenit-pair__label { font-size: 9px; }
  .zenit-pair__logo-frame { width: 96px; height: 96px; padding: 14px; margin-bottom: 18px; }
  .zenit-pair__name { font-size: 1.8rem; line-height: 0.95; }
  .zenit-pair__sub { font-size: 13px; }
  .zenit-pair__cta { margin-top: 32px; }
}

/* ===================================================================
   AUDIO ZENIT TRUST-STRIP (Top, unter Nav)
   =================================================================== */
.zenit-strip {
  background: linear-gradient(90deg, #001016 0%, #003844 50%, #001016 100%);
  border-top: 1px solid rgba(0, 224, 255, 0.25);
  border-bottom: 1px solid rgba(0, 224, 255, 0.45);
  text-align: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.zenit-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 224, 255, 0.2), transparent 60%);
  pointer-events: none;
}
.zenit-strip a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #d6f4f9;
  transition: color .25s var(--ease-out), gap .25s var(--ease-out);
}
.zenit-strip a:hover { color: var(--accent); gap: 18px; }
.zenit-strip a strong {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.zenit-strip__star {
  color: var(--accent);
  font-size: 14px;
  filter: drop-shadow(0 0 6px rgba(0, 224, 255, 0.6));
}
.zenit-strip__arrow { color: var(--accent); transition: transform .25s var(--ease-out); }
.zenit-strip a:hover .zenit-strip__arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .zenit-strip a { font-size: 11px; padding: 12px 16px; gap: 10px; letter-spacing: 0.04em; }
}

/* ===================================================================
   PAGE HERO (Sub-Pages)
   =================================================================== */
.page-hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0, 224, 255, 0.08), transparent 50%),
    var(--bg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero .lead { margin-top: 16px; }
.page-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
}
.page-hero__veil {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.55) 0%, rgba(7, 8, 10, 0.78) 60%, rgba(7, 8, 10, 0.95) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(0, 224, 255, 0.12), transparent 50%);
}
.page-hero--video { padding: clamp(120px, 18vw, 220px) 0 clamp(80px, 10vw, 140px); }
.page-hero--video .display { text-shadow: 0 4px 30px rgba(0,0,0,0.6); }

/* ===================================================================
   1.1 HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero__vignette {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 65%, transparent 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 14vh, 160px) clamp(20px, 4vw, 56px) clamp(80px, 14vh, 140px);
}
.hero__eyebrow {
  margin: 0 0 clamp(20px, 3vh, 32px);
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0; transform: translateY(8px);
}
.hero__headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 9.5vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--fg);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  max-width: 16ch;
}
.hero__headline span {
  display: inline-block;
  margin-right: 0.18em;
  opacity: 0; transform: translateY(40px);
}
.hero__headline-line {
  display: block;
  margin-right: 0;
}
.hero__headline-accent { color: var(--accent); }
.hero__sub {
  margin: clamp(20px, 3vh, 28px) 0 clamp(28px, 4vh, 40px);
  max-width: 44ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(8px);
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: grid; place-items: center;
  transition: border-color .25s, transform .25s var(--ease-out);
  opacity: 0;
  animation: scrollIn .5s 1.4s var(--ease-out) forwards;
}
.hero__scroll:hover { border-color: var(--accent); transform: translateX(-50%) translateY(-2px); }
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: var(--fg);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease-out) infinite;
}
@keyframes scrollIn { to { opacity: 1; } }
@keyframes scrollDot {
  0%   { transform: translateY(-6px); opacity: 0; }
  35%  { transform: translateY(-2px); opacity: 1; }
  70%  { transform: translateY(8px);  opacity: 0; }
  100% { transform: translateY(8px);  opacity: 0; }
}

body[data-loaded] .hero__eyebrow { animation: heroFade .7s .15s var(--ease-out) forwards; }
body[data-loaded] .hero__headline span { animation: heroWord .8s var(--ease-out) forwards; }
body[data-loaded] .hero__headline span:nth-child(1) { animation-delay: .25s; }
body[data-loaded] .hero__headline span:nth-child(2) { animation-delay: .35s; }
body[data-loaded] .hero__headline span:nth-child(3) { animation-delay: .50s; }
body[data-loaded] .hero__sub { animation: heroFade .7s .85s var(--ease-out) forwards; }
body[data-loaded] .hero .cta { animation: heroScale .6s 1.05s var(--ease-out) forwards; }
.hero .cta { opacity: 0; transform: scale(0.92); }

@keyframes heroFade  { to { opacity: 1; transform: translateY(0); } }
@keyframes heroWord  { to { opacity: 1; transform: translateY(0); } }
@keyframes heroScale { to { opacity: 1; transform: scale(1); } }

/* ===================================================================
   CTA
   =================================================================== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 26px 17px 28px;
  background: var(--fg);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .25s var(--ease-out),
              background-color .25s var(--ease-out),
              color .25s var(--ease-out),
              box-shadow .35s var(--ease-out);
}
.cta svg { transition: transform .3s var(--ease-out); }
.cta:hover {
  background: var(--accent);
  color: #001016;
  box-shadow: 0 12px 40px -8px rgba(0, 224, 255, 0.55);
}
.cta:hover svg { transform: translateX(4px); }
.cta:active { transform: scale(0.98); }
.cta--accent { background: var(--accent); color: #001016; }
.cta--accent:hover { background: #fff; color: #000; }
.cta--lg { padding: 22px 32px 22px 36px; font-size: 17px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .25s var(--ease-out), border-color .25s;
}
.link-arrow:hover { gap: 12px; border-bottom-color: var(--accent); }

/* ===================================================================
   1.2 ÜBER UNS
   =================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__copy .lead { margin-bottom: 32px; }
.about__points {
  display: flex; flex-direction: column; gap: 14px;
  margin: 0 0 40px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.about__points li { display: flex; align-items: center; gap: 14px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.18);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.4;
}
.stat__label small { font-size: 11px; opacity: 0.75; }

.about__quote {
  margin: 36px 0 40px;
  padding: 22px 28px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(0, 224, 255, 0.07), transparent);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--fg);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about__media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line-2);
  pointer-events: none;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.about__media:hover img { transform: scale(1.04); }

/* ===================================================================
   1.3 LEISTUNGEN
   =================================================================== */
.services { background: var(--bg-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.services__grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
  .services__grid--6 { grid-template-columns: repeat(2, 1fr); }
}
.service {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .25s;
}
.service:hover { transform: translateY(-4px); border-color: var(--line-2); }
.service__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.service:hover .service__media img { transform: scale(1.06); }
.service__body {
  padding: clamp(24px, 3vw, 40px);
}
.service__num {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.service p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================================================
   1.4 EVENT-ARTEN
   =================================================================== */
.event-tags {
  display: flex; flex-wrap: wrap;
  gap: 12px;
}
.event-tags li {
  padding: 14px 24px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background-color .25s var(--ease-out), border-color .25s var(--ease-out), color .25s var(--ease-out), transform .2s var(--ease-out), box-shadow .35s var(--ease-out);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.event-tags li:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #001016;
  transform: translateY(-2px);
}
.event-tags li:active { transform: translateY(0) scale(0.97); }
.event-tags li.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #001016;
  box-shadow: 0 8px 24px -6px rgba(0, 224, 255, 0.5);
}
.event-tags li.is-on:hover { transform: translateY(-2px); }

/* ===================================================================
   1.5 BEWERTUNGEN — CAROUSEL
   =================================================================== */
.reviews { background: var(--bg-soft); overflow: hidden; }
.carousel {
  position: relative;
  /* Edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: vtp-marquee 90s linear infinite;
  will-change: transform;
}
.carousel:hover .carousel__track,
.carousel:focus-within .carousel__track {
  animation-play-state: paused;
}
.review {
  flex: 0 0 auto;
  width: clamp(300px, 50vw, 420px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: default;
}
.review:hover { border-color: var(--line-2); }
.carousel__controls { display: none; }

@keyframes vtp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__track { animation: none; }
}
.review__stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 16px;
  margin-bottom: 16px;
}
.review__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px;
  flex: 1;
}
.review__meta {
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0;
}
.review__meta strong { color: var(--fg); font-weight: 600; }

.carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.carousel__btn {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--fg);
  transition: background-color .2s, border-color .2s, color .2s;
}
.carousel__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #001016;
}
.carousel__dots {
  display: flex; gap: 8px;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  border: 0;
  cursor: pointer;
  transition: background-color .25s, transform .25s;
  padding: 0;
}
.carousel__dot[aria-current="true"] {
  background: var(--accent);
  transform: scale(1.3);
}

.reviews__cta { text-align: center; margin-top: 48px; }

/* ===================================================================
   1.6 PARTNER WALL
   =================================================================== */
.partner-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.partner-wall li {
  background: var(--bg);
  padding: 36px 24px;
  display: grid; place-items: center;
  min-height: 120px;
  transition: background-color .25s;
}
.partner-wall li:hover { background: var(--bg-soft); }
.partner-wall span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color .25s;
  text-align: center;
}
.partner-wall li:hover span { color: var(--fg); }

/* ===================================================================
   1.7 AUDIO ZENIT
   =================================================================== */
.zenit {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 224, 255, 0.10), transparent 60%),
    var(--bg);
}
.zenit__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.zenit__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-2);
  position: relative;
}
.zenit__media img { width: 100%; height: 100%; object-fit: cover; }
.zenit__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  pointer-events: none;
}

.checklist {
  display: flex; flex-direction: column; gap: 12px;
  margin: 0 0 32px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ===================================================================
   1.8 CLOSING CTA
   =================================================================== */
.closing-cta {
  background: var(--bg-soft);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.closing-cta__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 48px;
}
.closing-cta__accent { color: var(--accent); }
.closing-cta__contact {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 32px;
  margin-top: 48px;
  font-size: 14px;
  color: var(--fg-dim);
}
.closing-cta__contact a:hover { color: var(--accent); }

/* ===================================================================
   LEISTUNGEN PAGE
   =================================================================== */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.service-detail--alt .service-detail__copy { order: 2; }
.service-detail--alt .service-detail__gallery { order: 1; }
.service-detail__num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 12px;
}
.service-detail__copy h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 32px 0 16px;
}
.service-detail__copy .lead { margin-bottom: 16px; }
.service-detail__copy .cta { margin-top: 32px; }

.service-detail__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 4 / 4;
}
.service-detail__gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.service-detail__gallery img:nth-child(1) { grid-row: 1 / 3; }

/* ===================================================================
   VERANSTALTUNGEN PAGE
   =================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.event-card--lg { grid-column: span 2; }
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .25s;
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.event-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.event-card--lg .event-card__media { aspect-ratio: 21 / 9; }
.event-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.event-card:hover .event-card__media img { transform: scale(1.04); }
.event-card__media--placeholder {
  display: grid; place-items: center;
  color: var(--fg-muted);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-soft),
    var(--bg-soft) 12px,
    var(--bg-card) 12px,
    var(--bg-card) 24px
  );
}
.event-card__body { padding: clamp(24px, 3vw, 36px); }
.event-card__date {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 600;
}
.event-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.event-card p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}
.event-card__partner {
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: auto;
}

.upcoming-empty {
  text-align: center;
  padding: clamp(48px, 8vw, 100px) 24px;
  border: 1px dashed var(--line-2);
  border-radius: 4px;
  background: var(--bg-soft);
}
.upcoming-empty p {
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}

/* ===================================================================
   KONTAKT PAGE
   =================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__main .cta { margin-bottom: 48px; }
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__info li {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact__info li:last-child { border-bottom: 0; }
.contact__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact__info a, .contact__info span {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--fg);
  line-height: 1.4;
  transition: color .2s;
}
.contact__info a:hover { color: var(--accent); }
.contact__map {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-2);
  overflow: hidden;
  background: var(--bg-soft);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg);
}

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.page-legal { background: var(--bg-soft); }
.legal { padding-top: clamp(40px, 6vw, 80px); }
.legal h1 { margin-bottom: 48px; }
.legal h2 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 40px 0 12px;
}
.legal p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 16px;
}
.legal a { color: var(--accent); text-decoration: underline; }
.legal__note {
  margin-top: 60px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================================================================
   EVENTS SPLIT (Vergangen / Kommend)
   =================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.events-split { padding: clamp(60px, 8vw, 120px) 0; }
.events-split__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.events-split__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--line-2) 15%, var(--line-2) 85%, transparent);
}
.events-split__head {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.events-split__head .display {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
}
.events-split__col--upcoming .events-split__head { border-bottom-color: rgba(0, 224, 255, 0.4); }

.events-list {
  display: flex; flex-direction: column;
  gap: 16px;
}
.events-empty {
  padding: 32px;
  border: 1px dashed var(--line-2);
  border-radius: 4px;
  background: var(--bg-soft);
  color: var(--fg-dim);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Compact event cards inside split */
.events-list .event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.events-list .event-card__media {
  aspect-ratio: auto;
  width: 100%; height: 100%;
  min-height: 120px;
}
.events-list .event-card__body {
  padding: 18px 20px;
}
.events-list .event-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin: 0 0 6px;
}
.events-list .event-card__date { font-size: 11px; margin: 0 0 8px; }
.events-list .event-card p { font-size: 13px; margin: 0 0 6px; }
.events-list .event-card__partner { font-size: 11px; }
.events-split__col--upcoming .events-list .event-card__date { color: var(--accent); }

@media (max-width: 880px) {
  .events-split__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .events-split__divider {
    width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--line-2) 15%, var(--line-2) 85%, transparent);
  }
}
@media (max-width: 520px) {
  .events-list .event-card { grid-template-columns: 1fr; }
  .events-list .event-card__media { aspect-ratio: 16 / 9; min-height: 0; }
}

/* ===================================================================
   LIGHTBOX (Event-Detail-Overlay)
   =================================================================== */
.event-card--clickable {
  cursor: pointer;
}
.event-card--clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.event-card--clickable .event-card__media::after {
  content: "→";
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.7);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  transform: translateX(-4px);
}
.event-card--clickable:hover .event-card__media::after,
.event-card--clickable:focus-visible .event-card__media::after {
  opacity: 1;
  transform: translateX(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 4, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox__shell {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(20px);
  transition: transform .35s var(--ease-out);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.lightbox.is-open .lightbox__shell { transform: translateY(0); }

.lightbox__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background-color .2s, color .2s, transform .2s;
}
.lightbox__close:hover {
  background: var(--accent);
  color: #001016;
  transform: rotate(90deg);
}

.lightbox__inner {
  padding: clamp(28px, 4vw, 48px);
}
.lightbox__date {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 600;
}
.lightbox__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 16px;
  line-height: 0.96;
}
.lightbox__partner {
  font-size: 13px;
  color: var(--fg-dim);
  margin: 0 0 16px;
}
.lightbox__desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 24px;
}
.lightbox__hero {
  margin-bottom: 18px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-soft);
}
.lightbox__hero img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
  background: #000;
}
.lightbox__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}
.lightbox__thumb {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s, transform .2s var(--ease-out);
}
.lightbox__thumb:hover,
.lightbox__thumb:focus-visible {
  border-color: var(--accent);
  transform: scale(1.04);
}
.lightbox__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .lightbox { padding: 8px; }
  .lightbox__inner { padding: 24px 18px 28px; }
  .lightbox__close { top: 8px; right: 8px; }
}

/* ===================================================================
   ADMIN
   =================================================================== */
.admin-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-shell__header {
  padding: 24px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.admin-shell__main {
  flex: 1;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.admin-login {
  max-width: 420px;
  margin: clamp(60px, 10vw, 120px) auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
}
.admin-login h1 { margin: 0 0 8px; font-size: 1.8rem; font-family: var(--font-display); text-transform: uppercase; }
.admin-login p { color: var(--fg-dim); margin: 0 0 24px; font-size: 14px; }
.admin-login .form-row + .form-row { margin-top: 16px; }
.admin-login .cta { width: 100%; justify-content: center; margin-top: 16px; }
.admin-error {
  margin-top: 12px; font-size: 13px; color: #ff5e5e; min-height: 1.4em;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
}
.admin-card--primary {
  border-color: rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 224, 255, 0.1) inset;
}
.admin-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  display: inline-flex; align-items: center; gap: 12px;
}
.admin-card .lead { font-size: 14px; margin: 12px 0 24px; }
.admin-card__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.admin-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.admin-card__dot--upcoming {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.18);
}
.admin-card__dot--past {
  background: var(--fg-muted);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
}
.admin-card__badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--accent);
  color: #001016;
  margin-left: auto;
}
.admin-card__badge--past { background: var(--fg-muted); color: #fff; }
.admin-card__count {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 3px 9px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg-dim);
  margin-left: 4px;
}
.admin-card__chevron {
  margin-left: auto;
  font-size: 16px;
  color: var(--fg-dim);
  transition: transform .25s var(--ease-out);
}

/* Collapsible <details>/<summary> */
.admin-card--collapsible { padding: 0; }
.admin-card--collapsible > summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: background-color .2s;
}
.admin-card--collapsible > summary::-webkit-details-marker { display: none; }
.admin-card--collapsible > summary::marker { display: none; }
.admin-card--collapsible > summary:hover {
  background: rgba(255,255,255,0.02);
}
.admin-card--collapsible[open] > summary .admin-card__chevron {
  transform: rotate(180deg);
}
.admin-card--collapsible > *:not(summary) {
  padding: 0 clamp(20px, 3vw, 30px);
}
.admin-card--collapsible > *:not(summary):last-child {
  padding-bottom: clamp(20px, 3vw, 30px);
}
.admin-card--collapsible > .lead {
  margin-top: 0;
  padding-top: 4px;
}

/* File uploader */
.uploader {
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  padding: 18px;
  background: rgba(255,255,255,0.02);
}
.uploader__preview {
  margin-bottom: 12px;
  display: none;
}
.uploader__preview.has-image { display: block; }
.uploader__preview img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.uploader__previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.uploader__previews:empty { display: none; }
.uploader__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s var(--ease-out), border-color .2s;
}
.uploader__thumb:hover {
  transform: translateY(-2px);
  border-color: #ff5e5e;
}
.uploader__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.uploader__thumb::after {
  content: "✕";
  position: absolute; top: 6px; right: 6px;
  width: 24px; height: 24px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity .2s, background-color .2s;
}
.uploader__thumb:hover::after {
  opacity: 1;
  background: #ff5e5e;
}
.uploader__actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.uploader__busy {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--accent);
  margin-left: 4px;
}
.help-inline {
  font-weight: 400;
  color: var(--fg-dim);
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
  margin-left: 6px;
}

.admin-events-list {
  display: grid;
  gap: 12px;
}
.admin-events-list .admin-event {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 14px;
}
.admin-event__thumb {
  width: 80px; height: 60px;
  background: var(--bg);
  border: 1px solid var(--line);
  object-fit: cover;
}
.admin-event__thumb--placeholder {
  display: grid; place-items: center;
  color: var(--fg-muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.admin-event__info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
}
.admin-event__info p {
  margin: 0;
  font-size: 12px;
  color: var(--fg-dim);
}
.admin-event__status {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.admin-event__status--past { color: var(--fg-dim); }
.admin-event__status--upcoming { color: var(--accent); border-color: var(--accent); }
.admin-event__actions {
  display: flex; gap: 8px;
}
.admin-btn {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--fg);
  font-weight: 600;
  transition: background-color .2s, border-color .2s, color .2s;
}
.admin-btn:hover { background: var(--accent); border-color: var(--accent); color: #001016; }
.admin-btn--danger:hover { background: #ff4d4d; border-color: #ff4d4d; color: #fff; }

@media (max-width: 600px) {
  .admin-events-list .admin-event { grid-template-columns: 1fr; }
  .admin-event__thumb { width: 100%; height: 140px; }
}

/* ===================================================================
   KONTAKTFORMULAR
   =================================================================== */
.contact-form {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form-grid .form-row--full { grid-column: 1 / -1; }

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.form-row label .req { color: var(--accent); margin-left: 4px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--fg);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, background-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #14181f;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--fg-dim) 50%), linear-gradient(135deg, var(--fg-dim) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.form-row .help {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 0;
}
.checkboxes label {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: var(--fg);
}
.checkboxes label:hover { border-color: var(--line-2); background: #14181f; }
.checkboxes input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--line-2);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.checkboxes input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checkboxes input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1.5px;
  width: 5px; height: 10px;
  border-right: 2px solid #001016;
  border-bottom: 2px solid #001016;
  transform: rotate(45deg);
}
.checkboxes input[type="checkbox"]:checked + span { color: var(--accent); font-weight: 600; }
.checkboxes label:has(input:checked) { border-color: var(--accent); background: rgba(0, 224, 255, 0.06); }

.form-submit {
  margin-top: 12px;
}
.form-status {
  margin-top: 16px;
  font-size: 14px;
  color: var(--fg-dim);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: #050608;
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.brand--footer .brand__logo { width: 48px; height: 48px; }
.footer__tag {
  margin: 24px 0;
  color: var(--fg-dim);
  font-size: 14px;
  max-width: 26ch;
  line-height: 1.5;
}
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--fg);
  transition: background-color .2s, border-color .2s, color .2s, transform .2s var(--ease-out);
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #001016;
  transform: translateY(-2px);
}
.socials a[aria-label="WhatsApp"]:hover { background: var(--wa-green); border-color: var(--wa-green); color: #fff; }
.socials a[aria-label="TikTok"]:hover   { background: #fff; border-color: #fff; color: #000; }
.socials a[aria-label="Facebook"]:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.socials a[aria-label="E-Mail"]:hover   { background: #fff; border-color: #fff; color: #000; }

.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: var(--fg);
  font-size: 14px;
  line-height: 1.6;
  transition: color .2s;
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__credit a { color: var(--fg-dim); transition: color .2s; }
.footer__credit a:hover { color: var(--accent); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
}

@media (max-width: 960px) {
  :root { --nav-h: 84px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner > .wa-pill { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .brand__logo { width: 56px; height: 56px; }
  .brand__rule { height: 48px; }
  .brand__name > span:first-child { font-size: 11px; }
  .brand__name > span:last-child  { font-size: 14px; letter-spacing: 0.16em; }
  .brand__name .gbr { font-size: 10px; padding: 1px 5px; }

  .about__grid,
  .zenit__grid,
  .service-detail__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .service-detail--alt .service-detail__copy { order: 1; }
  .service-detail--alt .service-detail__gallery { order: 2; }

  .services__grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card--lg { grid-column: auto; }

  .about__stats { gap: 16px; }
}

@media (max-width: 600px) {
  .about__stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .partner-wall { grid-template-columns: repeat(2, 1fr); }
  .review { padding: 26px 24px; }
  .review::before { inset: 0 8px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 72px; }
  .brand__logo { width: 48px; height: 48px; }
  .brand__rule { height: 40px; width: 1.5px; }
  .brand__name > span:first-child { font-size: 9.5px; letter-spacing: 0.06em; }
  .brand__name > span:last-child  { font-size: 13px; letter-spacing: 0.14em; }
  .brand__name .gbr { font-size: 9px; padding: 1px 4px; }
  .hero__content { padding-bottom: 110px; }
  .closing-cta__contact { flex-direction: column; gap: 10px; }

  /* Hero headline: tighter on small phones so the 3 lines fit cleanly */
  .hero__headline { font-size: clamp(2.6rem, 12vw, 4rem); line-height: 0.95; }
  .hero__sub { font-size: 0.95rem; }
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.24em; }
  .hero__scroll { bottom: 16px; width: 24px; height: 36px; }

  /* Section heads tighter */
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 28px; }
  .display { font-size: clamp(2rem, 9vw, 3rem); }

  /* Stats stacked but less tall */
  .about__stats { padding-top: 24px; }
  .stat__num { font-size: 2.2rem; }

  /* Lightbox tweaks */
  .lightbox__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .lightbox__gallery { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 6px; }
  .lightbox__hero img { max-height: 50vh; }

  /* Event-card --lg full-width on phone */
  .event-card--lg { grid-column: auto; }

  /* Admin: smaller cards on phone */
  .admin-shell__main { padding-left: 14px; padding-right: 14px; }
  .admin-card { padding: 20px !important; margin-bottom: 16px; }
  .admin-card--collapsible > summary { padding: 18px !important; }
  .admin-card--collapsible > *:not(summary) { padding-left: 18px !important; padding-right: 18px !important; }
  .admin-card h2 { font-size: 1.2rem; }
  .uploader { padding: 14px; }
  .uploader__previews { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .admin-event { padding: 12px; }
}

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stat counter: ensure consistent number rendering during animation */
.stat__num { font-variant-numeric: tabular-nums; }

/* ===================================================================
   MOBILE OPTIMIZATIONS
   =================================================================== */
@media (max-width: 768px) {
  /* Replace heavy hero videos with poster images on mobile (faster + no autoplay quirks) */
  .hero__video,
  .page-hero__video { display: none !important; }

  .hero {
    background:
      linear-gradient(180deg, rgba(7,8,10,0.45) 0%, rgba(7,8,10,0.7) 60%, rgba(7,8,10,0.92) 100%),
      url(../img/hero-poster.jpg) center/cover no-repeat #000;
  }
  .hero__vignette,
  .hero__grain { display: none; }

  .page-hero--video { background-color: #000; background-position: center; background-size: cover; background-repeat: no-repeat; }
  .page-hero__veil {
    background:
      linear-gradient(180deg, rgba(7,8,10,0.5) 0%, rgba(7,8,10,0.78) 60%, rgba(7,8,10,0.95) 100%);
  }
  .page-hero--leistungen { background-image: linear-gradient(180deg, rgba(7,8,10,0.5), rgba(7,8,10,0.85)), url(../img/leistungen-poster.jpg); }
  .page-hero--events     { background-image: linear-gradient(180deg, rgba(7,8,10,0.5), rgba(7,8,10,0.85)), url(../img/events-poster.jpg); }
  .page-hero--leistungen .page-hero__veil,
  .page-hero--events     .page-hero__veil { display: none; }

  /* Prevent iOS auto-zoom on input focus (must be ≥16px) */
  input, select, textarea, .form-row input, .form-row select, .form-row textarea {
    font-size: 16px !important;
  }

  /* Tighter section padding on small screens */
  .section { padding: clamp(56px, 14vw, 96px) 0; }
}

@media (max-width: 600px) {
  /* Reduce service-card padding on small phones */
  .service__body { padding: 22px; }
  .service h3 { font-size: 1.4rem; }
  .service p { font-size: 14px; }

  /* Service detail gallery on phones: 2-up instead of complex grid */
  .service-detail__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    gap: 8px;
  }
  .service-detail__gallery img:nth-child(1) { grid-row: auto; aspect-ratio: 16 / 10; grid-column: 1 / -1; }
  .service-detail__gallery img { aspect-ratio: 4 / 3; }

  /* Closing-CTA tighter */
  .closing-cta__h { font-size: clamp(2.2rem, 11vw, 3.6rem); }

  /* Footer cleaner on phone */
  .footer__grid { gap: 28px; }
  .footer__col h4 { margin-bottom: 12px; }

  /* Map iframe shorter on mobile */
  .contact__map { aspect-ratio: 4 / 3; }

  /* Form: stack columns on small screens */
  .form-grid { grid-template-columns: 1fr; }
  .checkboxes { grid-template-columns: 1fr; }

  /* Reviews cards smaller width on phone */
  .review { width: clamp(280px, 80vw, 340px); padding: 24px; }

  /* Page-hero padding tighter on phone */
  .page-hero { padding: clamp(64px, 14vw, 110px) 0 clamp(40px, 8vw, 70px); }
  .page-hero--video { padding: clamp(80px, 18vw, 140px) 0 clamp(50px, 10vw, 80px); }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__headline span,
  .hero__eyebrow,
  .hero__sub,
  .hero .cta { opacity: 1 !important; transform: none !important; }
  .hero__scroll { opacity: 1 !important; }
  .hero__scroll span { animation: none; }
  .carousel__track { animation: none !important; transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
