/* ============================================================
   ACTIVATED AGENCY – Liquid Glass CSS
   Brand: Apfel-Neongrün #CCFF00
   Performance-optimized: reduced backdrop-filter usage
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #CCFF00;
  --primary-rgb: 156, 255, 0;
  --primary-foreground: #0a0a0a;
  --background: #0a0a0a;
  --background-rgb: 10, 10, 10;
  --foreground: #fafafa;
  --muted: #1a1a1a;
  --muted-foreground: #a1a1aa;
  --card: #141414;
  --border: #27272a;
  --primary-btn: linear-gradient(135deg, #CCFF00 0%, #e8ff33 50%, #CCFF00 100%);
  --primary-glow: 0 0 16px rgba(204, 255, 0, 0.25), 0 2px 8px rgba(204, 255, 0, 0.15);
  --destructive: #ef4444;
  --radius: 0.75rem;
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Glass Panel (performance: use solid bg + subtle border instead of heavy blur) --- */
.glass-panel {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Splash Overlay --- */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.splash-glass {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.splash-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
}
.splash-lang-btn:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--primary-rgb), 0.08);
}

.splash-cookie-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  width: 100%;
}
.splash-cookie-btn:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--primary-rgb), 0.08);
}
.splash-cookie-btn.splash-accept {
  background: var(--primary-btn);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: var(--primary-glow);
}
.splash-cookie-btn.splash-accept:hover {
  opacity: 0.92;
  box-shadow: 0 0 24px rgba(204, 255, 0, 0.35), 0 2px 12px rgba(204, 255, 0, 0.2);
}

/* Cookie Toggle Switch */
.splash-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.splash-toggle input { opacity: 0; width: 0; height: 0; }
.splash-toggle-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 22px;
  transition: 0.3s;
  cursor: pointer;
}
.splash-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.splash-toggle input:checked + .splash-toggle-slider {
  background: var(--primary);
}
.splash-toggle input:checked + .splash-toggle-slider::before {
  transform: translateX(18px);
}

/* --- Side Navigation (Records-Style) --- */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 38px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* ============================================================
   LASER NAV — Records-Style (adapted for Agency #CCFF00)
   ============================================================ */
.laser-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 52px;
  z-index: 1000;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.laser-nav-rail {
  position: absolute;
  left: 6px;
  top: 12%;
  bottom: 12%;
  width: 4px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: 2px;
  pointer-events: none;
}

.laser-beam {
  position: absolute;
  left: -2px;
  width: 8px;
  height: 50px;
  background: var(--primary);
  border-radius: 4px;
  box-shadow:
    0 0 8px rgba(var(--primary-rgb), 1),
    0 0 18px rgba(var(--primary-rgb), 0.7),
    0 0 40px rgba(var(--primary-rgb), 0.3),
    0 0 80px rgba(var(--primary-rgb), 0.1);
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  top: 0;
}

.laser-nav-symbols {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 76%;
  gap: 0;
  position: absolute;
  left: 18px;
  top: 12%;
  bottom: 12%;
  pointer-events: auto;
}

.laser-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}
.laser-nav-link:hover {
  transform: scale(1.3);
}

.laser-av {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.15;
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.laser-nav-link.active .laser-av {
  opacity: 1;
  transform: scale(1.5);
  filter:
    brightness(0) saturate(100%)
    invert(90%) sepia(60%) saturate(600%) hue-rotate(15deg) brightness(1.1)
    drop-shadow(0 0 4px rgba(var(--primary-rgb), 0.9))
    drop-shadow(0 0 12px rgba(var(--primary-rgb), 0.5))
    drop-shadow(0 0 24px rgba(var(--primary-rgb), 0.2));
}

.laser-nav-link:hover .laser-av {
  opacity: 0.5;
}
.laser-nav-link.active:hover .laser-av {
  opacity: 1;
}

@media (max-width: 767px) {
  .laser-nav { display: none; }
}

/* Language Switcher (top-right, alle Viewports) */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lang-flag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.25s ease;
}
.lang-flag-btn:hover {
  opacity: 0.8;
}
.lang-flag-btn.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3);
}
.lang-flag-btn svg {
  display: block;
  border-radius: 2px;
}

/* Side-Nav Toggle Button (Mobile only) */
.side-nav-toggle {
  display: none;
}
@media (max-width: 767px) {
  /* FIX #15: Side menu button hidden on mobile */
  .side-nav-toggle {
    display: none !important;
  }
  .side-nav {
    display: none !important;
  }
}
.side-nav:hover,
.side-nav.expanded {
  width: 145px;
}

.side-nav-glass {
  width: 100%;
  height: auto;
  margin-left: 6px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.side-nav:hover .side-nav-glass,
.side-nav.expanded .side-nav-glass {
  background: rgba(10, 10, 10, 0.65);
  border-color: rgba(255, 255, 255, 0.1);
}
.side-nav-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), transparent 60%);
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.side-nav:hover .side-nav-glass::before,
.side-nav.expanded .side-nav-glass::before {
  opacity: 0.5;
}

.side-nav-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 7px;
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.55);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
}
.side-nav-link:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}
.side-nav-link.active {
  color: var(--primary);
}

.side-nav-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: rgba(161, 161, 170, 0.4);
  transition: all 0.3s ease;
  box-shadow: none;
  flex-shrink: 0;
}
.side-nav-link.active .side-nav-dot {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5), 0 0 16px rgba(var(--primary-rgb), 0.3);
  width: 8px;
  height: 8px;
  min-width: 8px;
}
.side-nav-link:hover .side-nav-dot {
  background: var(--foreground);
}

.side-nav-label {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
}
.side-nav:hover .side-nav-label,
.side-nav.expanded .side-nav-label {
  opacity: 1;
  transform: translateX(0);
}

.side-nav-divider {
  height: 1px;
  margin: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
}

.side-nav-external { gap: 2px; }
.side-nav-ext {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(161, 161, 170, 0.4);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
}
.side-nav-ext:hover { color: var(--primary); }
.side-nav-ext .side-nav-dot {
  background: rgba(255, 255, 255, 0.15);
  width: 5px;
  height: 5px;
  min-width: 5px;
}
.side-nav-ext:hover .side-nav-dot { background: var(--primary); }

.side-nav-lang {
  display: flex;
  gap: 5px;
  padding: 6px 12px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease 0.05s;
}
.side-nav:hover .side-nav-lang,
.side-nav.expanded .side-nav-lang {
  opacity: 1;
  pointer-events: auto;
}
.lang-btn {
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(161, 161, 170, 0.5);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.5;
}
.lang-btn:hover { color: var(--foreground); opacity: 0.8; }
.lang-btn.active {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.08);
  opacity: 1;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.hero-bg img {
  width: 65%;
  max-width: 850px;
  object-fit: contain;
  opacity: 0.15;
  mix-blend-mode: screen;
  filter: blur(6px);
}
.hero-bg picture {
  display: contents;
}

