/* ==========================================================================
   PIRSCHHEIDI & CO. - DESIGN SYSTEM & STYLES (HIGH PERFORMANCE EDITION)
   Masterminds: Frank Heck & Torsten Kuhn
   Optimized: GPU-accelerated transforms, zero-reflow animations, instant rendering
   ========================================================================== */

@font-face {
  font-family: 'Orbitron';
  src: url('assets/Orbitron-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core Backgrounds & UI */
  --bg-dark: #07090e;
  --bg-darker: #030508;
  --bg-card: rgba(18, 22, 32, 0.85);
  --bg-card-hover: rgba(24, 30, 46, 0.95);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glass-bright: rgba(255, 255, 255, 0.22);

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;

  /* ==========================================================================
     BRANDING FARBPALETTE (DEFINIERT DURCH FRANK & TORSTEN)
     1. Pirschheidi: Türkises Hellblau (Lebendig, frisch, modern, kultig)
     2. POTZDAMN: Dunkles Lila mit Magenta- & Pink-Effekten (Underground Club)
     3. sunphlour: Dunkles warmes Sommergelb bis -orange (Sunset Lounge)
     ========================================================================== */

  /* Universe 1: Pirschheidi */
  --pirsch-turquoise: #00d4ff;
  --pirsch-turquoise-bright: #38e1ff;
  --pirsch-glow: rgba(0, 212, 255, 0.35);
  --pirsch-soft: rgba(0, 212, 255, 0.14);
  --pirsch-border: rgba(0, 212, 255, 0.4);

  /* Universe 2: POTZDAMN */
  --potz-purple: #8b5cf6;
  --potz-purple-dark: #6d28d9;
  --potz-magenta: #f43f5e;
  --potz-pink: #ec4899;
  --potz-glow: rgba(139, 92, 246, 0.4);
  --potz-soft: rgba(139, 92, 246, 0.16);
  --potz-border: rgba(139, 92, 246, 0.45);

  /* Universe 3: sunphlour */
  --sun-gold: #f59e0b;
  --sun-orange: #ea580c;
  --sun-warm-dark: #b45309;
  --sun-glow: rgba(245, 158, 11, 0.35);
  --sun-soft: rgba(245, 158, 11, 0.14);
  --sun-border: rgba(245, 158, 11, 0.4);

  /* Typography */
  --font-display: 'Orbitron', system-ui, -apple-system, sans-serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --tr-fast: 0.2s ease;
  --tr-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  /* Ultra-smooth hardware-accelerated background without heavy CPU filters */
  background-image: 
    radial-gradient(circle at 10% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(139, 92, 246, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 20% 75%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(244, 63, 94, 0.10) 0%, transparent 45%);
}

/* Typographic wrap & orphan prevention */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.card-title,
.story-title,
.modal-title,
.klaus-profile-name {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

p, .section-desc, .hero-subtitle, .lead-text, .ritual-desc, .kmc-desc, .story-card-text {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: pretty;
}

.no-break {
  white-space: nowrap;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.navbar-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 14, 0.92);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--tr-smooth);
}

@supports (backdrop-filter: blur(16px)) {
  .navbar-header {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(7, 9, 14, 0.85);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--pirsch-turquoise), var(--potz-purple));
  box-shadow: 0 0 14px var(--pirsch-glow);
}

