/* ==========================================================================
   TME ARTIST GROUP BOOKING — Stylesheet
   Marke/Name "TME ARTIST GROUP" kommt an mehreren Stellen vor (Logo, Titel, Footer).
   Einfach global per Suchen & Ersetzen austauschen.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Anton&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg: #081210;
  --color-bg-alt: #0e1e19;
  --color-surface: #142b23;
  --color-primary: #16d9a0;
  --color-primary-dark: #0e9e76;
  --color-secondary: #0fb8b0;
  --color-accent: #b9ffe8;
  --color-cyan: #2ff3d0;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-faint: rgba(255, 255, 255, 0.45);
  --gradient-primary: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 55%, var(--color-accent) 100%);
  --gradient-hero: radial-gradient(circle at 20% 20%, rgba(22, 217, 160, 0.55), transparent 55%),
                   radial-gradient(circle at 80% 30%, rgba(47, 243, 208, 0.35), transparent 50%),
                   radial-gradient(circle at 50% 90%, rgba(15, 184, 176, 0.45), transparent 55%),
                   var(--color-bg);
  --shadow-glow: 0 0 40px rgba(22, 217, 160, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ff-display: 'Bungee', 'Anton', 'Poppins', sans-serif;
  --ff-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--text-light);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}

p { line-height: 1.6; color: var(--text-muted); margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

.section-tag--centered {
  justify-content: center;
}

.section-tag--centered::after {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #08150f;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.08); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

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

.btn-small { padding: 11px 22px; font-size: 0.85rem; }

/* ---------------------------------- Header --------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(8, 18, 16, 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo-img {
  height: 38px;
  width: auto;
  transition: opacity 0.2s ease;
}

.logo:hover .logo-img { opacity: 0.85; }

.footer-logo .logo-img { height: 46px; margin-bottom: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 900;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-mobile.active { transform: translateX(0); }

.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------------------------------- Hero ----------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-video-wrap.no-video video { display: none; }

.hero-blobs {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}

.blob-1 { width: 420px; height: 420px; background: var(--color-primary); top: -8%; left: -6%; animation-delay: 0s; }
.blob-2 { width: 360px; height: 360px; background: var(--color-cyan); top: 40%; right: -8%; animation-delay: -4s; }
.blob-3 { width: 320px; height: 320px; background: var(--color-secondary); bottom: -12%; left: 30%; animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 16, 0.35) 0%, rgba(8, 18, 16, 0.55) 60%, var(--color-bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.4rem, 7.5vw, 5.2rem);
  line-height: 1.08;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(45px) rotate(-1deg);
  animation: line-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes line-in {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.hero-line.highlight {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: line-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmer 5s linear infinite 0.9s;
  animation-delay: var(--d, 0s), 0.9s;
  text-shadow: 0 0 60px rgba(22, 217, 160, 0.35);
}

@keyframes shimmer {
  to { background-position: 300% 0; }
}

.hero p.lead {
  margin: 26px auto 0;
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-cta-row {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 70px;
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats .stat span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.scroll-cue svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ------------------------------- Marquee ----------------------------------- */

.marquee {
  background-image: url('../assets/images/brand/tme-logo-pattern.png'), var(--gradient-primary);
  background-repeat: repeat-x, no-repeat;
  background-size: 70px auto, 100% 100%;
  background-position: center 62%, 0 0;
  color: #08150f;
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 3;
}

.marquee-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: scroll-left 22s linear infinite;
  will-change: transform;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-track span { display: flex; align-items: center; gap: 12px; white-space: nowrap; margin-right: 40px; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------------- Reveal ------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------ Artists section ------------------------------ */

.artists {
  padding: 120px 0 100px;
  position: relative;
}

.artist-category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.artist-category-tab {
  padding: 11px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.artist-category-tab:hover { border-color: rgba(255, 255, 255, 0.4); transform: translateY(-1px); }

.artist-category-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #08150f;
}

.artist-slider {
  position: relative;
}

.artist-stage {
  position: relative;
  perspective: 1600px;
  min-height: 640px;
}

.artist-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  touch-action: pan-y;
  cursor: grab;
}