.hero-logo {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo img {
  max-width: min(700px, 80vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

/* Hero Blur-to-Sharp Reveal */
.hero-blur-reveal img {
  animation: heroBlurReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes heroBlurReveal {
  0% { filter: blur(20px) drop-shadow(0 4px 24px rgba(0,0,0,0.5)); opacity: 0; transform: scale(0.95); }
  40% { filter: blur(8px) drop-shadow(0 4px 24px rgba(0,0,0,0.5)); opacity: 0.6; }
  100% { filter: blur(0px) drop-shadow(0 4px 24px rgba(0,0,0,0.5)); opacity: 1; transform: scale(1); }
}

/* Hero Logo Glitch Effect */
.hero-logo img.glitch-active {
  animation: logo-glitch 1s steps(1) forwards !important;
}
@keyframes logo-glitch {
  0%   { transform: scale(1); filter: blur(0) drop-shadow(0 0 40px rgba(204, 255, 0, 0.1)); }
  5%   { transform: translate(-6px, 2px) skewX(-3deg); filter: blur(0) drop-shadow(5px 0 0 rgba(204, 255, 0, 0.8)) drop-shadow(-5px 0 0 rgba(255, 0, 80, 0.6)); }
  10%  { transform: translate(4px, -3px) skewX(2deg); filter: blur(1px) drop-shadow(-4px 0 0 rgba(204, 255, 0, 0.7)) drop-shadow(4px 0 0 rgba(0, 150, 255, 0.5)); }
  15%  { transform: translate(0, 4px) scaleX(1.03); filter: blur(0) drop-shadow(0 0 40px rgba(204, 255, 0, 0.1)); }
  20%  { transform: translate(-3px, -2px) skewX(-2deg); filter: blur(2px) drop-shadow(6px 0 0 rgba(255, 0, 80, 0.7)) drop-shadow(-6px 0 0 rgba(204, 255, 0, 0.7)); }
  25%  { transform: translate(5px, 1px) skewX(3deg); filter: blur(0) drop-shadow(-3px 0 0 rgba(0, 150, 255, 0.6)); }
  30%  { transform: translate(-2px, 0) scaleX(0.97); filter: blur(1px) drop-shadow(4px 0 0 rgba(204, 255, 0, 0.9)); }
  35%  { transform: translate(3px, -1px); filter: blur(0) drop-shadow(0 0 40px rgba(204, 255, 0, 0.1)); }
  40%  { transform: translate(-1px, 1px); filter: blur(0) drop-shadow(0 0 40px rgba(204, 255, 0, 0.1)); }
  100% { transform: scale(1); filter: blur(0) drop-shadow(0 4px 24px rgba(0,0,0,0.5)); opacity: 1; }
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.8s 2s forwards;
}
.hero-scroll-hint .hero-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s infinite;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4), 0 0 20px rgba(var(--primary-rgb), 0.15);
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

/* --- Glitch Effect for Hero Logo --- */
.glitch-container { position: relative; display: inline-block; }
.glitch-container::before,
.glitch-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0;
}
.glitch-container:hover::before {
  animation: glitch1 0.3s linear;
  opacity: 0.7;
  filter: hue-rotate(90deg);
}
.glitch-container:hover::after {
  animation: glitch2 0.3s linear;
  opacity: 0.7;
  filter: hue-rotate(-90deg);
}

/* --- Section Divider (Neon Line) --- */
.section-divider {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: visible;
  padding: 0;
}
.section-divider .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4), 0 0 20px rgba(var(--primary-rgb), 0.2);
  animation: neonPulseGlow 3s ease-in-out infinite;
}
@keyframes neonPulseGlow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3), 0 0 20px rgba(var(--primary-rgb), 0.15); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.6), 0 0 30px rgba(var(--primary-rgb), 0.3); }
}