.logo-accent {
  background: linear-gradient(90deg, var(--pirsch-turquoise), var(--sun-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--tr-fast), background var(--tr-fast);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pirsch-turquoise);
  box-shadow: 0 0 6px var(--pirsch-turquoise);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--tr-fast), opacity var(--tr-fast);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-align: center;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
  border: none;
  outline: none;
  will-change: transform;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-md { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--pirsch-turquoise), #0284c7);
  color: #040508;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--pirsch-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.65);
  background: linear-gradient(135deg, #38e1ff, #0369a1);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-glass-bright);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-ticket {
  background: linear-gradient(135deg, var(--pirsch-turquoise), #0284c7);
  color: #040508;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px var(--pirsch-glow);
}

.btn-ticket:hover {
  background: linear-gradient(135deg, #38e1ff, #0ea5e9);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.7);
}

/* Specific universe buttons */
.btn-turquoise { background: var(--pirsch-turquoise); color: #040508; font-weight: 700; }
.btn-turquoise:hover { box-shadow: 0 0 16px var(--pirsch-glow); transform: translateY(-2px); }
.btn-turquoise-outline { background: var(--pirsch-soft); color: var(--pirsch-turquoise); border: 1px solid var(--pirsch-turquoise); }
.btn-turquoise-outline:hover { background: var(--pirsch-turquoise); color: #040508; }

.btn-purple { background: linear-gradient(135deg, var(--potz-purple), var(--potz-magenta)); color: #fff; font-weight: 700; }
.btn-purple:hover { box-shadow: 0 0 16px var(--potz-glow); transform: translateY(-2px); }
.btn-purple-outline { background: var(--potz-soft); color: #d8b4fe; border: 1px solid var(--potz-purple); }
.btn-purple-outline:hover { background: var(--potz-purple); color: #fff; }

.btn-amber { background: linear-gradient(135deg, var(--sun-gold), var(--sun-orange)); color: #040508; font-weight: 700; }
.btn-amber:hover { box-shadow: 0 0 16px var(--sun-glow); transform: translateY(-2px); }
.btn-amber-outline { background: var(--sun-soft); color: var(--sun-gold); border: 1px solid var(--sun-gold); }
.btn-amber-outline:hover { background: var(--sun-gold); color: #040508; }

/* Pulse animation GPU-accelerated */
.pulse-button {
  animation: pulseGlow 3s infinite ease-in-out;
  will-change: transform;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
}

.badge-turquoise { background: var(--pirsch-soft); color: var(--pirsch-turquoise); border: 1px solid var(--pirsch-border); }
.badge-purple { background: var(--potz-soft); color: #e9d5ff; border: 1px solid var(--potz-border); }
.badge-amber { background: var(--sun-soft); color: #fde68a; border: 1px solid var(--sun-border); }

.badge-sm {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  display: inline-block;
}

.live-beacon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pirsch-turquoise);
  display: inline-block;
  animation: beaconPulse 2s infinite ease-in-out;
  will-change: transform, opacity;
}

@keyframes beaconPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3rem 0 5rem;
}

.hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ==========================================================================
   HERO ROUND STAMP BADGE (STEMPEL-EFFEKT OBEN LINKS - 1.5X ENLARGED)
   ========================================================================== */
.hero-stamp-badge {
  position: absolute;
  top: -24px;
  left: 0;
  z-index: 20;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transform: rotate(-10deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.hero-stamp-badge:hover {
  transform: rotate(-3deg) scale(1.06);
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.65));
}

.stamp-seal {
  position: relative;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0, 240, 255, 0.22) 0%, rgba(10, 14, 24, 0.96) 75%);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6), inset 0 0 18px rgba(0, 240, 255, 0.3);
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  animation: stampPulse 4s ease-in-out infinite alternate;
}

@keyframes stampPulse {
  0% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), inset 0 0 14px rgba(0, 240, 255, 0.25), 0 0 0 0 rgba(0, 240, 255, 0.2); }
  100% { box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7), inset 0 0 22px rgba(0, 240, 255, 0.45), 0 0 25px 5px rgba(0, 240, 255, 0.3); }
}

.stamp-svg-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: stampSpin 28s linear infinite;
}

.hero-stamp-badge:hover .stamp-svg-ring {
  animation-play-state: paused;
}

@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stamp-border-outer {
  fill: none;
  stroke: var(--pirsch-turquoise);
  stroke-width: 1.5;
  opacity: 0.85;
}

.stamp-border-dashed {
  fill: none;
  stroke: var(--pirsch-turquoise);
  stroke-width: 1.2;
  stroke-dasharray: 4 2.5;
  opacity: 0.9;
}

.stamp-border-inner {
  fill: none;
  stroke: rgba(0, 240, 255, 0.5);
  stroke-width: 1;
}

.stamp-text-curved {
  font-family: var(--font-display, sans-serif);
  font-size: 7px;
  font-weight: 800;
  fill: #38e1ff;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.stamp-core {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stamp-pill {
  background: linear-gradient(135deg, #00f0ff, #0284c7);
  color: #030712;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.55);
  text-transform: uppercase;
  line-height: 1;
}

.stamp-action {
  font-family: var(--font-display, sans-serif);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.universe-selector {
  display: inline-flex;
  align-self: center;
  margin: 0 auto;
  background: rgba(14, 18, 28, 0.9);
  border: 1px solid var(--border-glass-bright);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  gap: 0.3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

.uni-tab {
  background: transparent;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--tr-fast), background var(--tr-fast);
}

.uni-tab:hover {
  color: #fff;
}

.uni-tab.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid var(--border-glass-bright);
}

.hero-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  margin-bottom: 0.5rem;
}

.hero-next-date {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  color: #071016;
  background: #a9efff;
  border: 2px solid #d9f8ff;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-next-date > span {
  flex-shrink: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-next-date time {
  font-size: 0.95rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pirsch-turquoise) 0%, #38e1ff 30%, var(--potz-purple) 60%, var(--sun-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* ==========================================================================
   KIRA BACKGROUND ORNAMENTS (HERO & BODY SECTIONS)
   ========================================================================== */

/* 1. Hero Background Artwork (Kira präsentiert – Riesengroß im Hintergrund) */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-kira-bg-art {
  position: absolute;
  top: 15px;
  right: -3%;
  width: clamp(540px, 50vw, 960px);
  height: clamp(540px, 50vw, 960px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.62;
  filter: drop-shadow(0 0 65px rgba(0, 212, 255, 0.45));
  user-select: none;
  -webkit-mask-image: radial-gradient(ellipse 68% 68% at 50% 45%, #000 30%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.25) 75%, transparent 95%);
  mask-image: radial-gradient(ellipse 68% 68% at 50% 45%, #000 30%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.25) 75%, transparent 95%);
  animation: floatKiraHero 8s ease-in-out infinite alternate;
}

.hero-kira-bg-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 2. Body Background Artwork (Küssende Kira – Platziert am linken Rand vor den Headern) */
.rituals-section,
.music-section,
.masterminds-section,
.stories-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.section-kira-bg-kuss {
  position: absolute;
  top: -30px;
  left: -3%;
  width: clamp(480px, 44vw, 780px);
  height: clamp(480px, 44vw, 780px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.58;
  filter: drop-shadow(0 0 55px rgba(236, 72, 153, 0.42));
  user-select: none;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 40%, #000 25%, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.25) 70%, transparent 92%);
  mask-image: radial-gradient(ellipse 65% 65% at 50% 40%, #000 25%, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.25) 70%, transparent 92%);
  animation: floatKiraKuss 8s ease-in-out infinite alternate;
}

.section-kira-bg-kuss img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes floatKiraHero {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  100% {
    transform: translateY(-20px) rotate(2deg) scale(1.03);
  }
}

@keyframes floatKiraKuss {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  100% {
    transform: translateY(-16px) rotate(2deg) scale(1.03);
  }
}

@media (max-width: 991px) {
  .hero-kira-bg-art {
    top: 50px;
    right: -15%;
    width: clamp(380px, 60vw, 550px);
    height: clamp(380px, 60vw, 550px);
    opacity: 0.45;
  }
  .section-kira-bg-kuss {
    top: -20px;
    left: -12%;
    width: clamp(340px, 50vw, 500px);
    height: clamp(340px, 50vw, 500px);
    opacity: 0.38;
  }
}

.hero-container,
.rituals-section .container,
.music-section .container,
.masterminds-section .container,
.stories-section .container,
.contact-section .container {
  position: relative;
  z-index: 2;
}

/* HERO SPOTLIGHT: AUTOMATIC NEXT EVENT FOCUS */
.hero-spotlight-card {
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.95), rgba(10, 14, 22, 0.95));
  border: 1px solid var(--pirsch-border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.hero-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pirsch-turquoise), var(--potz-purple), var(--sun-gold));
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.spotlight-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spotlight-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--pirsch-turquoise);
  font-weight: 700;
}

.spotlight-universe-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.spotlight-body {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.spotlight-date {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: #071016;
  background: #a9efff;
  border: 2px solid #d9f8ff;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  padding: 0.55rem 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.spotlight-venue {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.spotlight-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* Countdown */
.countdown-wrapper {
  background: rgba(8, 11, 18, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

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

.cd-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cd-unit {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.spotlight-action {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.spotlight-note {
  font-size: 0.78rem;
  color: var(--sun-gold);
  text-align: center;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pirsch-turquoise-bright);
  display: block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   THE 3 UNIVERSES CARDS
   ========================================================================== */
.universe-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 2rem;
}

.universe-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-smooth), border-color var(--tr-fast);
  position: relative;
  will-change: transform;
}

.universe-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.card-pirschheidi:hover { border-color: var(--pirsch-turquoise); }
.card-potzdamn:hover { border-color: var(--potz-purple); }
.card-sunphlour:hover { border-color: var(--sun-gold); }

.card-header {
  padding: 1.8rem 1.8rem 1.2rem;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.card-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.card-slogan {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #090c14;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}

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

.kira-floater {
  position: absolute;
  bottom: -15px;
  right: 15px;
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
  animation: floatKira 4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatKira {
  0% { transform: translateY(0) rotate(-3deg); }
  100% { transform: translateY(-6px) rotate(3deg); }
}

.dj-badge-floater, .voice-floater {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(4, 6, 12, 0.9);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.2rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cfd6e6;
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
}

.card-actions .btn {
  flex: 1;
}

/* ==========================================================================
   SHOW-RITUALE & KULT-AKTIONEN
   ========================================================================== */
.rituals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ritual-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.ritual-card:hover {
  transform: translateY(-4px);
  border-color: var(--pirsch-turquoise);
  background: rgba(255, 255, 255, 0.06);
}

.ritual-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.ritual-kira-thumb {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 212, 255, 0.35));
  transition: transform var(--tr-smooth);
}

.ritual-card:hover .ritual-kira-thumb {
  transform: scale(1.15) rotate(-4deg);
}

.ritual-icon {
  font-size: 2rem;
  display: inline-block;
}

.ritual-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.ritual-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   MASTERMINDS: FRANK HECK & TORSTEN KUHN
   ========================================================================== */
.masterminds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.duo-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.duo-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pirsch-turquoise);
  line-height: 1.1;
}

.badge-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
}

.booking-callout {
  display: flex;
  gap: 1.2rem;
  background: linear-gradient(135deg, var(--pirsch-soft), var(--potz-soft));
  border: 1px solid var(--pirsch-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}

.booking-icon {
  font-size: 2rem;
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.booking-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.history-archive-callout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.history-archive-callout a {
  color: var(--pirsch-turquoise);
  font-weight: 600;
  transition: color var(--tr-fast);
}

.history-archive-callout a:hover {
  color: var(--pirsch-turquoise-bright);
  text-decoration: underline;
}

.archive-inline-link {
  color: var(--pirsch-turquoise);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--tr-fast);
}

.archive-inline-link:hover {
  color: var(--pirsch-turquoise-bright);
}

.footer-archive-link {
  color: var(--pirsch-turquoise) !important;
  font-weight: 600;
}

.duo-card-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.duo-member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--tr-fast);
}

.duo-member-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-bright);
}

.duo-avatar-wrap {
  position: relative;
  height: 200px;
  background: #0d111a;
}

.duo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.duo-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--pirsch-turquoise);
  font-family: var(--font-display);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--pirsch-turquoise);
}