.artist-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.artist-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(460px, 90vw);
  margin-left: calc(min(460px, 90vw) / -2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}

.artist-photo-frame {
  position: relative;
  width: 100%;
  height: 480px;
  transition: transform 0.3s ease;
}

.artist-slide.is-neighbor:hover {
  opacity: 0.85 !important;
}

.artist-slide.is-neighbor:hover .artist-photo-frame {
  transform: scale(1.12);
}

.artist-flip {
  perspective: 1600px;
  cursor: pointer;
}

.artist-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transform-style: preserve-3d;
}

.artist-flip.is-flipped .artist-flip-inner {
  transform: rotateY(180deg);
}

.artist-flip-front,
.artist-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.artist-flip-front {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.artist-flip-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, var(--color-surface), var(--color-bg-alt));
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  overflow-y: auto;
}

.artist-bio-back {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.artist-flip-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: rgba(8, 18, 16, 0.5);
  padding: 5px 12px;
  border-radius: 100px;
  pointer-events: none;
}

.artist-photo-frame .placeholder-art {
  position: absolute;
  inset: 6% 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--artist-color-1, #16d9a0) 45%, transparent), transparent 70%);
}

.artist-photo-frame .placeholder-art svg { width: 84px; height: 84px; opacity: 0.85; }

.artist-photo-frame .placeholder-art span {
  font-family: var(--ff-display);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.5));
}

.artist-photo--small {
  height: 82%;
}

.artist-info-card {
  width: 84%;
  margin-top: -22px;
  position: relative;
  z-index: 2;
  background: linear-gradient(155deg, var(--color-surface), var(--color-bg-alt));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.artist-index {
  font-family: var(--ff-display);
  color: var(--text-faint);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.artist-info-card h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

.artist-info-card .tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.artist-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.artist-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.artist-info-card .bio { font-size: 0.95rem; }

.artist-info-card .btn { margin-top: 4px; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 24px;
}

.slider-arrows { display: flex; gap: 12px; }

.arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.arrow-btn:hover { background: var(--color-primary); border-color: var(--color-primary); transform: scale(1.06); }

.arrow-btn svg { width: 22px; height: 22px; }

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.slider-dots button.active {
  background: var(--gradient-primary);
  width: 30px;
  border-radius: 100px;
}

/* --------------------------------- About -------------------------------------- */

.about {
  padding: 100px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  display: grid;
  gap: 20px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon svg { width: 22px; height: 22px; color: #08150f; }

.feature-card h4 { font-size: 1.05rem; margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.feature-card p { font-size: 0.92rem; }

/* ------------------------------ Process steps ---------------------------------- */

.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: linear-gradient(155deg, var(--color-surface), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  position: relative;
}

.process-step .num {
  font-family: var(--ff-display);
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}

.process-step h4 { font-size: 1.05rem; text-transform: none; letter-spacing: 0; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* ------------------------------- Booking / CTA band ----------------------------- */

.cta-band {
  padding: 90px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(22, 217, 160, 0.25), transparent 60%), var(--color-bg-alt);
}

.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 700px; margin: 0 auto; }
.cta-band p { max-width: 560px; margin: 20px auto 34px; font-size: 1.05rem; }

/* ---------------------------------- Footer -------------------------------------- */

.site-footer {
  background: #05100d;
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }

.footer-col h5 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--text-muted); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-accent); }

.social-row { display: flex; gap: 12px; margin-top: 18px; justify-content: flex-start; }

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social-row a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ---------------------------------- Modal form ----------------------------------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 14, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-box {
  background: linear-gradient(160deg, var(--color-surface), var(--color-bg-alt));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px 44px 36px;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover { background: var(--color-primary); transform: rotate(90deg); }

.modal-box h3 { font-size: 1.9rem; margin-bottom: 6px; }
.modal-box .modal-sub { margin-bottom: 30px; font-size: 0.95rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text-light);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.09);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field input[type="number"]::-webkit-outer-spin-button,
.form-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-field input[type="number"] { -moz-appearance: textfield; }

.form-field select option { background: var(--color-bg-alt); color: var(--text-light); }

.form-field label .hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text-faint);
  font-size: 0.78rem;
}