/* --- About Section --- */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-stat-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  background: rgba(var(--primary-rgb), 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
  text-align: center;
}
.about-stat-card .stat-value {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
}
.about-stat-card .stat-value .suffix { color: var(--primary); }
.about-stat-card .stat-label {
  font-size: 10px;
  color: var(--primary);
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-badge {
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  background: rgba(var(--primary-rgb), 0.05);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-badge-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(var(--primary-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-badge-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.about-badge-text {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ============================================================
   ABOUT – 3D Platform Scene
   ============================================================ */

/* Agency Heading — matches ROSTER/SERVICES style */
.agency-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.agency-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.agency-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}
/* Unified section title — same size as agency-title */
.section-title-lg {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

/* ===== STAGE SCENE — 3-column: boxes | fluffy on chair | boxes ===== */
.stage-scene {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  padding: 2rem 1rem;
  overflow: visible;
}

/* Ambient glow */
.stage-glow {
  position: absolute;
  width: 700px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(204, 255, 0, 0.08) 0%, rgba(204, 255, 0, 0.03) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: stageGlowPulse 4s ease-in-out infinite;
}
@keyframes stageGlowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* ===== SERVICE COLUMNS — left & right ===== */
.stage-col {
  display: flex;
  flex-direction: column;
  max-width: 220px;
  gap: 0.75rem;
  z-index: 2;
  position: relative;
}

/* ===== CENTER — Fluffy on Chair ===== */
.stage-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  position: relative;
  padding-bottom: 1rem;
}
/* chair removed — combined into fluffy-chair.png */

/* ===== SPEECH BUBBLE ===== */
.speech-bubble {
  position: absolute;
  z-index: 15;
  max-width: 260px;
  min-width: 200px;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50px;
  top: -10%;
  right: -90%;
  left: auto;
  transform: scale(0);
  transform-origin: 0% 80%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 40px rgba(204, 255, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}
.speech-bubble.visible {
  opacity: 1;
  transform: scale(1);
  animation: bubblePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes bubblePop {
  0% { transform: scale(0) rotate(-8deg); opacity: 0; }
  50% { transform: scale(1.08) rotate(1deg); }
  70% { transform: scale(0.97) rotate(-0.5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.speech-text {
  font-size: 0.72rem;
  color: #2a2a2a;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-style: italic;
}
.speech-text .cursor {
  display: inline-block;
  width: 2.5px;
  height: 1em;
  background: #CCFF00;
  margin-left: 2px;
  animation: blink 0.5s step-end infinite;
  vertical-align: text-bottom;
  border-radius: 1px;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
/* Tail — cloud dots pointing LEFT toward Fluffy */
.speech-tail {
  position: absolute;
  top: 65%;
  left: -28px;
  width: 30px;
  height: 24px;
  overflow: visible;
}
.speech-tail::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  top: 0;
  left: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.speech-tail::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 10px;
  left: -2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* ===== FLUFFY — sitting on chair ===== */
.stage-fluffy {
  position: relative;
  z-index: 5;
}
.stage-fluffy .fluffy-img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 16px 50px rgba(0, 0, 0, 0.7))
         drop-shadow(0 0 30px rgba(204, 255, 0, 0.1))
         drop-shadow(0 -4px 20px rgba(204, 255, 0, 0.05));
}
/* ===== RED CTA BUTTON ===== */
.fluffy-cta-btn {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 1.6rem;
  background: linear-gradient(135deg, #ff3355 0%, #ff0040 50%, #cc0033 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 24px;
  text-decoration: none;
  z-index: 10;
  box-shadow:
    0 0 20px rgba(255, 0, 64, 0.5),
    0 0 50px rgba(255, 0, 64, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  /* kein pulse-animation — kollidiert mit translateX */
  border: 1px solid rgba(255, 100, 130, 0.3);
}
.fluffy-cta-btn::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 10%;
  right: 10%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
  border-radius: 24px 24px 50% 50%;
  pointer-events: none;
}
.fluffy-cta-btn:hover {
  transform: translateX(-50%) scale(1.05) translateY(-2px);
  box-shadow:
    0 0 30px rgba(255, 0, 64, 0.7),
    0 0 70px rgba(255, 0, 64, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.fluffy-cta-glow {
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  background: radial-gradient(ellipse, rgba(255, 0, 64, 0.25) 0%, transparent 70%);
  filter: blur(12px);
  z-index: -1;
  animation: ctaGlowPulse 2s ease-in-out infinite alternate;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 64, 0.5), 0 0 50px rgba(255, 0, 64, 0.2), 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 0, 64, 0.7), 0 0 70px rgba(255, 0, 64, 0.35), 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}
@keyframes ctaGlowPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* ===== SERVICE NODE — Neon yellow border + 3D ===== */
.service-node {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(12, 12, 12, 0.95));
  border: 1px solid rgba(204, 255, 0, 0.3);
  border-radius: 10px;
  max-width: 220px;
  position: relative;
  transition: all 0.35s ease;
  cursor: default;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 12px rgba(204, 255, 0, 0.06),
    inset 0 0 8px rgba(204, 255, 0, 0.02);
  /* Fly-in: hidden by default, animated in */
  opacity: 0;
  transform: translate(0, 0) rotate(0deg) scale(0.5);
}
/* 8 fly-in start positions (before scroll trigger) */
.stage-col-left .service-node:nth-child(1) { transform: translate(-200px, -150px) rotate(-180deg) scale(0.3); }
.stage-col-left .service-node:nth-child(2) { transform: translate(-250px, 0) rotate(120deg) scale(0.3); }
.stage-col-left .service-node:nth-child(3) { transform: translate(-200px, 150px) rotate(-90deg) scale(0.3); }
.stage-col-left .service-node:nth-child(4) { transform: translate(-150px, 250px) rotate(200deg) scale(0.3); }
.stage-col-right .service-node:nth-child(1) { transform: translate(200px, -150px) rotate(180deg) scale(0.3); }
.stage-col-right .service-node:nth-child(2) { transform: translate(250px, 0) rotate(-120deg) scale(0.3); }
.stage-col-right .service-node:nth-child(3) { transform: translate(200px, 150px) rotate(90deg) scale(0.3); }
.stage-col-right .service-node:nth-child(4) { transform: translate(150px, 250px) rotate(-200deg) scale(0.3); }
/* fly-in end state */
.stage-col-left .service-node.fly-in,
.stage-col-right .service-node.fly-in {
  opacity: 1 !important;
  transform: translate(0, 0) rotate(0deg) scale(1) !important;
}
/* Transition for fly-in */
.service-node {
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.35s ease,
              background 0.35s ease,
              box-shadow 0.35s ease;
}
/* Stagger delays */
.stage-col-left .service-node:nth-child(1) { transition-delay: 0s; }
.stage-col-left .service-node:nth-child(2) { transition-delay: 0.08s; }
.stage-col-left .service-node:nth-child(3) { transition-delay: 0.16s; }
.stage-col-left .service-node:nth-child(4) { transition-delay: 0.24s; }
.stage-col-right .service-node:nth-child(1) { transition-delay: 0.04s; }
.stage-col-right .service-node:nth-child(2) { transition-delay: 0.12s; }
.stage-col-right .service-node:nth-child(3) { transition-delay: 0.20s; }
.stage-col-right .service-node:nth-child(4) { transition-delay: 0.28s; }

.service-node:hover {
  border-color: rgba(204, 255, 0, 0.7);
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.98));
  box-shadow:
    0 8px 30px rgba(204, 255, 0, 0.15),
    0 0 0 1px rgba(204, 255, 0, 0.25),
    0 0 20px rgba(204, 255, 0, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px) scale(1.03);
}
.service-node:hover .service-node-num {
  color: rgba(204, 255, 0, 0.95);
  text-shadow: 0 0 12px rgba(204, 255, 0, 0.4);
}

.service-node-num {
  font-family: 'Inter', monospace;
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(204, 255, 0, 0.65);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s, text-shadow 0.3s;
  user-select: none;
}
.service-node-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.8);
  letter-spacing: 0.01em;
  transition: color 0.3s;
  line-height: 1.35;
}
.service-node:hover .service-node-name {
  color: var(--foreground);
}

/* --- Services Section --- */
.service-card {
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(var(--primary-rgb), 0.15);
}
.service-card .icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.service-card p:last-child { margin-bottom: 0; }

/* Service Card Sub-Labels (Was wir tun / Für wen / Dein Vorteil) */
.svc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  border-left: 2px solid currentColor;
}
.svc-was { color: #CCFF00; }    /* Apfel-Neongrün – Agency Primary */
.svc-fuer { color: #6CFF00; }   /* Neon Grün – Records */
.svc-vorteil { color: #00FF6C; } /* Neon Mint – Store */

/* --- Services Grid (6 Cards): Desktop 3 pro Zeile, 2 Zeilen --- */
.services-grid.services-desktop-only {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}

/* --- Mobile Services: default hidden on desktop --- */
.services-mobile-grid {
  display: none;
}

/* Mobile Service Cards */
.svc-mobile-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(223,255,0,0.12);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.svc-mobile-card .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(223,255,0,0.1);
  border: 1px solid rgba(223,255,0,0.25);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.svc-mobile-card .icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}
.svc-mobile-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.svc-mobile-card .svc-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
  border-left: 2px solid;
}
.svc-mobile-card .svc-was { color: #CCFF00; border-color: #CCFF00; }
.svc-mobile-card .svc-vorteil { color: #00FF6C; border-color: #00FF6C; }
.svc-mobile-card p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted-foreground);
  margin-bottom: 0.6rem;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.svc-mobile-card p:last-child { margin-bottom: 0; }

/* Tablet-Break: default hidden, nur auf Tablet sichtbar */
.tablet-break { display: none; }
.roster-sub-line2 { display: inline; }

/* --- Roster Exclusive Grid (4 Artists) --- */
.roster-exclusive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.services-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
}
.services-cta-btn:hover { background: rgba(var(--primary-rgb), 0.1); }
.services-cta-btn svg { width: 1.25rem; height: 1.25rem; }

/* --- Roster Section --- */
.roster-label-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.roster-label-bar .line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(var(--primary-rgb), 0.3), transparent);
}
.roster-label-bar span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.roster-label-bar.exclusive span { color: var(--primary); }
.roster-label-bar.bookable span { color: var(--muted-foreground); }
.roster-label-bar.bookable .line { background: linear-gradient(to right, transparent, var(--border), transparent); }

/* Non-Exclusive Roster stacked label */
.roster-label-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.roster-label-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary) !important;
}
.roster-label-stack > span:last-child {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--foreground);
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.5s;
  border: 1px solid rgba(var(--border), 0.4);
}
.artist-card:hover,
.artist-card.selected { border-color: rgba(var(--primary-rgb), 0.4); }
.artist-card.selected { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.25); }