.duo-member-info {
  padding: 1.2rem;
}

.duo-member-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.duo-role {
  color: var(--pirsch-turquoise);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.duo-bio-snippet {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.stage-photo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 210px;
  border: 1px solid var(--border-glass);
}

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

.stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 6, 12, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #fff;
}

/* ==========================================================================
   BLOG & STORIES MAGAZIN
   ========================================================================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-smooth), border-color var(--tr-fast);
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-bright);
}

.story-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.story-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.story-body {
  padding: 0.8rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-excerpt {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.story-link {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(0, 212, 255, 0.14);
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  border-radius: var(--radius-full);
  color: #38e1ff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: fit-content;
  min-height: 44px;
  transition: all var(--tr-fast);
  text-align: left;
}

.story-link:hover {
  background: var(--pirsch-turquoise);
  color: #07090e;
  border-color: var(--pirsch-turquoise-bright);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.story-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  background: var(--pirsch-turquoise);
  color: #07090e;
}

/* ==========================================================================
   EVENTS & TICKET RADAR
   ========================================================================== */
.event-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: #fff;
  color: #040508;
  border-color: #fff;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-smooth), border-color var(--tr-fast);
}

.event-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-glass-bright);
}

.event-card.featured {
  border: 1px solid var(--pirsch-turquoise);
}