.artist-checkbox-group {
  display: flex;
  flex-direction: column;
}

.artist-primary-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.artist-primary-row .artist-checkbox { flex: 1; }

.artist-expand-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.artist-expand-toggle:hover {
  border-color: var(--color-primary);
  background: rgba(22, 217, 160, 0.12);
}

.artist-expand-toggle .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.artist-expand-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.artist-more-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
}

.artist-more-list.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 8px;
}

.artist-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.artist-checkbox:hover { border-color: rgba(255, 255, 255, 0.35); }

.artist-checkbox.is-checked {
  background: rgba(22, 217, 160, 0.14);
  border-color: rgba(15, 184, 176, 0.55);
  font-weight: 600;
}

.artist-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.artist-times-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artist-times-empty {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin: 0;
}

.artist-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 184, 176, 0.4);
  background: rgba(22, 217, 160, 0.08);
}

.artist-time-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.artist-time-row input[type="time"] {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--text-light);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  width: 120px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

.form-submit-row {
  grid-column: 1 / -1;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-status { font-size: 0.88rem; }
.form-status.success { color: #6ee7b7; }
.form-status.error { color: #ff8080; }

/* --------------------------------- Legal pages ----------------------------------- */

.legal-page {
  padding: 160px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 30px; }
.legal-page h2 { font-size: 1.3rem; margin: 40px 0 14px; text-transform: none; letter-spacing: 0; }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 10px; }
.legal-page ul { padding-left: 20px; }
.legal-page .placeholder-note {
  background: rgba(15, 184, 176, 0.12);
  border: 1px solid rgba(15, 184, 176, 0.4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--color-secondary);
  margin-bottom: 36px;
}

/* ---------------------------------- Responsive ----------------------------------- */

@media (max-width: 980px) {
  .about .container { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .header-actions .btn-primary.desktop-only { display: none; }

  .artist-stage { min-height: 540px; }
  .artist-photo-frame { height: 370px; }
  .artist-info-card { padding: 16px 18px 20px; }
}

@media (max-width: 640px) {
  .artist-stage { min-height: 500px; }
  .artist-photo-frame { height: 330px; }
  .hero-content { padding: 120px 20px 80px; }
  .hero-stats { gap: 30px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 34px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .slider-controls { flex-direction: column; align-items: stretch; gap: 18px; }
  .slider-arrows { justify-content: center; }
  .slider-dots { justify-content: center; }
}

/* ------------------------------- Hover-Grow überall ------------------------------- */

.logo,
.feature-card,
.process-step,
.artist-info-card,
.artist-photo,
.artist-tags span,
.social-row a,
.section-tag,
.nav-links a,
.footer-col a,
.footer-bottom a,
.hero-stats .stat,
.marquee-track span {
  transition: transform 0.25s ease;
}

.logo:hover { transform: scale(1.05); }
.feature-card:hover { transform: scale(1.03) translateY(-2px); }
.process-step:hover { transform: scale(1.03) translateY(-2px); }
.artist-info-card:hover { transform: scale(1.02); }
.artist-photo:hover { transform: scale(1.04); }
.artist-tags span:hover { transform: scale(1.08); }
.social-row a:hover { transform: scale(1.1); }
.hero-stats .stat:hover { transform: scale(1.06); }
.nav-links a:hover,
.footer-col a:hover,
.footer-bottom a:hover {
  display: inline-block;
  transform: scale(1.06);
}