.artist-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.artist-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.7s;
}
.artist-card:hover .img-wrap img,
.artist-card.tapped .img-wrap img {
  filter: grayscale(1) blur(2px);
  transform: scale(1.05);
}

.artist-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.artist-card:hover .overlay,
.artist-card.tapped .overlay { opacity: 1; }

.artist-card .overlay h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.artist-card .overlay .pitch {
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.artist-card .overlay .booking-info {
  margin-bottom: 1rem;
}
.artist-card .overlay .booking-info p {
  font-size: 0.75rem;
}
.artist-card .overlay .booking-info .label {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.artist-card .overlay .booking-info .value {
  color: rgba(var(--primary-rgb), 0.8);
}

.artist-card .overlay .btn-row {
  display: flex;
  gap: 0.5rem;
}
.artist-card .overlay .btn-select,
.artist-card .overlay .btn-request {
  flex: 1;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  text-align: center;
}
.artist-card .overlay .btn-select {
  background: rgba(255,255,255,0.06);
  color: var(--muted-foreground);
  border: 1px solid rgba(255,255,255,0.1);
}
.artist-card .overlay .btn-select:hover,
.artist-card .overlay .btn-select.selected {
  border-color: rgba(var(--primary-rgb), 0.4);
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
}
.artist-card .overlay .btn-request {
  background: var(--primary-btn);
  color: var(--primary-foreground);
  border: none;
  box-shadow: var(--primary-glow);
}
.artist-card .overlay .btn-request:hover { opacity: 0.92; box-shadow: 0 0 24px rgba(204, 255, 0, 0.35); }

.artist-card .check-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.artist-card .check-badge svg { width: 1rem; height: 1rem; color: var(--primary-foreground); }

.artist-card .card-footer {
  background: rgba(20,20,20,0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 1rem;
}
.artist-card .card-footer h4 {
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist-card .card-footer .genre {
  color: var(--muted-foreground);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist-card .card-footer .category {
  color: rgba(var(--primary-rgb), 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* No-image placeholder (z.B. NØNE) */
.artist-card .img-wrap .no-img-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.artist-card .img-wrap .no-img-placeholder span {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(var(--primary-rgb), 0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
}
.artist-card.small .img-wrap .no-img-placeholder span {
  font-size: 0.9rem;
}

/* Artist card sizes */
.artist-card.large .overlay h4 { font-size: 1.25rem; }
.artist-card.large .overlay .pitch { font-size: 0.875rem; }
.artist-card.large .overlay { padding: 1.5rem; }
.artist-card.large .card-footer h4 { font-size: 1rem; }
.artist-card.large .card-footer .category { font-size: 10px; }

.artist-card.small .overlay h4 { font-size: 0.875rem; }
.artist-card.small .overlay .pitch { font-size: 0.75rem; }
.artist-card.small .card-footer { padding: 0.5rem 0.75rem; }
.artist-card.small .card-footer h4 { font-size: 0.75rem; }
.artist-card.small .card-footer .category { font-size: 9px; }

/* Bookable grid: Desktop 5 pro Zeile, Tablet/Mobile 3 pro Zeile */
.roster-bookable-grid .artist-card.small,
.roster-bookable-grid .artist-placeholder {
  width: calc(20% - 0.8rem);
}
@media (max-width: 1023px) {
  .roster-bookable-grid .artist-card.small,
  .roster-bookable-grid .artist-placeholder {
    width: calc(33.333% - 0.667rem);
  }
}

/* Placeholder (TBA) */
.artist-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0.5;
}
.artist-placeholder .inner {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-placeholder .tba-label {
  color: rgba(161,161,170,0.4);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.artist-placeholder .tba-sub {
  color: rgba(161,161,170,0.3);
  margin-top: 0.5rem;
}
.artist-placeholder .ph-footer {
  background: rgba(20,20,20,0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.artist-placeholder .ph-footer h4 { color: rgba(161,161,170,0.4); font-weight: 700; }
.artist-placeholder .ph-footer p { color: rgba(161,161,170,0.3); text-transform: uppercase; letter-spacing: 0.1em; }

/* Center booking banner */
.roster-center-banner {
  text-align: center;
  padding: 2.5rem 0;
  margin-bottom: 3rem;
}
.roster-center-banner h3 {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.roster-center-banner .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}
.roster-center-banner .links button {
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s;
}
.roster-center-banner .links button:hover { color: rgba(var(--primary-rgb), 0.8); }
.roster-center-banner .sep { color: var(--border); }

/* Selected artists bar */
.selected-bar {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.selected-bar .label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}
.selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}
.selected-chip button { transition: color 0.2s; }
.selected-chip button:hover { color: var(--foreground); }
.selected-bar .request-btn {
  margin-left: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: var(--primary-btn);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  box-shadow: var(--primary-glow);
}
.selected-bar .request-btn:hover { opacity: 0.9; }

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}

.contact-info {
  max-width: 280px;
}
.contact-info .icon-wrap {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-info .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-info h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-info .desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; }
.contact-info .links { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-info .links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.contact-info .links a:hover { color: var(--primary); }
.contact-info .links a svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.contact-guarantee {
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.05);
}
.contact-guarantee .header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-guarantee .header svg { width: 1rem; height: 1rem; color: var(--primary); margin-top: 0.125rem; flex-shrink: 0; }
.contact-guarantee .title { color: var(--primary); font-weight: 600; font-size: 0.75rem; margin-bottom: 0.25rem; }
.contact-guarantee .text { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.5; }
.contact-guarantee .text strong { color: var(--foreground); font-weight: 500; }
.contact-guarantee .phones {
  margin-top: 0.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.contact-guarantee .phones a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--foreground);
  transition: color 0.3s;
}
.contact-guarantee .phones a:hover { color: var(--primary); }
.contact-guarantee .phones a svg { width: 0.75rem; height: 0.75rem; }

/* Form */
.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus { border-color: rgba(var(--primary-rgb), 0.5); }
.form-input::placeholder { color: rgba(161,161,170,0.5); }

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1aa' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
select.form-input option { background: var(--card); color: var(--foreground); }

textarea.form-input { resize: none; min-height: 120px; }

.custom-checkbox {
  appearance: none;
  width: 1rem; height: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.custom-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-checkbox:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--primary-foreground);
  font-weight: 700;
}

.form-submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--primary-btn);
  color: var(--primary-foreground);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--primary-glow);
  transition: opacity 0.3s;
  border: none;
}
.form-submit-btn:hover { opacity: 0.9; }
.form-submit-btn svg { width: 1rem; height: 1rem; }

.booking-artist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.booking-artist-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: var(--muted-foreground);
}
.booking-artist-label:hover { border-color: rgba(var(--primary-rgb), 0.3); color: var(--foreground); }
.booking-artist-label.checked {
  background: rgba(var(--primary-rgb), 0.15);
  border-color: rgba(var(--primary-rgb), 0.4);
  color: var(--primary);
}
.booking-artist-label span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
}
.form-success svg { width: 4rem; height: 4rem; color: var(--primary); margin-bottom: 1rem; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--muted-foreground); }

/* --- Footer --- */
.site-footer {
  position: relative;
}
.site-footer .top-gleam {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(var(--primary-rgb), 0.5), transparent);
}
.footer-glass {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2rem;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-glass .reflections {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-glass .reflections .top-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
}
.footer-glass .reflections .center-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.02);
  filter: blur(150px);
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-activated-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.footer-activated-logo img {
  height: 1.8rem;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.footer-activated-logo:hover img {
  opacity: 1;
}

.footer-brands {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand-circle {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(161,161,170,0.2);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
}
.footer-brand-link:hover .footer-brand-circle {
  border-color: rgba(var(--primary-rgb), 0.6);
  box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.35);
}
.footer-brand-circle img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.footer-brand-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.footer-brand-link:hover .footer-brand-label { color: var(--primary); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.footer-social a {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(161,161,170,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s;
}
.footer-social a:hover {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.6);
  box-shadow: 0 0 14px rgba(var(--primary-rgb), 0.3);
}
.footer-social a svg { width: 1rem; height: 1rem; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  font-size: 10px;
  color: var(--muted-foreground);
  letter-spacing: 0.15em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--primary); }

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(161,161,170,0.6);
  letter-spacing: 0.05em;
}