.event-card-header {
  position: relative;
  height: 210px;
  background: #090c14;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-universe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.event-date-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  color: #071016;
  background: #a9efff;
  border-top: 2px solid #d9f8ff;
  padding: 0.75rem 1rem;
}

.ed-date {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.ed-time {
  flex-shrink: 0;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.event-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.8rem;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.event-venue {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.5;
  flex-grow: 1;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.event-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.ticket-guarantee-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  background: rgba(14, 18, 28, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.tg-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.tg-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tg-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.tg-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MUSIC & LYRICS EXPLORER
   ========================================================================== */
/* Authors & Producers Studio Showcase */
.producers-showcase-box {
  background: linear-gradient(135deg, rgba(16, 21, 34, 0.9) 0%, rgba(10, 14, 24, 0.95) 100%);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-xl);
  padding: 2.4rem;
  margin-bottom: 2.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.producers-showcase-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.producers-showcase-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.producers-showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.2rem;
  position: relative;
  z-index: 1;
}

.ps-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pirsch-turquoise);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.producers-showcase-header h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.producers-showcase-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.producers-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.producer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-normal), border-color var(--tr-normal), box-shadow var(--tr-normal);
}

.producer-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glass-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.pc-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pirsch-turquoise);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.25);
  flex-shrink: 0;
}

.pc-avatar-torsten,
.duo-img-torsten {
  object-position: center 2% !important;
}

.pc-avatar-frank,
.duo-img-frank {
  object-position: center 15% !important;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.pc-alias {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pirsch-turquoise);
  margin-top: 0.25rem;
}

.pc-bio {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pc-tag {
  font-size: 0.74rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #e2e8f0;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
}

.studio-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 1;
}

.sh-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.sh-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sh-item strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.sh-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.music-explorer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: start;
}

.tracks-card, .lyrics-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.tracks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.tracks-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--tr-fast), border-color var(--tr-fast);
}

.track-item:hover, .track-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-bright);
}

.track-item.active {
  border-color: var(--pirsch-turquoise);
}

.track-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #040508;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform var(--tr-fast);
  flex-shrink: 0;
  will-change: transform;
}

.track-item:hover .track-play-btn {
  transform: scale(1.1);
}

.track-details {
  flex-grow: 1;
  min-width: 0;
}

.track-name {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  flex-shrink: 0;
}

/* Lyrics Card */
.lyrics-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.lyrics-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pirsch-turquoise);
  display: block;
  margin-bottom: 0.4rem;
}

.lyrics-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.lyrics-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lyrics-highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 212, 255, 0.08);
  border-left: 3px solid var(--pirsch-turquoise);
  padding: 0.8rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
}

.lyrics-lines {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #d1d7e5;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.lyrics-lines:focus-visible {
  outline: 3px solid var(--pirsch-turquoise);
  outline-offset: 3px;
}

.track-summary-box {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.track-summary-box p {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  line-height: 1.65;
  color: #e2e8f0;
}

.track-summary-box strong {
  color: var(--sun-gold);
  font-size: 0.95rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.lyrics-footer {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.cloud-note {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   GALLERY & KIRA SHOWCASE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #0a0d16;
  border: 1px solid var(--border-glass);
}

.gallery-item.item-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-item img.img-pos-top,
img[src*="Vincent_Gross_hockend"] {
  object-position: top center;
}

img[src*="Sophia_Venus"] {
  object-position: center 22%;
}

img[src*="Undine_Lux_performt_auf_Buehne"],
img[src*="Undiene_Lux_singt_auf_Buehne"] {
  object-position: center 26%;
}

.gallery-item img.img-pos-ship,
.card-img.img-pos-ship,
.event-card-img.img-pos-ship,
img[src*="Frank_und_Torsten_auf_Schiff_vor_Potsdam"] {
  object-position: center 75%;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 6, 12, 0.9) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: opacity var(--tr-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

/* ==========================================================================
   SHOP SECTION
   ========================================================================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--tr-smooth);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-bright);
}

.product-img-wrap {
  position: relative;
  height: 260px;
  background: #101420;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   CONTACT & BOOKING
   ========================================================================== */
.contact-card-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.4rem;
}

.hover-underline:hover {
  text-decoration: underline;
  color: #fff;
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--tr-fast);
}

.social-btn:hover {
  background: #fff;
  color: #040508;
}

.contact-form {
  background: rgba(10, 14, 22, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color var(--tr-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--pirsch-turquoise);
}

.form-feedback {
  font-size: 0.95rem;
  text-align: center;
  font-weight: 600;
  min-height: 1.5rem;
  margin-top: 0.5rem;
}

#form-submit-btn {
  margin-top: 1.2rem;
  padding: 1.4rem 2.4rem !important;
  min-height: 72px !important;
  height: auto;
  font-size: 1.25rem !important;
  font-family: var(--font-display);
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #2bf7ff 0%, var(--pirsch-turquoise) 45%, #0284c7 100%) !important;
  color: #03060a !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-bottom: 5px solid #015888 !important;
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  cursor: pointer;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast), border-bottom var(--tr-fast);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100% !important;
  box-sizing: border-box !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

#form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  background: linear-gradient(180deg, #64faff 0%, #00f2fe 45%, #0ea5e9 100%) !important;
  border-bottom: 5px solid #026ca6 !important;
}

#form-submit-btn:active {
  transform: translateY(3px);
  border-bottom: 2px solid #015888 !important;
  box-shadow: 0 3px 10px rgba(0, 212, 255, 0.4), inset 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links-col h2, .footer-legal-col h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-col a {
  white-space: nowrap;
}

.footer-links-col a:hover {
  color: #fff;
}

.legal-snippet {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   PERSISTENT FLOATING AUDIO PLAYER BAR (GPU-ACCELERATED)
   ========================================================================== */
.floating-audio-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1100px;
  background: rgba(12, 16, 26, 0.96);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
  z-index: 1000;
  transition: transform var(--tr-smooth);
  will-change: transform;
}

.floating-audio-bar.minimized {
  transform: translateX(-50%) translateY(140%);
}

.audio-bar-inner {
  display: grid;
  grid-template-columns: 1.3fr auto 1.5fr auto;
  gap: 1.5rem;
  align-items: center;
}

.audio-track-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

/* Zero-reflow scaleY equalizer */
.audio-visualizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
}