/* --- Newsletter Popup --- */
.nl-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nl-backdrop.visible { opacity: 1; pointer-events: all; }

.nl-popup-wrap {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s;
  pointer-events: none;
}
.nl-popup-wrap.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.nl-popup-inner {
  display: flex;
  align-items: flex-end;
  gap: 0;
  max-width: 38rem;
  width: 100%;
  position: relative;
}
.nl-fluffy {
  width: 10.5rem;
  height: auto;
  margin-right: -1.5rem;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.2));
  align-self: flex-end;
}
.nl-popup-inner .content {
  flex: 1;
  position: relative;
  border-color: rgba(var(--primary-rgb), 0.2);
}
.nl-close {
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.nl-close:hover { color: var(--foreground); }
.nl-close svg { width: 1.25rem; height: 1.25rem; }

.nl-form {
  display: flex;
  gap: 0.5rem;
}
.nl-form input { flex: 1; padding: 0.625rem 0.875rem; font-size: 0.875rem; }
.nl-form button {
  padding: 0.625rem 1.25rem;
  background: var(--primary-btn);
  color: var(--primary-foreground);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.3s;
  white-space: nowrap;
  box-shadow: var(--primary-glow);
}
.nl-form button:hover { opacity: 0.92; box-shadow: 0 0 24px rgba(204, 255, 0, 0.35); }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s;
  pointer-events: none;
}
.back-to-top:hover {
  border-color: rgba(var(--primary-rgb), 0.6);
  color: var(--primary);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top svg { width: 1.25rem; height: 1.25rem; }

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes glitch1 {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
  25% { clip-path: inset(7% 0 72% 0); transform: translate(2px, 2px); }
  50% { clip-path: inset(55% 0 20% 0); transform: translate(-1px, 1px); }
  75% { clip-path: inset(25% 0 45% 0); transform: translate(1px, -1px); }
  100% { clip-path: inset(80% 0 5% 0); transform: translate(0); }
}

@keyframes glitch2 {
  0% { clip-path: inset(25% 0 58% 0); transform: translate(2px, 2px); }
  25% { clip-path: inset(45% 0 30% 0); transform: translate(-2px, -1px); }
  50% { clip-path: inset(10% 0 65% 0); transform: translate(1px, -2px); }
  75% { clip-path: inset(60% 0 15% 0); transform: translate(-1px, 1px); }
  100% { clip-path: inset(35% 0 42% 0); transform: translate(0); }
}

/* Reveal animation (used with IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scaleX(1);
}

/* --- Utility --- */
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }

/* ============================================================
   MOBILE HEADER + BURGER + OVERLAY
   ============================================================ */
.mobile-header {
  display: none; /* nur per Media Query ≤1024px sichtbar */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 1100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.mobile-header-logo img {
  height: 28px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Language Switch (im Burger-Overlay) */
.mobile-menu-lang {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.mobile-lang-btn {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(161, 161, 170, 0.6);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-lang-btn.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
}

/* Burger Button */
.burger-btn {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.mobile-menu-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: color 0.2s;
}
.mobile-menu-nav a:hover {
  color: var(--primary);
}
.mobile-menu-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}
.mobile-menu-ext {
  font-size: 0.9rem !important;
  color: rgba(161, 161, 170, 0.5) !important;
  font-weight: 600 !important;
}

/* Hero enhancement styles removed — now using blur-to-sharp reveal */

/* ============================================================
   COOKIE BANNER (DSGVO/TTDSG konform) – Network Style
   ============================================================ */

.cookie-shield {
  color: rgba(161, 161, 170, 0.7);
  transition: all 0.3s;
  background: none;
  border: none;
  padding: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-shield:hover {
  color: var(--primary, #CCFF00);
}
.cookie-shield svg {
  width: 1rem;
  height: 1rem;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cookie-banner.visible {
  opacity: 1;
}

.cookie-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cookie-banner__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s ease;
}
.cookie-banner.visible .cookie-banner__panel {
  transform: translateY(0) scale(1);
}
@media (min-width: 768px) {
  .cookie-banner__panel { padding: 2rem; }
}

.cookie-banner__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.cookie-banner__logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .cookie-banner__logo-img { height: 3rem; }
}

.cookie-banner__desc {
  font-size: 0.75rem;
  color: rgba(161, 161, 170, 0.7);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .cookie-banner__desc { font-size: 0.8125rem; }
}

.cookie-banner__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.cookie-category__info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}
.cookie-category__name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}
.cookie-category__desc {
  font-size: 0.625rem;
  color: rgba(161, 161, 170, 0.5);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .cookie-category__name { font-size: 0.8125rem; }
  .cookie-category__desc { font-size: 0.6875rem; }
}

.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle__track {
  display: block;
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  position: relative;
  transition: background 0.3s;
}
.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(161, 161, 170, 0.7);
  transition: transform 0.3s, background 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle__track {
  background: rgba(204, 255, 0, 0.3);
}
.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(16px);
  background: var(--primary, #CCFF00);
}
.cookie-toggle input:disabled + .cookie-toggle__track {
  opacity: 0.5;
  cursor: default;
}
.cookie-toggle input:disabled:checked + .cookie-toggle__track {
  opacity: 0.7;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cookie-btn {
  width: 100%;
  padding: 0.625rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-btn { font-size: 0.6875rem; }
}
.cookie-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(161, 161, 170, 0.7);
}
.cookie-btn--outline:hover {
  border-color: rgba(204, 255, 0, 0.4);
  color: #ffffff;
}
.cookie-btn--primary {
  background: rgba(204, 255, 0, 0.15);
  border: 1px solid rgba(204, 255, 0, 0.4);
  color: var(--primary, #CCFF00);
}
.cookie-btn--primary:hover {
  background: rgba(204, 255, 0, 0.25);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.cookie-banner__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
}
.cookie-banner__links a {
  color: rgba(161, 161, 170, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.cookie-banner__links a:hover,
.cookie-banner__link-btn:hover {
  color: var(--primary, #CCFF00);
}
.cookie-banner__link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: rgba(161, 161, 170, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}

/* ============================================================
   PREMIUM CTA BLOCK (after Services)
   ============================================================ */
.premium-cta-block {
  margin-top: 3rem;
}
.premium-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  background: rgba(var(--primary-rgb), 0.03);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.premium-cta-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.premium-cta-text p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.premium-cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.premium-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-btn);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  border-radius: 0.5rem;
  text-transform: uppercase;
  box-shadow: var(--primary-glow);
  transition: all 0.3s ease;
}
.premium-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.4), 0 4px 16px rgba(var(--primary-rgb), 0.2);
}
.premium-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  border-radius: 0.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.premium-cta-secondary:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
}

/* ============================================================
   NEWSLETTER INLINE (before Footer)
   ============================================================ */
.newsletter-inline {
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.newsletter-inline-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inline-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.newsletter-inline-text p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}
.newsletter-inline-form {
  display: flex;
  gap: 0.5rem;
  max-width: 24rem;
  margin: 0 auto;
}
.newsletter-inline-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground);
  font-size: 0.8rem;
}
.newsletter-inline-form button {
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--primary-btn);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter-inline-form button:hover {
  opacity: 0.9;
}

/* ============================================================
   MOBILE SERVICE TEASERS (nur ≤1024px)
   ============================================================ */