.audio-visualizer-bars span {
  width: 3px;
  height: 16px;
  background: var(--pirsch-turquoise);
  border-radius: 2px;
  transform-origin: bottom;
  transform: scaleY(0.2);
  will-change: transform;
}

.audio-visualizer-bars.playing span:nth-child(1) { animation: visScale 0.6s infinite ease-in-out alternate; }
.audio-visualizer-bars.playing span:nth-child(2) { animation: visScale 0.4s infinite ease-in-out alternate 0.1s; }
.audio-visualizer-bars.playing span:nth-child(3) { animation: visScale 0.7s infinite ease-in-out alternate 0.2s; }
.audio-visualizer-bars.playing span:nth-child(4) { animation: visScale 0.5s infinite ease-in-out alternate 0.3s; }

@keyframes visScale {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

.audio-text-meta {
  min-width: 0;
}

.audio-title {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-artist {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audio-ctrl-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr-fast);
}

.audio-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.play-main-btn {
  background: #fff;
  color: #040508;
  font-size: 1rem;
  width: 38px;
  height: 38px;
}

.play-main-btn:hover {
  background: #fff;
  transform: scale(1.08);
}

.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.audio-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  width: 32px;
}

.audio-progress-bar {
  flex-grow: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.audio-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pirsch-turquoise), var(--potz-purple));
  border-radius: var(--radius-full);
}

.audio-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.volume-slider {
  width: 65px;
  accent-color: var(--pirsch-turquoise);
  cursor: pointer;
}

.audio-close-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
}

.audio-close-btn:hover {
  color: #fff;
}

/* ==========================================================================
   MODALS (LIGHTBOX, STORY & LEGAL)
   ========================================================================== */
.lightbox-modal, .legal-modal, .story-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active, .legal-modal.active, .story-modal.active {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.gallery-item[role="button"] {
  cursor: zoom-in;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: #fff;
}

.lightbox-close, .legal-close, .story-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
}

/* Text dialogs scroll internally; their close control must stay inside the panel. */
.legal-close, .story-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 0.5rem auto;
  border-radius: 4px;
  background: var(--bg-card);
  line-height: 1;
}

.legal-content, .story-content-box {
  position: relative;
  background: #0d111a;
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.legal-page-card {
  padding: clamp(1rem, 4vw, 3rem);
}

/* Allow content columns to shrink to the available width, including long titles. */
:where(.masterminds-grid, .duo-card-pair, .klaus-profile-showcase,
  .klaus-stats-row, .klaus-moments-grid, .producers-duo-grid,
  .studio-highlights-row, .music-explorer-grid, .contact-card-wrap,
  .footer-container, .spotlight-body, .audio-bar-inner, .pc-header,
  .contact-item, .tg-item, .sh-item) > * {
  min-width: 0;
}

.btn, .form-input, .story-link {
  min-width: 0;
  max-width: 100%;
}

.legal-content h2, .story-content-box h2 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.legal-content p, .story-content-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ==========================================================================
   KLAUS CARPENDALE SECTION
   ========================================================================== */
.klaus-section {
  background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  border-top: 1px solid var(--border-glass);
}

/* Tier 1: Main Profile Showcase Box */
.klaus-profile-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
  transition: border-color var(--tr-fast);
}

.klaus-profile-showcase:hover {
  border-color: var(--border-glass-bright);
}

.klaus-profile-media {
  position: relative;
  background: #090c14;
  overflow: hidden;
  cursor: pointer;
}

.klaus-portrait-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.klaus-profile-media:hover .klaus-portrait-img {
  transform: scale(1.04);
}

.klaus-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 6, 12, 0.9) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.2rem;
  pointer-events: none;
}

.klaus-badge-pill {
  background: rgba(7, 9, 14, 0.9);
  border: 1px solid var(--pirsch-turquoise);
  color: var(--pirsch-turquoise);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.klaus-zoom-hint {
  font-size: 0.75rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.klaus-profile-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.klaus-role-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pirsch-turquoise);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.klaus-profile-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}

.klaus-quote-card {
  background: rgba(0, 212, 255, 0.06);
  border-left: 3px solid var(--pirsch-turquoise);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: #e0f2fe;
  line-height: 1.65;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.klaus-story-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

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

.klaus-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.klaus-stat-item .ksi-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pirsch-turquoise);
}

.klaus-stat-item .ksi-lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  white-space: nowrap;
}

.klaus-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Tier 2: 3-Pillar Moments Grid */
.klaus-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.klaus-moment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-smooth), border-color var(--tr-fast);
}

.klaus-moment-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-bright);
}

.kmc-image-wrap {
  position: relative;
  height: 200px;
  background: #090c14;
  overflow: hidden;
  cursor: pointer;
}

.kmc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.4s ease;
}