.mobile-teasers {
  display: none; /* nur per Media Query sichtbar */
}
.mobile-teaser-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.3s;
}
.mobile-teaser-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
}
.teaser-content {
  flex: 1;
  min-width: 0;
}
.mobile-teaser-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.2rem;
}
.mobile-teaser-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}
.teaser-arrow {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.teaser-arrow:hover {
  transform: translateX(3px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  /* Services: Desktop-Boxen ausblenden, Mobile-Boxen zeigen */
  .services-desktop-only { display: none !important; }
  .services-mobile-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { max-width: none; }
  .booking-artist-grid { grid-template-columns: repeat(3, 1fr); }
  /* Exclusive: 2 pro Zeile auf Tablet */
  .roster-exclusive-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Tablet: Side-Nav bleibt sichtbar wie Desktop */
@media (max-width: 1024px) and (min-width: 768px) {
  .mobile-teasers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    max-width: 60rem;
    margin: 0 auto;
  }

  /* === FIX #1: Services — 3 Boxen in einer Reihe auf Tablet === */
  .services-mobile-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem;
  }
  .svc-mobile-card {
    padding: 1rem;
  }
  .svc-mobile-card h3 {
    font-size: 0.95rem;
  }
  .svc-mobile-card p {
    font-size: 0.8rem;
  }
  .svc-mobile-card .svc-label {
    font-size: 0.55rem;
  }

  /* === FIX #1: Premium CTA — zentriert, kompakt unter den 3 Service-Boxen === */
  .premium-cta-inner {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  .premium-cta-buttons {
    justify-content: center;
  }

  /* === FIX #2: Roster Heading — 2 Zeilen auf Tablet === */
  .tablet-break {
    display: inline;
  }
  .roster-sub-line2 {
    display: block;
    margin-top: 0.25rem;
  }

  /* === FIX #3: Kontakt & Booking — kompakte Card auf Tablet === */
  #contact {
    padding: 3rem 1rem !important;
  }
  #contact > div {
    max-width: 580px;
    margin: 0 auto;
  }
  #contact .reveal[style*="text-align:center"] {
    margin-bottom: 2rem !important;
  }
  #contact h2[data-i18n="contact_title"] {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.5rem !important;
  }
  #contact p[data-i18n="contact_sub"] {
    font-size: 0.85rem;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    max-width: 580px;
    margin: 0 auto;
    gap: 1rem;
  }
  .contact-info {
    max-width: 580px !important;
    padding: 1.5rem !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
  }
  .contact-info .icon-wrap {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .contact-info .icon-wrap svg {
    width: 1rem;
    height: 1rem;
  }
  .contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.375rem;
  }
  .contact-info .desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .contact-info .links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem 1.25rem;
    margin-bottom: 1rem;
  }
  .contact-info .links a {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .contact-info .links a svg {
    width: 0.875rem;
    height: 0.875rem;
  }
  .contact-guarantee {
    padding: 0.625rem 0.75rem;
    border-radius: 0.625rem;
  }
  .contact-guarantee .phones {
    flex-direction: row;
    gap: 1rem;
  }
  /* Form Panel: kompakte Card */
  .contact-grid .glass-panel:last-child {
    max-width: 580px;
    margin: 0 auto;
    padding: 1.5rem !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
  }
  .contact-grid .glass-panel:last-child h3,
  .contact-grid .glass-panel:last-child label {
    font-size: 0.8rem;
  }
  .form-input {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .contact-grid .glass-panel:last-child button[type="submit"],
  .contact-grid .glass-panel:last-child .submit-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  /* Mobile Teasers: 1 Spalte, tighter */
  .mobile-teasers {
    grid-template-columns: 1fr;
    max-width: 28rem;
    padding: 1rem 1rem 0.5rem;
    gap: 0.5rem;
  }
  /* Language Switcher + Cookie Shield: inline row on mobile */
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.5rem;
  }
  .lang-flag-btn {
    padding: 0.4rem;
    min-height: 36px;
    min-width: 36px;
  }
  .cookie-shield {
    padding: 0.3rem;
    min-width: 36px;
    min-height: 36px;
  }
  .cookie-shield svg {
    width: 1.1rem;
    height: 1.1rem;
  }
  /* Cookie Banner Buttons Touch-Target */
  .cookie-btn,
  .cookie-btn--outline,
  .cookie-btn--primary,
  .splash-cookie-btn,
  .splash-cookie-btn.splash-accept {
    min-height: 44px;
    min-width: 120px;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
  /* About Mobile Optimierung */
  #about { padding: 2.5rem 0.75rem !important; }
  #about .glass-panel { padding: 1rem 1rem !important; }
  .about-badge { display: none; }
  .fluffy-img { max-width: 180px !important; }
  .booking-artist-grid { grid-template-columns: repeat(2, 1fr); }
  /* Artist-Namen nicht abschneiden auf Mobile */
  .artist-card .card-footer h4 {
    white-space: normal;
    line-height: 1.2;
    min-height: 2.2em;
    overflow: visible;
    text-overflow: unset;
  }
  /* Side-Nav bleibt sichtbar auf Mobile — kein Hamburger */
  /* .footer-trennbalken .line entfernt — PNG hat eigene Linien */
  .footer-brands { gap: 2.5rem; }
  .footer-brand-circle { width: 3rem; height: 3rem; }
  .footer-brand-circle img { width: 2.2rem; height: 2.2rem; }
  .footer-brand-label { font-size: 9px; letter-spacing: 0.12em; }
  /* Services Mobile: 1 Spalte */
  .services-mobile-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }
  .svc-mobile-card { padding: 1.25rem; }
  /* Exclusive: 2 pro Zeile auf Mobile */
  .roster-exclusive-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* Services Section: tighter padding */
  #services { padding: 3rem 0.75rem !important; }
  #services .reveal { margin-bottom: 2rem !important; }
  /* Premium CTA mobil */
  .premium-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  .premium-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .premium-cta-primary,
  .premium-cta-secondary { width: 100%; justify-content: center; }
  /* Newsletter inline mobil */
  .newsletter-inline-form {
    flex-direction: column;
    max-width: 100%;
  }
  /* Section Dividers enger */
  .section-divider { padding: 1.5rem 0; }
  /* Roster/Contact padding */
  #roster { padding: 3rem 0.75rem !important; }
  #contact { padding: 3rem 0.75rem !important; }
  /* Footer Social: 2 Reihen auf Mobile */
  .footer-social { flex-wrap: wrap; justify-content: center; gap: 0.6rem; max-width: 280px; margin-left: auto; margin-right: auto; }
  .footer-social a { width: 2.5rem; height: 2.5rem; }
  .footer-social a svg { width: 1rem; height: 1rem; }
  /* Footer Legal: 2x2 Grid auf Mobile */
  .footer-legal { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem; text-align: center; }
  .footer-legal a { font-size: 10px; }
  /* Footer Glass: weniger Padding auf Mobile */
  .footer-glass { padding: 2.5rem 0 1.5rem; }
  .footer-activated-logo img { height: 1.4rem; }
  .footer-activated-logo { margin-bottom: 1.5rem; }
  .footer-brands { margin-bottom: 2rem; }
  /* Footer Copyright: Platz für Scroll-to-Top Button */
  .footer-copyright { padding-bottom: 1rem; text-align: center; }
  /* Artist Card Overlay: kompakter auf Mobile */
  .artist-card .overlay { padding: 0.6rem; }
  .artist-card .overlay h4 { font-size: 0.75rem; margin-bottom: 0.25rem; }
  /* Exclusive: Pitch-Text ausblenden auf Mobile (zu wenig Platz) */
  .artist-card.large .overlay .pitch { display: none; }
  .artist-card.small .overlay .pitch { font-size: 0.6rem; margin-bottom: 0.3rem; line-height: 1.2; }
  .artist-card .overlay .booking-info { margin-bottom: 0.5rem; }
  .artist-card .overlay .booking-info p { font-size: 0.6rem; }
  .artist-card .overlay .booking-info .label { font-size: 0.6rem; letter-spacing: 0.05em; }
  .artist-card .overlay .booking-info .value { font-size: 0.6rem; }
  .artist-card .overlay .btn-row { flex-direction: column; gap: 0.3rem; }
  .artist-card .overlay .btn-select,
  .artist-card .overlay .btn-request { font-size: 0.6rem; padding: 0.4rem 0.4rem; letter-spacing: 0; }
  /* Genre voll ausschreiben auf Mobile, nicht abschneiden */
  .artist-card .card-footer .genre {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 9px;
    line-height: 1.2;
  }
  /* "AUF ANFRAGE VERFÜGBAR" kleiner */
  .artist-card .card-footer .category { font-size: 8px; letter-spacing: 0.05em; }
}

@media (min-width: 768px) {
  /* FIX #14: Tablet hero logo same size as desktop */
  .hero-logo img { max-width: min(700px, 80vw); height: auto; object-fit: contain; }
  .footer-activated-logo img { height: 2.2rem; }
  .footer-brand-circle { width: 4rem; height: 4rem; }
  .footer-brand-circle img { width: 2.75rem; height: 2.75rem; }
  .footer-brand-label { font-size: 0.75rem; }
  .footer-social a { width: 2.75rem; height: 2.75rem; }
  .footer-social a svg { width: 1.25rem; height: 1.25rem; }
  .about-stat-card .stat-value { font-size: 2.25rem; }
  /* Fluffy md: 320*1.2 = 384px */
  .fluffy-img { width: 384px; }
}

/* Mobile-Header und Overlay global ausblenden — Side-Nav überall */
.mobile-header { display: none !important; }
.mobile-menu-overlay { display: none !important; }
@media (min-width: 1025px) {
  /* Desktop: Teasers ausblenden */
  .mobile-teasers { display: none !important; }
}
@keyframes fadeInSubtle {
  to { opacity: 0.65; }
}

@media (min-width: 1024px) {
}