.kmc-image-wrap:hover .kmc-img {
  transform: scale(1.06);
}

.kmc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--pirsch-turquoise);
  color: var(--pirsch-turquoise);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.kmc-zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 1px solid var(--border-glass);
  opacity: 0.85;
}

.kmc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kmc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}

.kmc-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SUNPHLOUR SHOWCASE SECTION
   ========================================================================== */
.sunphlour-showcase-section {
  background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.sunphlour-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.sunphlour-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: transform var(--tr-smooth), border-color var(--tr-smooth);
}

.sunphlour-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--sun-gold);
}

.sunphlour-feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.sunphlour-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sun-gold);
  margin-bottom: 0.8rem;
}

.sunphlour-feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.sunphlour-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 3rem;
}

.sunphlour-actions-row .btn {
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE, TABLET & DESKTOP FINE-TUNING)
   ========================================================================== */

/* Global Mobile Overflow Safeguard */
html, body {
  overflow-x: clip;
  max-width: 100vw;
  -webkit-tap-highlight-color: transparent;
}

/* 1. Large Tablets & Small Laptops (max-width: 1080px) */
@media (max-width: 1080px) {
  .hero-stamp-badge {
    top: -16px;
    left: 0;
  }
  .stamp-seal {
    width: 136px;
    height: 136px;
  }
}

/* 2. Tablets & Medium Screens (max-width: 992px) */
@media (max-width: 992px) {
  .hero-stamp-badge {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto -1rem;
    display: flex;
    justify-content: center;
  }

  .stamp-seal {
    width: 124px;
    height: 124px;
  }

  .stamp-pill {
    font-size: 0.74rem;
    padding: 0.18rem 0.55rem;
  }

  .stamp-action {
    font-size: 0.78rem;
  }

  .universe-selector {
    display: inline-flex;
    align-self: center;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 96%;
  }

  .hero-spotlight-card .spotlight-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .universe-cards-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    gap: 2.5rem;
  }

  .masterminds-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .klaus-profile-showcase {
    grid-template-columns: 1fr;
  }

  .klaus-moments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .producers-duo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .studio-highlights-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .contact-card-wrap {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.8rem;
    gap: 2rem;
  }

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

  .floating-audio-bar .audio-bar-inner {
    grid-template-columns: 1fr auto auto;
  }

  .audio-progress-wrap {
    display: none;
  }
}