/* Stage: XL refinements */
@media (min-width: 1280px) {
  .stage-scene { gap: 1.5rem; }
  .stage-fluffy .fluffy-img { width: 340px; }
  .service-node { padding: 1.25rem 1.1rem; }
  .service-node-name { font-size: 0.88rem; }
  .service-node-num { font-size: 1.2rem; }
  .speech-bubble { max-width: 300px; right: -95%; top: -5%; }
  .fluffy-cta-btn { padding: 0.7rem 1.8rem; font-size: 0.82rem; right: -65%; left: auto; }
}

/* Stage: Tablet — alle 8 Boxen: 3+3+2, zentriert */
@media (max-width: 1023px) and (min-width: 768px) {
  .stage-scene {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  .stage-center { order: -1; width: 100%; }
  .stage-glow { display: none; }
  .stage-col-left,
  .stage-col-right {
    display: contents;
  }
  .service-node {
    flex: 0 0 calc(33.333% - 0.45rem);
    max-width: calc(33.333% - 0.45rem);
    box-sizing: border-box;
    padding: 0.75rem 0.65rem;
    min-height: 3.8rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: none !important;
    opacity: 1 !important;
  }
  .service-node.fly-in { transform: none !important; }
  .stage-fluffy .fluffy-img { width: 240px; }
  .service-node-name { font-size: 0.72rem; word-break: break-word; hyphens: auto; }
  .service-node-num { font-size: 0.9rem; min-width: 1.1rem; }
  .speech-bubble { max-width: 220px; right: -70%; top: -5%; padding: 0.75rem 0.9rem; min-width: 180px; }
  .speech-text { font-size: 0.65rem; }
  .fluffy-cta-btn { font-size: 0.62rem; padding: 0.5rem 1rem; }
  .agency-title { font-size: 2.25rem; }
  .section-title-lg { font-size: 2.25rem; }
}

/* Stage: Mobile — alle 8 Boxen in einem Grid: 3+3+2 */
@media (max-width: 767px) {
  .stage-scene {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    max-width: 100%;
    padding: 1rem 0.25rem;
  }
  .stage-center { order: -1; width: 100%; }
  .stage-glow { display: none; }
  /* Flatten left/right containers so their children participate in parent flex */
  .stage-col-left,
  .stage-col-right {
    display: contents;
  }
  /* Einheitliche Boxen-Breite: 3 pro Zeile */
  .service-node {
    flex: 0 0 calc(33.333% - 0.3rem);
    max-width: calc(33.333% - 0.3rem);
    box-sizing: border-box;
  }
  .stage-fluffy .fluffy-img { width: 190px; }
  .stage-glow { width: 280px; height: 240px; }
  .service-node {
    padding: 0.5rem 0.4rem;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Disable fly-in transforms on mobile */
    transform: none !important;
    opacity: 1 !important;
  }
  .service-node.fly-in { transform: none !important; }
  .service-node-name { font-size: 0.58rem; word-break: break-word; hyphens: auto; }
  .service-node-num { font-size: 0.75rem; min-width: 1rem; }
  .speech-bubble { max-width: 150px; min-width: 130px; padding: 0.45rem 0.6rem; right: -50%; top: -20%; }
  .speech-text { font-size: 0.52rem; }
  .fluffy-cta-btn { font-size: 0.52rem; padding: 0.35rem 0.7rem; }
  .agency-title { font-size: 2rem; }
  .section-title-lg { font-size: 2rem; }
  .agency-subtitle { font-size: 0.7rem; }

  /* Contact heading auf 1 Zeile */
  #contact h2[data-i18n="contact_title"] {
    font-size: 1.6rem !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap;
  }

  .footer-activated-logo img { height: 1.5rem; }
}

/* Ultra-Small Devices (iPhone SE, 320-374px) */
@media (max-width: 374px) {
  #about { padding: 2rem 0.5rem !important; }
  #about .glass-panel { padding: 0.75rem !important; }
  #services { padding: 2rem 0.5rem !important; }
  #roster { padding: 2rem 0.5rem !important; }
  #contact { padding: 2rem 0.5rem !important; }
  .premium-cta-inner { padding: 1rem; }
  .footer-glass { padding: 2rem 0 1rem; }
  .footer-brand-circle { width: 2.5rem; height: 2.5rem; }
  .footer-brand-circle img { width: 1.8rem; height: 1.8rem; }
  .stage-fluffy .fluffy-img { width: 160px; }
  .service-node-name { font-size: 0.5rem; }
}

/* ============================================================
   AGENCY STORY SUBPAGE
   ============================================================ */

/* Ambient Background Orbs */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}
.ambient-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat1 25s ease-in-out infinite;
}
.ambient-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00ccff, transparent 70%);
  bottom: -150px; right: -150px;
  animation: orbFloat2 30s ease-in-out infinite;
  opacity: 0.05;
}
.ambient-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 20s ease-in-out infinite;
  opacity: 0.06;
}
@keyframes orbFloat1 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(80px,60px); } }
@keyframes orbFloat2 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-60px,-40px); } }
@keyframes orbFloat3 { 0%,100%{ transform: translate(-50%,-50%); } 50%{ transform: translate(-40%,-40%); } }

/* Story Back Button */
.story-back-btn {
  position: fixed;
  top: 24px; left: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.story-back-btn:hover {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
}
.story-back-btn svg {
  width: 1rem; height: 1rem;
  transition: transform 0.3s;
}
.story-back-btn:hover svg { transform: translateX(-4px); }

/* Story Hero */
.story-hero {
  position: relative;
  z-index: 1;
  padding: 120px 1rem 40px;
  text-align: center;
}
.story-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.2;
  text-align: center;
}
.story-highlight {
  color: var(--primary);
  display: block;
  margin-top: 0.3rem;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.08em;
}

/* Story Panels Grid (2 Spalten) */
.story-panels-section {
  position: relative;
  z-index: 1;
  padding: 0 1rem 5rem;
}
.story-panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}
.story-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.story-panel:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 40px rgba(var(--primary-rgb), 0.05);
}
.story-panel-icon {
  width: 3.5rem; height: 3.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: rgba(var(--primary-rgb), 0.1);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}
.story-panel-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.story-panel-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.story-panel-content p {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.story-panel-content p:last-child { margin-bottom: 0; }

/* Story Footer (minimal) */
.story-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.story-footer p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}
.story-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.story-footer a:hover { text-decoration: underline; }

/* Responsive: Story Subpage */
@media (max-width: 900px) {
  .story-panels-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .story-back-btn { top: 16px; left: 16px; padding: 0.5rem 1rem; font-size: 0.75rem; }
  .story-hero { padding: 100px 1rem 24px; }
  .story-panel { padding: 1.75rem; }
  .story-panels-section { padding: 0 1rem 3rem; }
}
@media (max-width: 480px) {
  .story-panel { padding: 1.25rem; }
}