/* Navigation collapses before the desktop links run out of horizontal space. */
@media (max-width: 1100px) {
  .nav-menu {
    position: fixed;
    top: 84px;
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem;
    background: var(--bg-dark);
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { min-height: 44px; }
  .mobile-toggle { display: flex; flex-shrink: 0; width: 44px; height: 44px; }
}

/* 3. Smartphones & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Container & Section Spacing */
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    background: rgba(8, 11, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.8rem 1.4rem 2.8rem;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border-glass-bright);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.12rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    display: block;
    color: #e2e8f0;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    cursor: pointer;
    border: 1px solid var(--border-glass-bright);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
  }

  /* Hero Section */
  .hero-section {
    padding: 1.5rem 0 3.5rem;
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-stamp-badge {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 0.25rem;
    display: flex;
    justify-content: center;
  }

  .stamp-seal {
    width: 112px;
    height: 112px;
  }

  .stamp-pill {
    font-size: 0.68rem;
    padding: 0.16rem 0.5rem;
  }

  .stamp-action {
    font-size: 0.72rem;
  }

  .universe-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0.35rem;
    gap: 0.35rem;
    border-radius: var(--radius-xl);
  }

  .uni-tab {
    padding: 0.55rem 0.5rem;
    font-size: 0.82rem;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .hero-content {
    gap: 1.15rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    line-height: 1.4;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.8vw, 2.7rem);
    line-height: 1.16;
  }

  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.55;
    padding: 0 0.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.92rem;
  }

  .hero-spotlight-card {
    padding: 1.4rem 1.1rem;
    border-radius: var(--radius-lg);
  }

  .spotlight-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .spotlight-title {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .countdown-wrapper {
    margin-top: 1.2rem;
  }

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

  .cd-box {
    padding: 0.5rem 0.15rem;
    min-width: unset;
  }

  .cd-num {
    font-size: 1.25rem;
  }

  .cd-unit {
    font-size: 0.65rem;
  }

  .spotlight-action .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
    white-space: normal;
    line-height: 1.3;
  }

  /* Universe Cards */
  .universe-card {
    padding: 1.5rem 1.1rem;
  }

  .card-image-wrap {
    height: 190px;
  }

  .card-brand {
    font-size: 1.55rem;
  }

  .card-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.55rem;
  }

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

  /* Rituals Grid */
  .rituals-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .ritual-card {
    padding: 1.4rem 1.1rem;
  }

  /* Masterminds / Duo Cards */
  .duo-card-pair {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .duo-card {
    padding: 1.5rem 1.1rem;
  }

  .duo-card-img {
    height: 250px;
  }

  .duo-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.55rem;
  }

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

  /* Event Radar */
  .event-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
  }

  .event-filters .filter-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card-img {
    height: 180px;
  }

  .event-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

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

  /* Music Player */
  .music-player-card {
    padding: 1.4rem 1.1rem;
  }

  .player-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .player-track-info {
    text-align: center;
  }

  .player-controls {
    justify-content: center;
    gap: 0.8rem;
  }

  .player-volume-wrap {
    width: 100%;
    justify-content: center;
    margin-top: 0.4rem;
  }

  .playlist-item {
    padding: 0.75rem 0.8rem;
    font-size: 0.88rem;
  }

  .lyrics-drawer-body {
    padding: 1.2rem 1rem;
    font-size: 0.95rem;
  }

  .streaming-hub-box {
    padding: 1.3rem 1.1rem;
  }

  .streaming-hub-box > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .streaming-hub-box > div > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }

  .streaming-hub-box .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }

  /* sunphlour */
  .sunphlour-features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .sunphlour-feature-card {
    padding: 1.5rem 1.1rem;
  }

  .sunphlour-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .sunphlour-actions-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Magazin & Stories */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .story-card {
    padding: 1.4rem 1.1rem;
  }

  .story-modal {
    padding: 0.75rem;
  }

  .story-content-box {
    padding: 1.8rem 1.1rem 1.4rem;
    max-height: 88vh;
    overflow-y: auto;
    width: 100%;
    border-radius: var(--radius-lg);
  }

  .story-close {
    top: 0;
    right: 0;
    font-size: 2rem;
  }

  /* Moments & Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 0.5rem;
  }

  .gallery-item.item-lg {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-caption {
    font-size: 0.75rem;
    padding: 0.4rem;
  }

  .lightbox-modal {
    padding: 0.75rem;
  }

  .lightbox-content img {
    max-height: 72vh;
    max-width: 100%;
  }

  /* Shop Grid */
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shop-card {
    padding: 1.4rem 1.1rem;
  }

  /* Contact & Form */
  .contact-card-wrap {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.1rem;
    gap: 2rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important;
    padding: 0.85rem 1rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  /* Floating Audio Bar Mobile */
  .floating-audio-bar {
    bottom: 0.4rem;
    left: 0.4rem;
    right: 0.4rem;
    width: auto;
    padding: 0.55rem 0.8rem;
    border-radius: var(--radius-lg);
  }

  .floating-audio-bar .audio-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .audio-bar-track-title {
    max-width: 160px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .btn, .sunphlour-actions-row .btn {
    white-space: normal;
    min-height: 44px;
  }
  .tracks-card, .lyrics-card, .producer-card, .contact-form {
    padding: 1.1rem;
  }
  .tracks-header, .pc-header, .klaus-portrait-overlay {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .track-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.35rem 0.65rem;
    padding: 0.75rem;
  }
  .track-play-btn { width: 44px; height: 44px; }
  .track-name {
    white-space: normal;
  }
  .track-badge { grid-column: 2; justify-self: start; max-width: 100%; }
  .ticket-guarantee-box { padding: 1.1rem; }
  .legal-modal { padding: 0.75rem; }
  .legal-content { padding: 1rem; max-height: 88dvh; }
  .story-content-box { max-height: 88dvh; }
  .legal-page h1 {
    font-size: clamp(1.4rem, 6.2vw, 2.2rem);
    hyphens: manual;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
  body:has(.legal-page) .nav-container {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-block: 0.75rem;
  }
  body:has(.legal-page) .brand-logo { font-size: 0.95rem; }
  .legal-page-card .btn { width: 100%; }
  #form-submit-btn {
    padding: 1rem 0.75rem !important;
    font-size: 1rem !important;
    min-height: 56px !important;
  }
}

/* 4. Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .stamp-seal {
    width: 100px;
    height: 100px;
  }

  .stamp-pill {
    font-size: 0.62rem;
  }

  .stamp-action {
    font-size: 0.65rem;
  }

  .universe-selector {
    max-width: 330px;
  }

  .uni-tab {
    font-size: 0.78rem;
    padding: 0.48rem 0.35rem;
  }

  .gallery-grid {
    grid-auto-rows: 110px;
    gap: 0.4rem;
  }

  .audio-bar-track-title {
    max-width: 120px;
    font-size: 0.78rem;
  }

  .duo-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .duo-badge {
    padding: 0.8rem 0.35rem;
  }
  .duo-badge .badge-label {
    font-size: 0.72rem;
  }
}
