@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@500;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400..900;1,400..900&family=Syne:wght@700;800;900&display=swap');

/**
 * cult.management - Production Stylesheet
 * Strict Absolute Light Mode with Light Purple Primary & Light Lime Secondary Branding, Custom Cubic-Beziers, Header Scroll Fade, Featured Twins Card & Custom Date Selector
 * Target Domains: cult-management.de, cult-management.com
 */

/* ==========================================================================
   1. CSS Custom Properties / Design Tokens & Precision Curves
   ========================================================================== */
:root {
  /* ==========================================================================
     1. Design System Tokens: Base Surfaces & Optical Contrast (Solids Only)
     ========================================================================== */
  --color-bg: #ffffff;
  --color-surface: #f9f8fc;
  --color-surface-hover: #f3f0fa;
  --color-surface-subtle: #f5f2fb;
  --color-surface-active: #ebe5f5;
  --color-surface-alt: #f0edf8;
  --color-text-primary: #0a0a0c;
  --color-text-secondary: #3f3d48;
  --color-text-muted: #6b6878;
  --color-border: #0a0a0c;
  --color-border-light: #e4e0ee;
  --color-border-subtle: #ede9f5;
  --color-border-focus: #7e22ce;
  --color-inverted-bg: #0a0a0c;
  --color-inverted-text: #ffffff;

  /* Primary Signature: Light Purple / Lavender Solids (No Gradients) */
  --color-purple-50: #faf5ff;          /* Ultra light surface tint */
  --color-purple-100: #f3e8ff;         /* Soft lavender tint */
  --color-purple-200: #e9d5ff;         /* Light purple border/accent */
  --color-purple-300: #d8b4fe;         /* Pastel light purple */
  --color-purple-400: #c084fc;         /* Bright light purple */
  --color-purple-500: #a855f7;         /* Signature Light Purple / Lavender */
  --color-purple-600: #9333ea;         /* Vivid purple */
  --color-purple-700: #7e22ce;         /* Deep rich purple */
  --color-purple-800: #6b21a8;         /* High-contrast purple */
  --color-purple-900: #581c87;         /* Ultra dark purple */

  /* Secondary Signature: Light Lime Solids (No Gradients) */
  --color-lime-50: #f7fee7;           /* Lightest lime surface */
  --color-lime-100: #ecfccb;          /* Soft lime tint */
  --color-lime-200: #d9f99d;          /* Light lime border */
  --color-lime-300: #bef264;          /* Signature light lime */
  --color-lime-400: #a3e635;          /* Electric lime */
  --color-lime-500: #84cc16;          /* Medium lime */
  --color-lime-600: #65a30d;          /* Deep lime */
  --color-lime-700: #4d7c0f;          /* Dark lime */
  --color-lime-800: #3f6212;          /* Text-safe dark lime */

  /* Additional Supporting Solid Accents */
  --color-accent-blue: #1447e6;
  --color-accent-vermilion: #ff3700;

  /* Primary Brand Token Mappings */
  --color-accent: var(--color-purple-500);
  --color-accent-light: var(--color-purple-400);
  --color-accent-lighter: var(--color-purple-300);
  --color-accent-lightest: var(--color-purple-100);
  --color-accent-dark: var(--color-purple-700);
  --color-accent-darker: var(--color-purple-900);
  --color-accent-hover: var(--color-purple-600);
  --color-accent-text: #ffffff;
  --color-tint-purple: var(--color-purple-50);
  --color-tint-accent: var(--color-purple-100);

  /* Secondary Brand Token Mappings */
  --color-secondary: var(--color-lime-300);
  --color-secondary-light: var(--color-lime-200);
  --color-secondary-lighter: var(--color-lime-100);
  --color-secondary-dark: var(--color-lime-700);
  --color-secondary-text: #1a2e05;
  --color-tint-lime: var(--color-lime-50);
  --color-tint-secondary: var(--color-lime-100);

  /* Status Colors */
  --color-success-bg: #effdf4;
  --color-success-text: #14532d;
  --color-success-border: #22c55e;
  --color-error-bg: #fef2f2;
  --color-error-text: #7f1d1d;
  --color-error-border: #ef4444;

  /* Rounded Radii System */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-pill: 9999px;

  /* Typography Stack */
  --font-magic: "Instrument Serif", "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, sans-serif;
  --font-sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, Monaco, monospace;

  /* Strict Typographic Scale with Line-Height & Letter-Spacing Tuning (Multi-Device Fluid Clamps) */
  --text-2xs: clamp(0.6875rem, 0.64rem + 0.18vw, 0.75rem);   /* 11-12px */
  --leading-2xs: 1.35;
  --tracking-2xs: 0.06em;

  --text-xs: clamp(0.75rem, 0.7rem + 0.22vw, 0.8125rem);     /* 12-13px */
  --leading-xs: 1.4;
  --tracking-xs: 0.04em;

  --text-sm: clamp(0.875rem, 0.825rem + 0.22vw, 0.9375rem);  /* 14-15px */
  --leading-sm: 1.5;
  --tracking-sm: 0.02em;

  --text-base: clamp(0.9375rem, 0.88rem + 0.25vw, 1.0625rem); /* 15-17px */
  --leading-base: 1.6;
  --tracking-base: -0.01em;

  --text-lg: clamp(1.0625rem, 0.98rem + 0.38vw, 1.25rem);    /* 17-20px */
  --leading-lg: 1.4;
  --tracking-lg: -0.02em;

  --text-xl: clamp(1.25rem, 1.12rem + 0.55vw, 1.625rem);     /* 20-26px */
  --leading-xl: 1.3;
  --tracking-xl: -0.025em;

  --text-2xl: clamp(1.45rem, 1.28rem + 0.9vw, 2.25rem);      /* 23-36px */
  --leading-2xl: 1.2;
  --tracking-2xl: -0.03em;

  --text-3xl: clamp(1.75rem, 1.45rem + 1.6vw, 3.15rem);      /* 28-50px */
  --leading-3xl: 1.15;
  --tracking-3xl: -0.035em;

  --text-4xl: clamp(2.15rem, 1.75rem + 2.5vw, 4.25rem);      /* 34-68px */
  --leading-4xl: 1.05;
  --tracking-4xl: -0.04em;

  --text-hero: clamp(2.15rem, 1.45rem + 3.6vw, 5.25rem);     /* 34-84px - Safe on 320px+ */
  --leading-hero: 0.96;
  --tracking-hero: -0.035em;

  /* Spatial Rhythm (Strict 4px/8px Unit Mapping) */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* Legacy Spacing Tokens Mapped to 4px/8px Rhythm */
  --space-2xs: var(--space-1);
  --space-xs: var(--space-2);
  --space-sm: var(--space-3);
  --space-md: var(--space-4);
  --space-lg: var(--space-6);
  --space-xl: var(--space-8);
  --space-2xl: var(--space-12);
  --space-3xl: var(--space-16);
  --space-4xl: var(--space-24);

  /* Layout Widths & Heights with Fluid Responsive Header Height */
  --max-width-container: 1360px;
  --header-height: clamp(58px, 54px + 1.2vw, 70px);
  --nav-height: var(--header-height);

  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);       /* Snappy interactions (hover, click, toggle) */
  --ease-quick: cubic-bezier(0.2, 0, 0, 1);          /* Rapid immediate response */
  --ease-layout: cubic-bezier(0.65, 0, 0.35, 1);     /* Smooth structural layout shifts */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);  /* Playful elastic spring bounce */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);    /* Exponential deceleration */
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-nav-show: cubic-bezier(0.16, 1, 0.3, 1);     /* Smooth snappy entrance from top */
  --ease-nav-hide: cubic-bezier(0.4, 0, 0.2, 1);      /* Smooth accelerated departure to top */

  /* Systematic Transitions */
  --transition-fast: background-color 0.18s var(--ease-snappy), color 0.18s var(--ease-snappy), border-color 0.18s var(--ease-snappy), opacity 0.18s var(--ease-snappy);
  --transition-smooth: all 0.35s var(--ease-layout);
  --transition-spring: transform 0.38s var(--ease-spring);
  --transition-snappy: all 0.22s var(--ease-snappy);
}

/* ==========================================================================
   2. Reset, Base Styles & Custom Text Selection
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom Text Selection */
::selection {
  background-color: var(--color-accent);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-accent);
  color: #ffffff;
  text-shadow: none;
}

/* Custom Styled Scrollbar & Anti-Shift Layout */
html {
  font-family: var(--font-sans);
  font-size: 100%;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) var(--color-surface);
}

/* Desktop Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-surface);
  border-left: 1px solid var(--color-border-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-surface);
  transition: background-color 0.2s var(--ease-out-expo);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-accent);
}

/* Clean Mobile Scrollbar (No Layout Shift) */
@media (max-width: 899px) {
  html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

body.nav-locked {
  overflow-y: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-md);
  z-index: 9999;
  background-color: var(--color-accent);
  color: #ffffff;
  border: 1.5px solid #000000;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: 800;
  border-radius: var(--radius-pill);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ==========================================================================
   3. Custom SVG Transformations, Arrow Rotations & Keyframes (Cubic-Beziers)
   ========================================================================== */

/* Keyframe Animations */
@keyframes svgSpinContinuous {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes svgSpinReverseContinuous {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes svgPulseBreathe {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.75;
  }
}

@keyframes svgRayOscillate {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(45deg);
  }
}

@keyframes svgDashOffsetFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 100; }
}

@keyframes svgTickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes formPulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.form-highlight-pulse {
  animation: formPulseGlow 1.2s var(--ease-out-expo) 2;
}

/* Hero Continuous Floating & Drifting SVG Animations (Phase-Offset & Asynchronous) */
@keyframes heroDrift1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(16px, -24px) rotate(6deg);
  }
  50% {
    transform: translate(-12px, -36px) rotate(12deg);
  }
  75% {
    transform: translate(-20px, -12px) rotate(4deg);
  }
}

@keyframes heroDrift2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-24px, 20px) rotate(-120deg);
  }
  66% {
    transform: translate(18px, -16px) rotate(-240deg);
  }
}

@keyframes heroDrift3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(14px, 28px) scale(1.18);
    opacity: 1;
  }
}

@keyframes heroDrift4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-18px, -22px) rotate(45deg);
  }
}

/* Hero Drifting SVG Backdrop Container & Shapes */
.hero-drift-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-drift-shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s var(--ease-snappy);
}

.hero-drift-1 {
  top: 10%;
  left: 3%;
  width: clamp(70px, 9vw, 130px);
  height: clamp(70px, 9vw, 130px);
  color: var(--color-purple-400);
  opacity: 0.14;
  animation: heroDrift1 18s var(--ease-layout) infinite;
}

.hero-drift-2 {
  top: 15%;
  right: 6%;
  width: clamp(80px, 11vw, 150px);
  height: clamp(80px, 11vw, 150px);
  color: var(--color-lime-500);
  opacity: 0.16;
  animation: heroDrift2 26s linear infinite;
  animation-delay: -5s;
}

.hero-drift-3 {
  bottom: 8%;
  left: 28%;
  width: clamp(55px, 7vw, 95px);
  height: clamp(55px, 7vw, 95px);
  color: var(--color-purple-600);
  opacity: 0.12;
  animation: heroDrift3 14s var(--ease-layout) infinite;
  animation-delay: -2.5s;
}

.hero-drift-4 {
  bottom: 18%;
  right: 32%;
  width: clamp(45px, 6vw, 80px);
  height: clamp(45px, 6vw, 80px);
  color: var(--color-purple-500);
  opacity: 0.13;
  animation: heroDrift4 21s var(--ease-layout) infinite;
  animation-delay: -8s;
}

/* ==========================================================================
   3.01 Low-Opacity SVG Geometric & Dot Background Patterns (Solids Only, 0.03-0.08)
   ========================================================================== */
.bg-pattern-grid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cpath d='M 36 0 L 0 0 0 36' fill='none' stroke='%230a0a0c' stroke-width='1' stroke-opacity='0.04'/%3E%3Ccircle cx='36' cy='0' r='1.5' fill='%237e22ce' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.bg-pattern-dots {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='%230a0a0c' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.bg-pattern-mesh {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M 0 48 L 48 0 M 0 0 L 48 48' stroke='%230a0a0c' stroke-width='0.75' stroke-opacity='0.03' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* 3.1 Diagonal Extensible Arrow (.svg-arrow-extensible) */
.svg-arrow-extensible {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  overflow: visible;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.38s var(--ease-spring);
  transform-origin: center;
}

.svg-arrow-extensible .arrow-shaft {
  transform-box: view-box;
  transform-origin: 6px 18px;
  transition: transform 0.38s var(--ease-spring);
}

.svg-arrow-extensible .arrow-head {
  transition: transform 0.38s var(--ease-spring);
}

/* Hover on interactive items specifically */
.btn:hover .svg-arrow-extensible,
.release-action-btn:hover .svg-arrow-extensible,
.service-footer-pill:hover .svg-arrow-extensible,
.social-pill:hover .svg-arrow-extensible,
.has-svg-hover:hover .svg-arrow-extensible {
  transform: scale(1.12);
}

/* Directional variants for extensible diagonal arrow (default is 45deg / Northeast) */
.svg-arrow-extensible.arrow-up {
  transform: rotate(-45deg);
}

.btn:hover .svg-arrow-extensible.arrow-up,
.release-action-btn:hover .svg-arrow-extensible.arrow-up,
.service-footer-pill:hover .svg-arrow-extensible.arrow-up,
.social-pill:hover .svg-arrow-extensible.arrow-up,
.has-svg-hover:hover .svg-arrow-extensible.arrow-up {
  transform: rotate(-45deg) scale(1.12);
}

.svg-arrow-extensible.arrow-left {
  transform: rotate(-135deg);
}

.btn:hover .svg-arrow-extensible.arrow-left,
.release-action-btn:hover .svg-arrow-extensible.arrow-left,
.service-footer-pill:hover .svg-arrow-extensible.arrow-left,
.social-pill:hover .svg-arrow-extensible.arrow-left,
.has-svg-hover:hover .svg-arrow-extensible.arrow-left {
  transform: rotate(-135deg) scale(1.12);
}

.svg-arrow-extensible.arrow-right {
  transform: rotate(45deg);
}

.btn:hover .svg-arrow-extensible.arrow-right,
.has-svg-hover:hover .svg-arrow-extensible.arrow-right {
  transform: rotate(45deg) scale(1.12);
}

.svg-arrow-extensible.arrow-down {
  transform: rotate(135deg);
}

.btn:hover .svg-arrow-extensible.arrow-down,
.has-svg-hover:hover .svg-arrow-extensible.arrow-down {
  transform: rotate(135deg) scale(1.12);
}

.btn:hover .svg-arrow-extensible .arrow-shaft,
.release-action-btn:hover .svg-arrow-extensible .arrow-shaft,
.service-footer-pill:hover .svg-arrow-extensible .arrow-shaft,
.social-pill:hover .svg-arrow-extensible .arrow-shaft,
.has-svg-hover:hover .svg-arrow-extensible .arrow-shaft {
  transform: scale(1.22);
}

.btn:hover .svg-arrow-extensible .arrow-head,
.release-action-btn:hover .svg-arrow-extensible .arrow-head,
.service-footer-pill:hover .svg-arrow-extensible .arrow-head,
.social-pill:hover .svg-arrow-extensible .arrow-head,
.has-svg-hover:hover .svg-arrow-extensible .arrow-head {
  transform: translate(2.5px, -2.5px);
}

/* 3.2 "Let's talk" Nav CTA: Rotate arrow from top-right to bottom-right (90deg clockwise) */
.nav-cta .svg-arrow-extensible {
  transition: transform 0.38s var(--ease-spring);
  transform-origin: center;
}

.nav-cta:hover .svg-arrow-extensible,
.nav-cta:focus-visible .svg-arrow-extensible {
  transform: rotate(90deg) scale(1.12);
}

/* 3.3 Horizontal Extensible Arrow (.svg-arrow-horizontal) */
.svg-arrow-horizontal {
  width: 22px;
  height: 14px;
  flex-shrink: 0;
  overflow: visible;
  display: inline-block;
  transform-origin: center;
  transition: transform 0.35s var(--ease-spring);
}

.svg-arrow-horizontal.arrow-left {
  transform: rotate(180deg);
}

.svg-arrow-horizontal.arrow-up {
  transform: rotate(-90deg);
}

.svg-arrow-horizontal.arrow-down {
  transform: rotate(90deg);
}

.svg-arrow-horizontal .shaft-line {
  transform-box: view-box;
  transform-origin: 3px 8px;
  transition: transform 0.35s var(--ease-spring);
}

.svg-arrow-horizontal .head-point {
  transition: transform 0.35s var(--ease-spring);
}

.btn:hover .svg-arrow-horizontal,
.has-svg-hover:hover > .svg-arrow-horizontal {
  transform: scale(1.1);
}

.btn:hover .svg-arrow-horizontal.arrow-left,
.has-svg-hover:hover > .svg-arrow-horizontal.arrow-left {
  transform: rotate(180deg) scale(1.1);
}

.btn:hover .svg-arrow-horizontal.arrow-up,
.has-svg-hover:hover > .svg-arrow-horizontal.arrow-up {
  transform: rotate(-90deg) scale(1.1);
}

.btn:hover .svg-arrow-horizontal.arrow-down,
.has-svg-hover:hover > .svg-arrow-horizontal.arrow-down {
  transform: rotate(90deg) scale(1.1);
}

.btn:hover .svg-arrow-horizontal .shaft-line,
.has-svg-hover:hover > .svg-arrow-horizontal .shaft-line {
  transform: scaleX(1.28);
}

.btn:hover .svg-arrow-horizontal .head-point,
.has-svg-hover:hover > .svg-arrow-horizontal .head-point {
  transform: translateX(4px);
}

/* 3.4 Custom Hero Spotlight Circular Badge (.svg-spotlight-badge) */
.svg-spotlight-badge {
  position: absolute;
  width: 112px;
  height: 112px;
  top: -18px;
  right: -18px;
  z-index: 10;
  pointer-events: none;
  transform-origin: center;
  transition: transform 0.45s var(--ease-out-expo);
}

.svg-spotlight-badge .badge-bg-disc {
  fill: var(--color-accent);
  stroke: var(--color-border);
  stroke-width: 1.5px;
}

.svg-spotlight-badge .badge-dashed-ring {
  stroke-dasharray: 6 4;
  animation: svgDashOffsetFlow 8s linear infinite;
  stroke: #ffffff;
}

.svg-spotlight-badge .badge-text-ring {
  animation: svgSpinContinuous 20s linear infinite;
  transform-origin: 50px 50px;
}

.svg-spotlight-badge .badge-text-ring text {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2px;
  fill: #ffffff;
  text-transform: uppercase;
}

.svg-spotlight-badge .badge-center-star {
  transform-origin: 50px 50px;
  animation: svgPulseBreathe 3s var(--ease-in-out-smooth) infinite;
  fill: #ffffff;
}

.hero-visual-card:hover .svg-spotlight-badge {
  transform: scale(1.18) rotate(12deg);
}

.hero-visual-card:hover .svg-spotlight-badge .badge-center-star {
  animation: svgRayOscillate 1.5s var(--ease-in-out-smooth) infinite;
}

/* 3.6 Custom Concentric Radar Reticle (.svg-reticle-custom) */
.svg-reticle-custom {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 0.35s var(--ease-spring);
}

.svg-reticle-custom .reticle-outer {
  stroke-dasharray: 4 3;
  animation: svgSpinContinuous 12s linear infinite;
  transform-origin: center;
}

.svg-reticle-custom .reticle-inner {
  transform-origin: center;
  animation: svgSpinReverseContinuous 8s linear infinite;
}

/* ==========================================================================
   3.7 Clean, Minimalist Animated SVGs on "Leistungen" (Services)
   ========================================================================== */
.service-svg-clean {
  width: 38px;
  height: 38px;
  min-width: 38px;
  flex-shrink: 0;
  overflow: visible;
  transition: transform 0.35s var(--ease-spring);
  transform-origin: center;
}

/* Service 1: 360° Management Geometric Polygon */
.service-card:hover .service-svg-poly {
  transform: scale(1.15) rotate(15deg);
}

.service-card:hover .service-svg-poly .clean-poly {
  stroke-width: 2.2px;
}

/* Service 2: Live Booking Stage & Clock Dial */
.service-svg-sound .clock-needle-m {
  transform-origin: 16px 16px;
  transition: transform 0.45s var(--ease-spring);
}

.service-card:hover .service-svg-sound {
  transform: scale(1.15);
}

.service-card:hover .service-svg-sound .clock-needle-m {
  transform: rotate(90deg);
}

/* Service 3: Brand Partnerships Interlocking Rings */
.service-svg-alliances .clean-ring-1 {
  transform-origin: 12px 16px;
  transition: transform 0.35s var(--ease-spring);
}

.service-svg-alliances .clean-ring-2 {
  transform-origin: 20px 16px;
  transition: transform 0.35s var(--ease-spring);
}

.service-card:hover .service-svg-alliances {
  transform: scale(1.15);
}

.service-card:hover .service-svg-alliances .clean-ring-1 {
  transform: translateX(2.5px);
}

.service-card:hover .service-svg-alliances .clean-ring-2 {
  transform: translateX(-2.5px);
}

.service-svg-alliances .nexus-core {
  transform-origin: 24px 24px;
  animation: svgPulseBreathe 2.5s var(--ease-in-out-smooth) infinite;
}

.service-card:hover .service-svg-alliances {
  transform: scale(1.16);
}

.service-card:hover .service-svg-alliances .ring-left {
  transform: translateX(4px) scale(1.08);
}

.service-card:hover .service-svg-alliances .ring-right {
  transform: translateX(-4px) scale(1.08);
}

.service-card:hover .service-svg-alliances .orbiting-nodes {
  animation-duration: 2.5s;
}

/* 3.8 Release Vinyl Grooves SVG */
.vinyl-overlay-svg {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  z-index: 2;
  color: #ffffff;
  pointer-events: none;
  transition: transform 0.38s var(--ease-spring);
}

.vinyl-overlay-svg .groove-track {
  stroke-dasharray: 6 3;
  animation: svgSpinContinuous 8s linear infinite;
  transform-origin: center;
}

.release-card:hover .vinyl-overlay-svg {
  transform: scale(1.15);
}

.release-card:hover .vinyl-overlay-svg .groove-track {
  animation-duration: 2s;
}

/* 3.9 Modal Close Cross SVG */
.close-cross-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}

.close-cross-svg .cross-line-1,
.close-cross-svg .cross-line-2 {
  transform-origin: center;
  transition: transform 0.35s var(--ease-out-expo);
}

.modal-close-btn:hover .close-cross-svg {
  transform: scale(1.2);
}

.modal-close-btn:hover .close-cross-svg .cross-line-1 {
  transform: rotate(90deg);
}

.modal-close-btn:hover .close-cross-svg .cross-line-2 {
  transform: rotate(90deg);
}

/* ==========================================================================
   4. Typography & Utility Classes & Color Badges
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(12px, 3.5vw, 40px);
  padding-right: clamp(12px, 3.5vw, 40px);
}

@media (min-width: 768px) {
  .container {
    padding-left: clamp(24px, 4vw, 44px);
    padding-right: clamp(24px, 4vw, 44px);
  }
}

.mono {
  font-family: var(--font-mono);
}

/* Pill Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.38rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-primary);
  width: fit-content;
  max-width: 100%;
  transition: var(--transition-fast);
}

.pill-badge-purple,
.pill-badge-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-border);
}

.pill-badge-lime,
.pill-badge-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-text);
  border-color: var(--color-border);
}

.pill-badge-blue {
  background-color: var(--color-accent-blue);
  color: #ffffff;
  border-color: var(--color-border);
}

.pill-badge-dark {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
  border-color: var(--color-inverted-bg);
}

.pill-badge-tint-purple,
.pill-badge-tint-accent {
  background-color: var(--color-purple-100);
  color: var(--color-purple-800);
  border-color: var(--color-purple-300);
}

.pill-badge-tint-lime,
.pill-badge-tint-secondary {
  background-color: var(--color-lime-100);
  color: var(--color-lime-800);
  border-color: var(--color-lime-300);
}

.pill-badge-tint-blue {
  background-color: var(--color-tint-blue);
  color: #0d2c94;
  border-color: #9ab6ff;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
  background-color: var(--color-purple-100);
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: 100%;
}

.section-header {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-lead {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 540px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* Button & Pill Styles with Strict Micro-State Integrity */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-fast), transform 0.18s var(--ease-snappy);
  white-space: nowrap;
  position: relative;
  user-select: none;
  min-height: 44px;
}

.btn:hover {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
  border-color: var(--color-inverted-bg);
}

.btn:active {
  transform: scale(0.975);
}

.btn:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
}

.btn:disabled,
.btn[disabled],
.btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  border-color: var(--color-border-light);
}

.btn.is-loading,
.btn[aria-busy="true"] {
  cursor: wait;
  pointer-events: none;
  opacity: 0.8;
}

/* Primary Light Purple Action Button */
.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-border);
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  color: #ffffff;
  border-color: var(--color-border);
}

.btn-accent:active {
  background-color: var(--color-accent-darker);
  transform: scale(0.975);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-secondary:active {
  transform: scale(0.975);
}

.btn-primary {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
  border-color: var(--color-inverted-bg);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-border);
}

.btn-primary:active {
  transform: scale(0.975);
}

.btn-ghost {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-primary);
}

.btn-ghost:hover {
  background-color: var(--color-surface-hover);
  border-color: var(--color-border);
  color: var(--color-text-primary);
}

.btn-ghost:active {
  background-color: var(--color-surface-active);
  transform: scale(0.975);
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: var(--text-base);
  border-radius: var(--radius-pill);
  min-height: 48px;
}

.btn-full {
  width: 100%;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}

/* ==========================================================================
   5. Dynamic Floating Pill Header with Morphing Top-Right Compact Tab
   ========================================================================== */
.site-header {
  --nav-offset-x: 8px;
  --nav-top: 8px;
  --nav-max-width: var(--max-width-container);

  position: sticky;
  top: var(--nav-top);
  z-index: 1000;
  margin-left: auto;
  margin-right: max(var(--nav-offset-x), calc((100vw - var(--nav-max-width)) / 2));
  width: min(calc(100vw - (var(--nav-offset-x) * 2)), var(--nav-max-width));
  max-width: var(--nav-max-width);
  margin-bottom: calc(-1 * (var(--header-height) + var(--nav-top)));
  --header-scroll-ratio: 0;
  transform-origin: top right;
  will-change: width, max-width, top, margin-right, margin-bottom, transform;
  transition: width 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              max-width 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              top 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              margin-right 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              margin-bottom 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 480px) {
  .site-header {
    --nav-offset-x: 10px;
    --nav-top: 10px;
  }
}

@media (min-width: 900px) {
  .site-header {
    --nav-offset-x: 14px;
    --nav-top: 14px;
  }
}

.header-inner {
  position: relative;
  height: var(--header-height);
  width: 100%;
  background-color: rgba(255, 255, 255, var(--header-scroll-ratio, 0));
  border: 1.5px solid rgba(10, 10, 12, var(--header-scroll-ratio, 0));
  border-radius: var(--radius-pill);
  padding-block: 4px;
  padding-left: clamp(10px, 2.5vw, var(--space-lg));
  padding-right: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px -4px rgba(10, 10, 12, calc(var(--header-scroll-ratio, 0) * 0.08));
  overflow: hidden;
  transform-origin: top right;
  transition: width 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.4s ease,
              border-color 0.4s ease,
              border-radius 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s var(--ease-spring);
}

.site-header.is-scrolled .header-inner {
  background-color: var(--color-bg);
  border-color: var(--color-border);
  box-shadow: 0 4px 20px -4px rgba(10, 10, 12, 0.08);
}

.header-expanded-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  filter: blur(0);
  transform-origin: center right;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
              visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
              transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.16s,
              filter 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

/* Compact Tab Trigger (Always positioned, gracefully toggled via opacity/scale) */
.header-compact-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.65);
  transform-origin: center center;
  transition: opacity 0.18s ease-out,
              visibility 0.18s ease-out,
              transform 0.22s ease-out;
}

.compact-logo-img {
  width: clamp(26px, 4vw, 32px);
  height: clamp(26px, 4vw, 32px);
  border-radius: var(--radius-pill);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}

/* Floating Tooltip Pill under Compact Tab */
.compact-badge-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  right: 50%;
  transform: translateX(50%) translateY(-4px);
  padding: 3px 9px;
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(10, 10, 12, 0.2);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease-snappy),
              transform 0.25s var(--ease-spring),
              visibility 0.2s;
}

/* ==========================================================================
   Compacted State: Morphs smoothly to top: -4px, width: nav-height, rounded bottom corners
   ========================================================================== */
.site-header.is-compact {
  top: -4px !important;
  width: var(--header-height) !important;
  max-width: var(--header-height) !important;
  height: calc(var(--header-height) + 4px) !important;
  margin-right: max(var(--nav-offset-x), calc((100vw - var(--nav-max-width)) / 2)) !important;
  margin-left: auto !important;
  margin-bottom: calc(-1 * (var(--header-height) + 4px)) !important;
  cursor: pointer;
}

.site-header.is-compact .header-inner {
  height: calc(var(--header-height) + 4px);
  padding: 4px 0 0 0;
  justify-content: center;
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: var(--radius-pill);
  border-bottom-right-radius: var(--radius-pill);
  box-shadow: 0 8px 24px -4px rgba(10, 10, 12, 0.18);
}

.site-header.is-compact .header-inner:hover {
  background-color: var(--color-purple-50);
  border-color: var(--color-accent);
  box-shadow: 0 14px 32px -4px rgba(168, 85, 247, 0.3);
  transform: translateY(4px);
}

.site-header.is-compact .header-inner:hover .compact-logo-img {
  transform: scale(1.12) rotate(12deg);
}

.site-header.is-compact:hover .compact-badge-tooltip,
.site-header.is-compact:focus-visible .compact-badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.site-header.is-compact .header-expanded-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.92) translateX(12px);
  filter: blur(4px);
  transition: opacity 0.18s ease-out,
              visibility 0.18s ease-out,
              transform 0.22s ease-out,
              filter 0.18s ease-out;
}

.site-header.is-compact .header-compact-trigger {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
              transform 0.45s var(--ease-spring) 0.18s;
}

/* Always force header visible & expanded when mobile drawer is opened */
body.nav-locked .site-header {
  top: var(--nav-top) !important;
  width: min(calc(100vw - (var(--nav-offset-x) * 2)), var(--nav-max-width)) !important;
  max-width: var(--nav-max-width) !important;
  margin-left: auto !important;
  margin-right: max(var(--nav-offset-x), calc((100vw - var(--nav-max-width)) / 2)) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.nav-locked .site-header .header-inner {
  border-radius: var(--radius-pill) !important;
  border-top: 1.5px solid var(--color-border) !important;
}

body.nav-locked .site-header .header-expanded-content {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
  filter: none !important;
}

body.nav-locked .site-header .header-compact-trigger {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.nav-locked .compact-badge-tooltip {
  display: none !important;
}

/* Mobile & Tablet: Fixed, persistent full navigation bar (never hidden/compacted on scroll) */
@media (max-width: 899px) {
  .site-header,
  .site-header.is-compact {
    position: sticky !important;
    top: var(--nav-top) !important;
    width: min(calc(100vw - (var(--nav-offset-x) * 2)), var(--nav-max-width)) !important;
    max-width: var(--nav-max-width) !important;
    height: var(--header-height) !important;
    margin-bottom: calc(-1 * (var(--header-height) + var(--nav-top))) !important;
    margin-left: auto !important;
    margin-right: max(var(--nav-offset-x), calc((100vw - var(--nav-max-width)) / 2)) !important;
    transform: none !important;
    cursor: default !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .header-inner,
  .site-header.is-compact .header-inner {
    height: var(--header-height) !important;
    border-radius: var(--radius-pill) !important;
    border: 1.5px solid var(--color-border) !important;
    padding-left: clamp(10px, 2.5vw, var(--space-lg)) !important;
    padding-right: 6px !important;
    justify-content: space-between !important;
    transform: none !important;
    background-color: var(--color-bg) !important;
    box-shadow: 0 4px 20px -4px rgba(10, 10, 12, 0.08) !important;
  }

  .site-header .header-expanded-content,
  .site-header.is-compact .header-expanded-content {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    filter: none !important;
  }

  .site-header .header-compact-trigger,
  .site-header.is-compact .header-compact-trigger,
  .site-header .compact-badge-tooltip,
  .site-header.is-compact .compact-badge-tooltip {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Clean Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(0.85rem, 2vw, var(--text-base));
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.logo-img {
  width: clamp(28px, 4vw, 34px);
  height: clamp(28px, 4vw, 34px);
  border-radius: var(--radius-pill);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}

.logo:hover .logo-img {
  transform: scale(1.1);
}

.main-nav {
  display: none;
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(var(--space-md), 2vw, var(--space-xl));
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-link {
    font-size: var(--text-sm);
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-pill);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    white-space: nowrap;
  }

  .nav-link:hover {
    color: var(--color-text-primary);
    background-color: var(--color-surface-hover);
  }

  /* Active Navigation Link State */
  .nav-link.active,
  .nav-link.is-active {
    background-color: var(--color-inverted-bg);
    color: var(--color-inverted-text);
  }

  .nav-cta {
    margin-left: 4px;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

@media (min-width: 480px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

.menu-toggle:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

.menu-toggle:hover svg {
  transform: scale(1.15) rotate(90deg);
  transition: transform 0.35s var(--ease-spring);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Nav Panel (No Layout Shift) */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 74px;
  left: 8px;
  right: 8px;
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  padding: 18px 14px;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
  max-height: calc(100dvh - 84px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 16px 40px -10px rgba(10, 10, 12, 0.2);
}

@media (min-width: 480px) {
  .mobile-nav-panel {
    top: 84px;
    left: 12px;
    right: 12px;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    max-height: calc(100dvh - 96px);
  }
}

.mobile-nav-panel.is-open {
  display: flex;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.mobile-nav-link:hover {
  background-color: var(--color-surface-hover);
}

.mobile-nav-link.active,
.mobile-nav-link.is-active {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
}

.mobile-nav-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (max-height: 520px) {
  .mobile-nav-panel {
    padding: 12px 14px;
    gap: 8px;
  }
  .mobile-nav-link {
    font-size: 0.9375rem;
    padding: 0.45rem 0.75rem;
    min-height: 38px;
  }
  .mobile-nav-footer {
    padding-top: 8px;
  }
}

/* ==========================================================================
   6. Hero Section — Modern Cultural Management & Visual Showcase
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: clamp(1.75rem, 3.5vh, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .hero-section,
  .hero-section * {
    cursor: none !important;
  }
}

/* Custom Animated Astroid Star Cursor with Smooth Cubic-Bezier Scaling */
.hero-star-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 99999;
  color: var(--color-accent);
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: opacity 0.22s ease-out;
}

.hero-star-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
  fill-opacity: 0.5;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.35));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s var(--ease-snappy), fill-opacity 0.25s var(--ease-snappy), filter 0.3s var(--ease-snappy);
  transform-origin: center center;
}

.hero-star-cursor.is-visible {
  opacity: 1;
}

.hero-star-cursor.is-hovering svg {
  transform: scale(1.68) rotate(18deg);
  color: var(--color-accent-lighter);
  stroke: var(--color-purple-900);
  fill-opacity: 0.6;
  filter: drop-shadow(0 4px 16px rgba(192, 132, 252, 0.55)) drop-shadow(0 2px 6px rgba(10, 10, 12, 0.25));
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }
}

.hero-section .container {
  width: 100%;
}

/* Floating Vector Star Doodles */
@keyframes starFloat1 {
  0% { transform: rotate(0deg) scale(0.97); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(0.97); }
}

@keyframes starFloat2 {
  0% { transform: rotate(0deg) scale(1.03); }
  50% { transform: rotate(-180deg) scale(0.96); }
  100% { transform: rotate(-360deg) scale(1.03); }
}

@keyframes starFloat3 {
  0% { transform: rotate(0deg) scale(0.96); }
  50% { transform: rotate(180deg) scale(1.06); }
  100% { transform: rotate(360deg) scale(0.96); }
}

.doodle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  display: inline-flex;
}

.doodle-star-1 {
  top: 14%;
  left: 3%;
  color: var(--color-accent);
  opacity: 0.9;
  animation: starFloat1 65s linear infinite;
}

.doodle-star-2 {
  bottom: 14%;
  left: 46%;
  color: var(--color-lime-600);
  opacity: 0.8;
  animation: starFloat2 75s linear infinite;
  animation-delay: -15s;
}

.doodle-star-3 {
  top: 9%;
  right: 44%;
  color: var(--color-purple-400);
  opacity: 0.85;
  animation: starFloat3 58s linear infinite;
  animation-delay: -22s;
}

@media (max-width: 575px) {
  .doodle {
    opacity: 0.45;
  }
}

/* Hero Grid Layout */
.hero-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-layout-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero-layout-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

/* Hero Copy Column */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  gap: var(--space-md);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  background-color: var(--color-purple-100);
  border: 1.5px solid var(--color-border);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: 100%;
}

.hero-title {
  font-family: var(--font-display, var(--font-sans));
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-title-prefix {
  display: block;
  color: var(--color-text-primary);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-rotator-line {
  display: block;
  line-height: 0.96;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-rotator-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: baseline;
  height: 1.34em;
  padding: 0.04em 0.15em 0.18em 0;
  margin-bottom: -0.15em;
}

.hero-rotator-text {
  display: inline-block;
  font-family: var(--font-magic, "Instrument Serif", "Fraunces", Georgia, serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.15em;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--color-accent);
  will-change: transform, opacity;
  transition: transform 0.36s var(--ease-spring), opacity 0.3s var(--ease-snappy);
  white-space: nowrap;
  padding-bottom: 0.1em;
}

.hero-rotator-text.is-changing {
  transform: translateY(-100%);
  opacity: 0;
}

.hero-rotator-text.is-entering {
  transform: translateY(100%);
  opacity: 0;
  transition: none !important;
}

.hero-title-suffix {
  display: block;
  color: var(--color-text-primary);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: -0.05em;
}

/* Fallback / General Title Highlight */
.hero-title-highlight {
  color: var(--color-accent);
  display: inline;
  transition: color 0.2s var(--ease-snappy);
}

.hero-title:hover .hero-title-highlight {
  color: var(--color-accent-dark);
}

.hero-intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 520px;
  overflow-wrap: break-word;
}

/* Metric Strip */
.hero-metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  align-items: stretch;
}

@media (min-width: 480px) {
  .hero-metric-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
  }
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.38rem 0.55rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background-color: var(--color-surface);
  min-width: 0;
  transition: border-color 0.2s var(--ease-snappy), transform 0.25s var(--ease-spring), background-color 0.2s var(--ease-snappy);
}

@media (min-width: 480px) {
  .metric-pill {
    padding: 0.45rem 0.85rem;
  }
}

.metric-pill:hover {
  border-color: var(--color-accent);
  transform: scale(1.02);
  background-color: var(--color-bg);
}

.metric-pill-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.3s var(--ease-spring), color 0.2s var(--ease-snappy);
}

@media (min-width: 480px) {
  .metric-pill-icon {
    width: 18px;
    height: 18px;
  }
}

.metric-pill:hover .metric-pill-icon {
  transform: scale(1.15);
  color: var(--color-accent-dark);
}

.metric-pill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.metric-pill-val {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 2vw, var(--text-base));
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.1;
  white-space: nowrap;
}

.metric-pill-lbl {
  font-family: var(--font-mono);
  font-size: clamp(8px, 1.4vw, var(--text-2xs));
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* ==========================================================================
   Hero Visual Column: Poster Container, Floating Overlay & Interactive Chips
   ========================================================================== */
@keyframes chipFloatPulse {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.025) rotate(-1.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes chipFloatLime {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.03) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes stickerTiltWobble {
  0%, 100% {
    transform: rotate(3.5deg) scale(1);
  }
  50% {
    transform: rotate(1deg) scale(1.035);
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-self: center;

  /* Poster Card Container with Wide Landscape Image */
  .twins-hero-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: var(--radius-2xl);
    border: 1.5px solid var(--color-border);
    overflow: hidden;
    background-color: var(--color-surface);
    box-shadow: 0 16px 44px -10px rgba(10, 10, 12, 0.14), 0 4px 12px rgba(10, 10, 12, 0.04);
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    &:hover {
      border-color: var(--color-accent);
      box-shadow: 0 24px 56px -10px rgba(168, 85, 247, 0.25), 0 6px 16px rgba(10, 10, 12, 0.06);
      transform: scale(1.015);

      .twins-hero-img {
        transform: scale(1.04);
      }

      .twins-hero-caption {
        border-color: rgba(168, 85, 247, 0.45);
      }
    }

    .twins-hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Overlaid Caption on Top of Image with Dark Lower-Opacity Background */
    .twins-hero-caption {
      position: absolute;
      bottom: 12px;
      left: 12px;
      right: 12px;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-xs);
      padding: 8px 12px;
      background-color: rgba(10, 10, 12, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius-xl);
      box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.35);
      transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1);

      .twins-caption-info {
        display: flex;
        flex-direction: column;
        gap: 1px;
        min-width: 0;
      }

      .caption-tag {
        font-family: var(--font-mono);
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--color-purple-300);
      }

      .caption-name {
        font-family: var(--font-display, var(--font-sans));
        font-size: clamp(0.85rem, 2vw, var(--text-base));
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.01em;
        line-height: 1.1;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .caption-role {
        font-family: var(--font-mono);
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .twins-hero-link {
        display: inline-flex;
        align-items: center;
        gap: var(--space-2xs);
        padding: 0.35rem 0.75rem;
        border-radius: var(--radius-pill);
        background-color: #ffffff;
        color: #0a0a0c;
        font-family: var(--font-mono);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        border: 1.5px solid transparent;
        transition: background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
        text-decoration: none;
        flex-shrink: 0;
        position: relative;
        z-index: 10;

        &:hover {
          background-color: var(--color-accent);
          border-color: var(--color-accent);
          color: #ffffff;
        }
      }
    }
  }

  /* Floating Stat Chips */
  .hero-float-chip {
    position: absolute;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0.65rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 12px 28px -6px rgba(10, 10, 12, 0.14);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    cursor: default;

    &:hover {
      animation-play-state: paused;
      transform: scale(1.08) !important;
      border-color: var(--color-accent);
      box-shadow: 0 18px 40px -4px rgba(168, 85, 247, 0.28);
      z-index: 10;

      .chip-svg {
        transform: scale(1.25);
        color: var(--color-accent);
      }
    }

    .chip-icon-row {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .chip-svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .chip-val {
      font-family: var(--font-mono);
      font-size: var(--text-xl);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.02em;
    }
  }

  /* Floating Slots: Handle Ambient Motion Without Blocking Smooth Hover Transitions */
  .hero-float-slot {
    position: absolute;
    pointer-events: none;
  }

  .hero-float-slot > * {
    pointer-events: auto;
  }

  .slot-instagram {
    top: -24px;
    left: -44px;
    z-index: 6;
    animation: chipFloatPulse 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .slot-views {
    top: 36%;
    left: -44px;
    z-index: 6;
    animation: chipFloatLime 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -3s;
  }

  .slot-release {
    top: 14px;
    right: -46px;
    z-index: 7;
    animation: stickerTiltWobble 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .stat-card-instagram {
    background-color: var(--color-bg);
  }

  .stat-card-views {
    background-color: var(--color-lime-200);
    color: var(--color-lime-900);
    border-color: var(--color-border);
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.05rem;
    white-space: nowrap;

    .chip-icon-row {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .chip-val {
      font-family: var(--font-mono);
      font-size: var(--text-xl);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.02em;
      padding-left: 9px;
      border-left: 1.5px solid rgba(26, 46, 5, 0.25);
    }

    &:hover {
      border-color: var(--color-border);
      box-shadow: 0 18px 40px -4px rgba(132, 204, 22, 0.38);

      .chip-svg {
        color: var(--color-lime-900);
      }
    }
  }

  /* Floating Release Sticker */
  .hero-release-sticker {
    background-color: var(--color-accent);
    color: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 14px 32px -8px rgba(168, 85, 247, 0.38);
    text-decoration: none;
    transform: rotate(3.5deg) scale(1);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);

    &:hover {
      transform: rotate(0deg) scale(1.08);
      background-color: var(--color-accent-dark);
      box-shadow: 0 20px 42px -6px rgba(168, 85, 247, 0.48);
    }

    .sticker-head {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      opacity: 0.9;
    }

    .sticker-tag {
      font-family: var(--font-mono);
      font-size: 9.5px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .sticker-title {
      font-family: var(--font-display, var(--font-sans));
      font-size: var(--text-base);
      font-weight: 800;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .sticker-cta {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-top: 2px;
      color: #ffffff;
    }
  }

  @media (max-width: 991px) {
    max-width: 480px;
    margin-top: var(--space-sm);

    .slot-instagram {
      left: -20px;
      top: -18px;
    }
    .slot-views {
      left: -20px;
      top: 36%;
    }
    .slot-release {
      right: -20px;
      top: 12px;
    }
  }

  @media (max-width: 575px) {
    max-width: 100%;
    margin-top: var(--space-xs);

    .twins-hero-card {
      border-radius: var(--radius-xl);
    }

    .slot-instagram {
      left: 6px;
      top: -12px;
      transform: scale(0.82);
      transform-origin: top left;
    }
    .slot-views {
      left: 6px;
      top: 36%;
      transform: scale(0.82);
      transform-origin: left center;
    }
    .slot-release {
      right: 6px;
      top: 8px;
      transform: scale(0.84);
      transform-origin: top right;
    }
  }
}

/* ==========================================================================
   6.5 Brands & Partners — Pure Moving SVG Logos Marquee
   ========================================================================== */
.brands-section {
  padding: clamp(1.25rem, 2.5vh, 2rem) 0;
  border-top: 1.5px solid var(--color-border);
  border-bottom: 1.5px solid var(--color-border);
  background-color: var(--color-surface);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brands-marquee {
  width: 100%;
  overflow: shown;
  position: relative;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  width: max-content;
  animation: brandsMarquee 32s linear infinite;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brandsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: transparent;
  border: none;
  opacity: 0.52;
  transition: opacity 0.28s var(--ease-out-expo), transform 0.28s var(--ease-spring);
  user-select: none;
  cursor: pointer;
}

.brand-item:hover {
  opacity: 1;
  transform: scale(1.1);
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand-svg {
  height: 30px;
  max-width: 120px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.28s var(--ease-spring);
}

.brand-svg-nike {
  height: 22px;
  max-width: 95px;
}

.brand-svg-universal {
  height: 32px;
  max-width: 130px;
}

.brand-svg-kika {
  height: 30px;
  max-width: 120px;
  filter: brightness(0);
}



/* ==========================================================================
   7. Talent Badges & Tag Pills
   ========================================================================== */
.talent-idx-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  pointer-events: none;
  box-shadow: 0 3px 10px -2px rgba(10, 10, 12, 0.1);
  transition: transform 0.25s var(--ease-spring), background-color 0.2s var(--ease-snappy), color 0.2s var(--ease-snappy), border-color 0.2s var(--ease-snappy);
}

.artist-simple-card:hover .talent-idx-badge,
.artist-detail-figure:hover .talent-idx-badge {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.artist-detail-figure .talent-idx-badge {
  top: clamp(12px, 2.5vw, 18px);
  right: clamp(12px, 2.5vw, 18px);
  padding: 0.3rem 0.75rem;
  font-size: var(--text-xs);
}

/* Category & Tag Pills */
.talent-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  line-height: 1.2;
}

.talent-tag-pill.tag-music {
  background-color: var(--color-purple-50);
  border-color: var(--color-purple-200);
  color: var(--color-accent-dark);
}

.talent-tag-pill.tag-influencer {
  background-color: var(--color-lime-50);
  border-color: var(--color-lime-200);
  color: var(--color-lime-800);
}

.talent-tag-pill.tag-tv {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

.talent-tag-pill.tag-moderator {
  background-color: #e0f2fe;
  border-color: #bae6fd;
  color: #0369a1;
}

/* ==========================================================================
   7.5 Category Filter Tabs & Dedicated Artists Grid System
   ========================================================================== */
.filter-tabs,
.talents-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px 2px;
}

.filter-tabs::-webkit-scrollbar,
.talents-filter-bar::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .filter-tabs,
  .talents-filter-bar {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.filter-tab,
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 40px;
  transition: var(--transition-fast);
}

.filter-tab:hover,
.filter-btn:hover {
  background-color: var(--color-surface-hover);
  border-color: var(--color-border);
}

.filter-tab.active,
.filter-tab.is-active,
.filter-btn.active,
.filter-btn.is-active {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
  border-color: var(--color-inverted-bg);
}

.filter-tab.active[data-filter="music"],
.filter-tab.is-active[data-filter="music"],
.filter-btn.active[data-filter="music"],
.filter-btn.is-active[data-filter="music"] {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-border);
}

.filter-tab.active[data-filter="influencer"],
.filter-tab.is-active[data-filter="influencer"],
.filter-btn.active[data-filter="influencer"],
.filter-btn.is-active[data-filter="influencer"] {
  background-color: var(--color-secondary);
  color: var(--color-secondary-text);
  border-color: var(--color-border);
}

.filter-tab.active[data-filter="tv"],
.filter-tab.is-active[data-filter="tv"],
.filter-btn.active[data-filter="tv"],
.filter-btn.is-active[data-filter="tv"] {
  background-color: var(--color-purple-700);
  color: #ffffff;
  border-color: var(--color-border);
}

.filter-tab.active[data-filter="host"],
.filter-tab.is-active[data-filter="host"],
.filter-btn.active[data-filter="host"],
.filter-btn.is-active[data-filter="host"] {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.filter-tab .count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.filter-tab.active .count-badge,
.filter-tab.is-active .count-badge {
  background-color: #ffffff;
  color: var(--color-inverted-bg);
}

/* Simplified Responsive Artists Grid System */
.artists-grid-simplified,
.talents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 440px) {
  .artists-grid-simplified,
  .talents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 16px);
  }
}

@media (min-width: 768px) {
  .artists-grid-simplified,
  .talents-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.2vw, 20px);
  }
}

@media (min-width: 1024px) {
  .artists-grid-simplified,
  .talents-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2.5vw, 24px);
  }
}

.artist-simple-card,
.talent-simple-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-sm);
  transition: border-color 0.25s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
}

.artist-simple-card:hover,
.talent-simple-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 16px 32px -8px rgba(168, 85, 247, 0.2);
}

.artist-simple-link {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-decoration: none;
  color: inherit;
}

.artist-simple-figure,
.talent-simple-figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
}

.artist-simple-figure img,
.artist-simple-img,
.talent-simple-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.artist-simple-card:hover .artist-simple-img,
.artist-simple-card:hover .artist-simple-figure img,
.talent-simple-card:hover .talent-simple-figure img {
  transform: scale(1.06);
}

.artist-simple-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-2xs) 0;
}

.artist-simple-name {
  font-size: clamp(0.95rem, 1.8vw, var(--text-base));
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: 1.2;
  overflow-wrap: break-word;
}

.artist-simple-role {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
  color: var(--color-text-secondary);
}

.artist-simple-actions {
  margin-top: var(--space-sm);
  padding-top: var(--space-xs);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.artist-simple-actions .pill-badge {
  flex: 1 1 calc(50% - 4px);
  justify-content: center;
  padding: 0.35rem 0.65rem;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
}

/* ==========================================================================
   7b. Artists Gallery Section — Tiered Visual Hierarchy (Modern Nested CSS)
   ========================================================================== */
.artists-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background-color: var(--color-bg);
  position: relative;

  .artists-section-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.8vw, 2.25rem);
  }

  /* --------------------------------------------------------------------------
     1. Clean Typographic Header with Counter Badge & Quick Link
     -------------------------------------------------------------------------- */
  .artists-section-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0;
    margin-bottom: calc(-1 * var(--space-2));

    @media (min-width: 768px) {
      flex-direction: row;
      align-items: flex-end;
      gap: var(--space-6);
      margin-bottom: calc(-1 * var(--space-3));
    }
  }

  .artists-header-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: none;
    flex: 1 1 auto;
  }

  .artists-section-title {
    font-family: var(--font-magic);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: var(--tracking-3xl);
    line-height: var(--leading-3xl);
    color: var(--color-text-primary);
    font-style: italic;
  }

  .artists-section-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-sm);
    max-width: none;
    white-space: normal;

    @media (min-width: 580px) {
      white-space: nowrap;
    }
  }

  .artists-header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  .artists-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background-color: var(--color-surface);
    border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-pill);
    padding: 0.45em 1em;
    user-select: none;
  }

  .artists-header-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--color-text-primary);
    text-decoration: none;
    background-color: var(--color-surface);
    border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-pill);
    padding: 0.45em 1.15em;
    transition:
      border-color 0.2s var(--ease-snappy),
      background-color 0.2s var(--ease-snappy),
      color 0.2s var(--ease-snappy),
      transform 0.2s var(--ease-spring);

    svg {
      flex-shrink: 0;
      transition: transform 0.2s var(--ease-snappy);
    }

    &:hover {
      border-color: var(--color-accent);
      background-color: var(--color-accent-lightest);
      color: var(--color-accent-dark);
      transform: translateY(-1px);

      svg {
        transform: translateX(3px);
      }
    }
  }

  /* --------------------------------------------------------------------------
     Shared Artist Tags
     -------------------------------------------------------------------------- */
  .artist-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    padding: 0.28em 0.85em;
    border: 1.5px solid var(--color-border-light);
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
    white-space: nowrap;

    &.tag-music {
      border-color: var(--color-purple-200);
      background-color: var(--color-purple-50);
      color: var(--color-purple-700);
    }

    &.tag-influencer {
      border-color: var(--color-lime-200);
      background-color: var(--color-lime-50);
      color: var(--color-lime-700);
    }

    &.tag-tv {
      border-color: #fde68a;
      background-color: #fffbeb;
      color: #92400e;
    }

    &.tag-host {
      border-color: #bfdbfe;
      background-color: #eff6ff;
      color: #1e40af;
    }

    &.artist-tag-sm {
      font-size: 9.5px;
      padding: 0.2em 0.65em;
    }
  }

  /* --------------------------------------------------------------------------
     TIER 1 — Hero Featured Artist Card (Twins on Ice)
     -------------------------------------------------------------------------- */
  .artists-tier1-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background-color: var(--color-inverted-bg);
    box-shadow:
      0 2px 0 0 var(--color-accent),
      0 32px 80px -16px rgba(10, 10, 12, 0.28),
      0 8px 24px rgba(168, 85, 247, 0.1);
    transition:
      box-shadow 0.4s var(--ease-out-expo),
      border-color 0.3s var(--ease-snappy),
      transform 0.35s var(--ease-spring);

    @media (min-width: 768px) {
      grid-template-columns: clamp(300px, 44%, 540px) 1fr;
      min-height: 480px;
    }

    @media (min-width: 1024px) {
      grid-template-columns: clamp(360px, 46%, 600px) 1fr;
      min-height: 520px;
    }

    &:hover {
      box-shadow:
        0 2px 0 0 var(--color-accent),
        0 44px 104px -16px rgba(10, 10, 12, 0.36),
        0 14px 36px rgba(168, 85, 247, 0.2);
      border-color: var(--color-purple-400);

      .artists-tier1-img {
        transform: scale(1.04);
      }
    }

    .artists-tier1-badge {
      position: absolute;
      top: var(--space-4);
      left: var(--space-4);
      z-index: 10;

      @media (min-width: 768px) {
        top: var(--space-5);
        left: var(--space-5);
      }

      .tier1-badge-inner {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--font-mono);
        font-size: var(--text-2xs);
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--color-inverted-bg);
        background-color: var(--color-secondary);
        border-radius: var(--radius-pill);
        padding: 0.45em 1em;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);

        svg {
          flex-shrink: 0;
          color: var(--color-inverted-bg);
        }
      }
    }

    .artists-tier1-figure {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background-color: var(--color-inverted-bg);

      @media (min-width: 768px) {
        aspect-ratio: unset;
        height: 100%;
      }

      .artists-tier1-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        transition: transform 0.7s var(--ease-out-expo);
      }

      .artists-tier1-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 12, 0.75) 100%);
        pointer-events: none;

        @media (min-width: 768px) {
          background: linear-gradient(to right, transparent 60%, rgba(10, 10, 12, 0.6) 100%);
        }
      }
    }

    .artists-tier1-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: var(--space-4);
      padding: clamp(1.5rem, 3.5vw, 3rem) clamp(1.25rem, 3.5vw, 3.25rem);
      color: var(--color-inverted-text);

      .artists-tier1-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;

        .artist-tag {
          border-color: rgba(255, 255, 255, 0.2);
          background-color: rgba(255, 255, 255, 0.08);
          color: rgba(255, 255, 255, 0.85);
        }
      }

      .artists-tier1-headline-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .artists-tier1-name {
        font-family: var(--font-magic);
        font-size: var(--text-3xl);
        font-weight: 700;
        letter-spacing: var(--tracking-3xl);
        line-height: var(--leading-3xl);
        color: #ffffff;
        font-style: italic;
      }

      .artists-tier1-role {
        font-family: var(--font-mono);
        font-size: var(--text-xs);
        font-weight: 600;
        letter-spacing: 0.04em;
        color: var(--color-secondary);
        text-transform: uppercase;
      }

      .artists-tier1-metrics {
        font-size: var(--text-sm);
        line-height: var(--leading-sm);
        color: rgba(255, 255, 255, 0.7);
        max-width: 46ch;
      }

      .artists-tier1-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .artists-stat-pill {
        display: inline-flex;
        flex-direction: column;
        gap: 2px;
        background-color: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-sm);
        padding: 0.45rem 0.9rem;

        .artists-stat-platform {
          font-family: var(--font-mono);
          font-size: 9px;
          font-weight: 700;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.5);
        }

        .artists-stat-value {
          font-family: var(--font-mono);
          font-size: var(--text-sm);
          font-weight: 800;
          color: var(--color-secondary);
          letter-spacing: -0.01em;
        }
      }

      .artists-tier1-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        margin-top: var(--space-2);

        @media (max-width: 540px) {
          flex-direction: column;
          align-items: stretch;
        }

        .artists-cta-profile {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          font-family: var(--font-sans);
          font-size: var(--text-sm);
          font-weight: 800;
          letter-spacing: -0.01em;
          color: var(--color-inverted-bg);
          background-color: var(--color-secondary);
          border: 1.5px solid var(--color-secondary);
          border-radius: var(--radius-pill);
          padding: 0.65em 1.6em;
          text-decoration: none;
          transition:
            background-color 0.2s var(--ease-snappy),
            border-color 0.2s var(--ease-snappy),
            transform 0.2s var(--ease-spring);
          white-space: nowrap;

          svg {
            flex-shrink: 0;
            transition: transform 0.2s var(--ease-snappy);
          }

          &:hover {
            background-color: var(--color-lime-400);
            border-color: var(--color-lime-400);
            transform: translateY(-2px);

            svg {
              transform: translate(2px, -2px);
            }
          }
        }

        .artists-cta-book {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 6px;
          font-family: var(--font-sans);
          font-size: var(--text-sm);
          font-weight: 700;
          color: rgba(255, 255, 255, 0.85);
          background-color: transparent;
          border: 1.5px solid rgba(255, 255, 255, 0.25);
          border-radius: var(--radius-pill);
          padding: 0.65em 1.6em;
          text-decoration: none;
          transition:
            border-color 0.2s var(--ease-snappy),
            background-color 0.2s var(--ease-snappy),
            transform 0.2s var(--ease-spring);
          white-space: nowrap;
          cursor: pointer;

          &:hover {
            border-color: rgba(255, 255, 255, 0.6);
            background-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
          }
        }
      }
    }
  }

  /* --------------------------------------------------------------------------
     TIER 2 — Spotlight Row (3 artists, 1:1 Aspect Ratio)
     -------------------------------------------------------------------------- */
  .artists-tier2-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.2vw, 1.75rem);

    @media (min-width: 540px) {
      grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 900px) {
      grid-template-columns: repeat(3, 1fr);
    }

    .artists-tier2-card {
      display: flex;
      flex-direction: column;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      background-color: var(--color-bg);
      box-shadow: 0 4px 24px -8px rgba(10, 10, 12, 0.1);
      transition:
        border-color 0.25s var(--ease-snappy),
        box-shadow 0.35s var(--ease-out-expo),
        transform 0.3s var(--ease-spring);

      &:hover {
        border-color: var(--color-purple-400);
        box-shadow:
          0 18px 48px -12px rgba(168, 85, 247, 0.24),
          0 4px 16px rgba(10, 10, 12, 0.08);
        transform: translateY(-4px);

        .artists-tier2-img {
          transform: scale(1.06);
        }

        .artists-tier2-overlay {
          opacity: 1;
        }
      }

      .artists-tier2-link {
        display: block;
        text-decoration: none;
        flex-shrink: 0;
      }

      .artists-tier2-figure {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background-color: var(--color-surface);

        .artists-tier2-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top center;
          transition: transform 0.6s var(--ease-out-expo);
        }

        .artists-tier2-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(10, 10, 12, 0.78) 0%, transparent 60%);
          display: flex;
          align-items: flex-end;
          padding: var(--space-4);
          opacity: 0;
          transition: opacity 0.3s var(--ease-snappy);

          .artists-tier2-cta-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: var(--text-xs);
            font-weight: 700;
            letter-spacing: 0.06em;
            color: #ffffff;
            text-transform: uppercase;

            svg {
              flex-shrink: 0;
              transition: transform 0.2s var(--ease-snappy);
            }
          }
        }
      }

      .artists-tier2-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        padding: clamp(1rem, 2vw, 1.35rem);
        flex: 1;

        .artists-tier2-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 5px;
        }

        .artists-tier2-info {
          display: flex;
          flex-direction: column;
          gap: 2px;
        }

        .artists-tier2-name {
          font-family: var(--font-display);
          font-size: var(--text-lg);
          font-weight: 900;
          letter-spacing: -0.02em;
          line-height: 1.2;
          color: var(--color-text-primary);
          text-transform: uppercase;
        }

        .artists-tier2-role {
          font-family: var(--font-mono);
          font-size: var(--text-2xs);
          font-weight: 600;
          color: var(--color-text-muted);
          letter-spacing: 0.02em;
          line-height: 1.4;
        }

        .artists-tier2-metrics {
          font-size: var(--text-xs);
          line-height: 1.5;
          color: var(--color-text-secondary);
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          margin-top: auto;
        }

        .artists-tier2-actions {
          display: flex;
          gap: 6px;
          align-items: center;
          margin-top: var(--space-3);
          padding-top: var(--space-3);
          border-top: 1px solid var(--color-border-subtle);

          .artists-tier2-btn-profile {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: var(--font-sans);
            font-size: var(--text-xs);
            font-weight: 800;
            color: var(--color-inverted-text);
            background-color: var(--color-inverted-bg);
            border: 1.5px solid var(--color-inverted-bg);
            border-radius: var(--radius-pill);
            padding: 0.55em 1.1em;
            text-decoration: none;
            transition:
              background-color 0.2s var(--ease-snappy),
              border-color 0.2s var(--ease-snappy),
              color 0.2s var(--ease-snappy),
              transform 0.2s var(--ease-spring);
            white-space: nowrap;

            svg {
              flex-shrink: 0;
              transition: transform 0.2s var(--ease-snappy);
            }

            &:hover {
              background-color: var(--color-accent);
              border-color: var(--color-accent);
              color: #ffffff;
              transform: translateY(-1px);

              svg {
                transform: translate(2px, -2px);
              }
            }
          }

          .artists-tier2-btn-book {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-sans);
            font-size: var(--text-xs);
            font-weight: 700;
            color: var(--color-text-secondary);
            background-color: transparent;
            border: 1.5px solid var(--color-border-light);
            border-radius: var(--radius-pill);
            padding: 0.55em 1.1em;
            text-decoration: none;
            cursor: pointer;
            transition:
              border-color 0.2s var(--ease-snappy),
              background-color 0.2s var(--ease-snappy),
              color 0.2s var(--ease-snappy),
              transform 0.2s var(--ease-spring);
            white-space: nowrap;

            &:hover {
              border-color: var(--color-accent);
              background-color: var(--color-accent-lightest);
              color: var(--color-accent-dark);
              transform: translateY(-1px);
            }
          }
        }
      }
    }
  }

  /* --------------------------------------------------------------------------
     TIER 3 — Standard Compact Grid
     -------------------------------------------------------------------------- */
  .artists-tier3-label {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-1);
    margin-bottom: calc(-1 * var(--space-2));

    &::before,
    &::after {
      content: '';
      flex: 1;
      height: 1px;
      background-color: var(--color-border-light);
    }

    span {
      font-family: var(--font-mono);
      font-size: var(--text-2xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      white-space: nowrap;
      padding: 0 var(--space-3);
    }
  }

  .artists-tier3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1.1rem);

    @media (min-width: 600px) {
      grid-template-columns: repeat(3, 1fr);
    }

    @media (min-width: 900px) {
      grid-template-columns: repeat(4, 1fr);
    }

    @media (min-width: 1200px) {
      grid-template-columns: repeat(6, 1fr);
    }

    .artists-tier3-card {
      display: flex;
      flex-direction: column;
      background-color: var(--color-surface-subtle);
      border: 1.5px solid var(--color-border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition:
        border-color 0.2s var(--ease-snappy),
        box-shadow 0.3s var(--ease-out-expo),
        transform 0.25s var(--ease-spring);

      &:hover {
        border-color: var(--color-border);
        box-shadow: 0 10px 28px -6px rgba(10, 10, 12, 0.16);
        transform: translateY(-3px);

        .artists-tier3-img {
          transform: scale(1.08);
        }

        .artists-tier3-cta-hint {
          opacity: 1 !important;
          visibility: visible !important;
          transform: scale(1) translate(0, 0) !important;
        }
      }

      .artists-tier3-link {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        flex: 1;

        &:hover,
        &:focus-visible {
          .artists-tier3-cta-hint {
            opacity: 1 !important;
            visibility: visible !important;
            transform: scale(1) translate(0, 0) !important;
          }
        }
      }

      .artists-tier3-figure {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background-color: var(--color-surface);

        .artists-tier3-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top center;
          transition: transform 0.5s var(--ease-out-expo);
        }

        .artists-tier3-overlay {
          position: absolute;
          inset: 0;
          display: flex;
          align-items: flex-end;
          justify-content: flex-end;
          padding: var(--space-2);
          pointer-events: none;
          z-index: 2;

          .artists-tier3-cta-hint {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: #ffffff;
            color: var(--color-inverted-bg);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
            opacity: 0;
            visibility: hidden;
            transform: scale(0.65) translate(4px, 4px);
            transition:
              opacity 0.22s var(--ease-snappy),
              transform 0.28s var(--ease-spring),
              visibility 0.22s;

            svg {
              flex-shrink: 0;
              color: var(--color-inverted-bg);
            }
          }
        }
      }

      .artists-tier3-content {
        display: flex;
        flex-direction: column;
        gap: var(--space-1);
        padding: var(--space-3) var(--space-3) var(--space-2);
        flex: 1;

        .artists-tier3-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 4px;
        }

        .artists-tier3-name {
          font-size: var(--text-xs);
          font-weight: 900;
          letter-spacing: -0.01em;
          text-transform: uppercase;
          color: var(--color-text-primary);
          line-height: 1.25;
        }

        .artists-tier3-role {
          font-family: var(--font-mono);
          font-size: var(--text-2xs);
          color: var(--color-text-muted);
          line-height: 1.4;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
      }

      .artists-tier3-actions {
        padding: 0 var(--space-3) var(--space-3);

        .artists-tier3-btn-book {
          display: block;
          width: 100%;
          font-family: var(--font-sans);
          font-size: var(--text-2xs);
          font-weight: 800;
          letter-spacing: 0.03em;
          text-align: center;
          color: var(--color-text-secondary);
          background-color: var(--color-bg);
          border: 1.5px solid var(--color-border-light);
          border-radius: var(--radius-pill);
          padding: 0.5em 0.75em;
          text-decoration: none;
          cursor: pointer;
          transition:
            border-color 0.2s var(--ease-snappy),
            background-color 0.2s var(--ease-snappy),
            color 0.2s var(--ease-snappy),
            transform 0.2s var(--ease-spring);

          &:hover {
            border-color: var(--color-accent);
            background-color: var(--color-accent-lightest);
            color: var(--color-accent-dark);
            transform: translateY(-1px);
          }
        }
      }
    }
  }

  /* --------------------------------------------------------------------------
     Section Footer CTA
     -------------------------------------------------------------------------- */
  .artists-section-footer {
    display: flex;
    justify-content: center;
    padding-top: var(--space-1);
    margin-top: calc(-1 * var(--space-2));

    .artists-all-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-sans);
      font-size: var(--text-sm);
      font-weight: 800;
      color: var(--color-text-primary);
      text-decoration: none;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-pill);
      padding: 0.75em 2.2em;
      transition:
        border-color 0.2s var(--ease-snappy),
        background-color 0.2s var(--ease-snappy),
        color 0.2s var(--ease-snappy),
        transform 0.2s var(--ease-spring),
        box-shadow 0.2s var(--ease-snappy);

      svg {
        transition: transform 0.2s var(--ease-snappy);
      }

      &:hover {
        border-color: var(--color-accent);
        background-color: var(--color-accent-lightest);
        color: var(--color-accent-dark);
        box-shadow: 0 8px 24px -6px rgba(168, 85, 247, 0.2);
        transform: translateY(-2px);

        svg {
          transform: translateX(4px);
        }
      }
    }
  }
}

/* ==========================================================================
   8. Releases / Spotlights Section
   ========================================================================== */
.releases-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);

  .releases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);

    @media (min-width: 900px) {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .release-card {
    background-color: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
    color: inherit;
    position: relative;
    box-shadow: 0 16px 40px -12px rgba(10, 10, 12, 0.12), 0 3px 10px rgba(10, 10, 12, 0.04);
    transition: border-color 0.3s var(--ease-snappy), box-shadow 0.4s var(--ease-spring), background-color 0.25s var(--ease-snappy);

    &:hover {
      background-color: var(--color-bg);
      border-color: var(--color-accent);
      box-shadow: 0 24px 54px -12px rgba(168, 85, 247, 0.22), 0 6px 16px rgba(10, 10, 12, 0.06);

      .release-vinyl-disc {
        transform: translateX(36px) rotate(55deg);
      }

      .release-jacket {
        transform: scale(1.02);
      }

      .release-play-badge {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 560px) {
      grid-template-columns: 1fr;
      gap: var(--space-md);
      padding: var(--space-md);
    }
  }

  /* Vinyl Record and Jacket Sleeve Wrapper */
  .release-vinyl-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    @media (max-width: 560px) {
      max-width: 220px;
      margin-inline: auto;
    }
  }

  .release-vinyl-disc {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 8px;
    width: calc(100% - 8px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
      #1c1c20 0%, 
      #0e0e11 25%, 
      #232328 35%, 
      #0e0e11 48%, 
      #1f1f24 60%, 
      #0c0c0e 75%, 
      #1a1a1e 90%, 
      #08080a 100%
    );
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.65s var(--ease-spring);
    pointer-events: none;

    .vinyl-grooves {
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      border: 1px dashed rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .vinyl-center {
      width: 36%;
      height: 36%;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);

      .vinyl-center-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--color-bg);
        border: 2px solid rgba(0, 0, 0, 0.5);
      }
    }
  }

  .release-jacket {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--color-border);
    z-index: 2;
    background-color: var(--color-bg);
    box-shadow: 0 10px 24px -4px rgba(10, 10, 12, 0.16);
    transition: transform 0.45s var(--ease-spring);

    .release-cover-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .release-play-badge {
      position: absolute;
      inset: 0;
      background-color: rgba(10, 10, 12, 0.38);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.25s var(--ease-snappy), transform 0.3s var(--ease-spring);
      color: #ffffff;
      text-decoration: none;

      .play-svg {
        width: 38px;
        height: 38px;
        padding: 9px 8px 9px 10px;
        border-radius: 50%;
        background-color: var(--color-accent);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s var(--ease-spring);
      }

      &:hover .play-svg {
        transform: scale(1.12);
      }
    }
  }

  /* Release Details Content */
  .release-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-width: 0;
    z-index: 3;
  }

  .release-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: 2px;
  }

  .release-tag-pill {
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background-color: var(--color-accent);
    color: #ffffff;
  }

  .release-format-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-secondary);

    .live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--color-lime-500);
      box-shadow: 0 0 6px var(--color-lime-400);
    }
  }

  .release-headings {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .release-artist {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-secondary);
  }

  .release-title {
    font-family: var(--font-display, var(--font-sans));
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin: 0;
  }

  .release-status {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
  }

  .release-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-top: var(--space-2xs);

    @media (max-width: 560px) {
      flex-direction: column;
      align-items: stretch;
    }
  }

  .release-stream-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-pill);
    background-color: var(--color-inverted-bg);
    color: var(--color-inverted-text);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    border: 1.5px solid var(--color-border);
    text-decoration: none;
    transition: background-color 0.25s var(--ease-snappy), border-color 0.25s var(--ease-snappy), color 0.25s var(--ease-snappy), transform 0.25s var(--ease-spring);

    &:hover {
      background-color: var(--color-accent);
      border-color: var(--color-accent);
      color: #ffffff;
      transform: scale(1.04);
    }
  }

  .release-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    background-color: transparent;
    color: var(--color-text-secondary);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    border: 1.5px solid var(--color-border);
    text-decoration: none;
    transition: background-color 0.2s var(--ease-snappy), border-color 0.2s var(--ease-snappy), color 0.2s var(--ease-snappy);

    &:hover {
      border-color: var(--color-text-primary);
      color: var(--color-text-primary);
      background-color: var(--color-surface);
    }
  }
}

/* ==========================================================================
   9. Leistungen (Services) Section
   ========================================================================== */
.services-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
  }
  .service-card-3 {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
  }
  .service-card-3 {
    grid-column: auto;
  }
}

.service-card {
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.15rem, 2.2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(280px, 32vh, 380px);
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  transition: transform 0.38s var(--ease-spring), box-shadow 0.38s var(--ease-out-expo), border-color 0.28s var(--ease-out-expo), background-color 0.28s var(--ease-out-expo);
}

.service-card:hover,
.service-card:focus-visible {
  background-color: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 20px 36px -12px rgba(168, 85, 247, 0.18);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(var(--space-md), 2vw, var(--space-lg));
}

.service-index-pill {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
}

.service-card-1 .service-index-pill {
  background-color: var(--color-accent);
  color: #ffffff;
}

.service-card-2 .service-index-pill {
  background-color: var(--color-secondary);
  color: var(--color-secondary-text);
}

.service-card-3 .service-index-pill {
  background-color: var(--color-inverted-bg);
  color: #ffffff;
}

.service-title {
  font-size: clamp(1.15rem, 1.8vw, var(--text-xl));
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  overflow-wrap: break-word;
}

.service-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
  overflow-wrap: break-word;
}

/* Service footer pill */
.service-footer-pill {
  margin-top: clamp(var(--space-md), 2vw, var(--space-lg));
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
  cursor: pointer;
}

.service-card:hover .service-footer-pill,
.service-card:focus-visible .service-footer-pill {
  color: var(--color-accent-dark);
  border-top-color: var(--color-accent);
}

.service-card:hover .service-footer-pill .svg-arrow-extensible,
.service-card:focus-visible .service-footer-pill .svg-arrow-extensible {
  transform: scale(1.15);
}

.service-card:hover .service-footer-pill .svg-arrow-extensible .arrow-shaft,
.service-card:focus-visible .service-footer-pill .svg-arrow-extensible .arrow-shaft {
  transform: scale(1.25);
}

.service-card:hover .service-footer-pill .svg-arrow-extensible .arrow-head,
.service-card:focus-visible .service-footer-pill .svg-arrow-extensible .arrow-head {
  transform: translate(2.5px, -2.5px);
}

/* ==========================================================================
   10. Pre-Footer CTA Section
   ========================================================================== */
.cta-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.cta-box {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
  border: 1.5px solid var(--color-border);
  border-radius: clamp(20px, 3vw, var(--radius-2xl));
  padding: clamp(1.5rem, 4vw, var(--space-3xl)) clamp(1.25rem, 3.5vw, var(--space-2xl));
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, var(--space-xl));
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .cta-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cta-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  overflow-wrap: break-word;
}

.cta-lead {
  font-size: var(--text-base);
  color: #e2e4ea;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

.btn-cta-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.btn-cta-accent:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-cta-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-cta-outline:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* ==========================================================================
   11. Compact Contact Section, Custom Date Selector & Custom Checkbox
   ========================================================================== */
.contact-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.contact-layout {
  display: grid;
  grid-template-columns: 100%;
  gap: clamp(16px, 3vw, var(--space-xl));
  align-items: start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(24px, 3vw, var(--space-2xl));
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vw, var(--space-md));
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-direct-card {
  border: 1.5px solid var(--color-border);
  border-radius: clamp(16px, 3vw, var(--radius-xl));
  background-color: var(--color-surface);
  padding: clamp(14px, 3vw, var(--space-lg));
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: border-color 0.25s var(--ease-snappy), box-shadow 0.3s var(--ease-spring);
}

.contact-direct-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 28px -8px rgba(168, 85, 247, 0.16);
}

.contact-channel-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-channel-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.channel-label {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.channel-val-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.channel-val {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2.8vw, 1rem);
  font-weight: 800;
  color: var(--color-text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
  transition: color 0.2s var(--ease-snappy);
}

.channel-val:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.channel-val-row .svg-arrow-extensible {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.address-box {
  border: 1.5px solid var(--color-border);
  border-radius: clamp(16px, 3vw, var(--radius-xl));
  background-color: var(--color-bg);
  padding: clamp(14px, 3vw, var(--space-lg));
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.address-box-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2xs);
}

.address-box address {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.45;
}

/* Fast Response Badge */
.contact-fast-badge {
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: clamp(14px, 2.5vw, var(--radius-lg));
  padding: clamp(12px, 2.5vw, var(--space-md));
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.fast-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background-color: var(--color-lime-100);
  color: var(--color-lime-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fast-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.fast-badge-title {
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.fast-badge-desc {
  font-size: var(--text-2xs);
  color: var(--color-text-secondary);
  line-height: 1.35;
}

/* Highlighted Artist Context Banner on /contact */
.contact-artist-context-banner {
  background-color: var(--color-purple-50);
  border: 1.5px solid var(--color-accent);
  border-radius: clamp(16px, 3vw, var(--radius-xl));
  padding: clamp(12px, 2.5vw, var(--space-md)) clamp(14px, 3vw, var(--space-lg));
  margin-bottom: clamp(1.5rem, 3.5vw, var(--space-2xl));
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: 0 8px 24px -8px rgba(168, 85, 247, 0.16);
}

@media (min-width: 576px) {
  .contact-artist-context-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

.artist-context-info-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, var(--space-md));
  min-width: 0;
}

.artist-context-avatar {
  width: clamp(44px, 8vw, 56px);
  height: clamp(44px, 8vw, 56px);
  border-radius: var(--radius-pill);
  object-fit: cover;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}

.artist-context-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.artist-context-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.artist-context-name {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, var(--text-lg));
  font-weight: 900;
  color: var(--color-text-primary);
}

.artist-context-role {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: 700;
}

.artist-context-action {
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .artist-context-action .pill-badge {
    width: 100%;
    justify-content: center;
  }
}

/* Compact Contact Form Card */
.contact-form-card {
  border: 1.5px solid var(--color-border);
  border-radius: clamp(16px, 3vw, var(--radius-xl));
  background-color: var(--color-bg);
  padding: clamp(14px, 3vw, var(--space-xl));
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: box-shadow 0.35s var(--ease-out-expo), border-color 0.25s var(--ease-snappy);
}

.contact-form-card:hover {
  box-shadow: 0 16px 36px -10px rgba(10, 10, 12, 0.08);
}

.form-alert {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-alert-success {
  background-color: var(--color-success-bg);
  color: var(--color-success-text);
  border: 1.5px solid var(--color-success-border);
}

.form-alert-error {
  background-color: var(--color-error-bg);
  color: var(--color-error-text);
  border: 1.5px solid var(--color-error-border);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, var(--space-md));
  width: 100%;
  min-width: 0;
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

@media (min-width: 600px) {
  .form-2col {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.form-label {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-light);
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-bg);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  padding-right: 2.5rem;
}

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

/* Custom Date Selector Input & Inner Segment Styling */
.custom-date-picker-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.form-input-date {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.65rem 2.85rem 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-light);
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  box-sizing: border-box;
  transition: border-color 0.2s var(--ease-out-expo), background-color 0.2s var(--ease-out-expo), box-shadow 0.2s var(--ease-out-expo);
  cursor: pointer;
}

.form-input-date:hover {
  border-color: var(--color-accent);
  background-color: var(--color-bg);
}

.form-input-date:focus,
.form-input-date:focus-within {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-bg);
  box-shadow: 0 0 0 3.5px rgba(168, 85, 247, 0.18);
}

/* Custom WebKit Segment Edit Controls */
.form-input-date::-webkit-datetime-edit {
  padding: 2px 0;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-text-primary);
}

.form-input-date::-webkit-datetime-edit-fields-wrapper {
  background: transparent;
  padding: 0;
}

.form-input-date::-webkit-datetime-edit-text {
  color: var(--color-accent-dark);
  padding: 0 2px;
  font-weight: 800;
}

.form-input-date::-webkit-datetime-edit-month-field,
.form-input-date::-webkit-datetime-edit-day-field,
.form-input-date::-webkit-datetime-edit-year-field {
  padding: 2px 4px;
  border-radius: 4px;
  color: var(--color-text-primary);
  transition: background-color 0.15s var(--ease-snappy), color 0.15s var(--ease-snappy);
}

.form-input-date::-webkit-datetime-edit-month-field:focus,
.form-input-date::-webkit-datetime-edit-day-field:focus,
.form-input-date::-webkit-datetime-edit-year-field:focus {
  background-color: var(--color-purple-100);
  color: var(--color-purple-800);
  outline: none;
}

/* Completely Hide the Native WebKit Calendar Picker Indicator */
.form-input-date::-webkit-calendar-picker-indicator {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-input-date::-webkit-inner-spin-button,
.form-input-date::-webkit-clear-button {
  display: none !important;
  -webkit-appearance: none !important;
}

.date-calendar-btn {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s var(--ease-spring), color 0.2s var(--ease-snappy);
}

.date-calendar-btn:hover {
  color: var(--color-accent-dark);
  transform: scale(1.15);
}

/* Custom Interactive Calendar Dropdown */
.custom-calendar-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-width: min(320px, calc(100vw - 32px));
  z-index: 100;
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(10px, 2.5vw, var(--space-md));
  box-shadow: 0 16px 36px -10px rgba(168, 85, 247, 0.25), 0 4px 16px rgba(10, 10, 12, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  box-sizing: border-box;
  animation: popInCalendar 0.25s var(--ease-spring);
}

.custom-calendar-dropdown[hidden] {
  display: none;
}

@keyframes popInCalendar {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border-light);
}

.cal-month-year {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-primary);
}

.cal-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-light);
  background-color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cal-nav-btn:hover {
  background-color: var(--color-purple-100);
  border-color: var(--color-accent);
  color: var(--color-purple-800);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
  color: var(--color-text-muted);
  padding: 4px 0;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day-cell {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cal-day-cell:hover:not(:disabled) {
  background-color: var(--color-purple-100);
  color: var(--color-purple-800);
  border-color: var(--color-accent-lighter);
}

.cal-day-cell.is-selected {
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 900;
  border-color: var(--color-border);
  box-shadow: 0 4px 10px rgba(168, 85, 247, 0.35);
}

.cal-day-cell.is-today {
  border-color: var(--color-accent);
  font-weight: 800;
}

.cal-day-cell:disabled,
.cal-day-cell.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.cal-day-cell.is-other-month {
  opacity: 0.3;
}

/* Privacy Checkbox & Cloudflare Turnstile Side-by-Side Responsive Layout */
.form-privacy-turnstile-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: stretch;
  margin-top: 4px;
  margin-bottom: var(--space-xs);
}

@media (min-width: 640px) {
  .form-privacy-turnstile-group {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
  }

  .form-privacy-turnstile-group .custom-checkbox-wrap {
    flex: 1 1 auto;
    margin-top: 0;
  }

  .form-privacy-turnstile-group .turnstile-compact-wrap {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

/* Custom High-Contrast Animated Checkbox */
.custom-checkbox-wrap {
  margin-top: 4px;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  user-select: none;
}

.custom-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.custom-checkbox-control,
.custom-checkbox-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 7px;
  border: 2px solid var(--color-border);
  background-color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: transparent;
  flex-shrink: 0;
  transition: background-color 0.22s var(--ease-spring), border-color 0.22s var(--ease-spring), transform 0.22s var(--ease-spring);
}

.custom-checkbox-control .custom-checkbox-check,
.custom-checkbox-box .custom-checkbox-check {
  width: 14px;
  height: 14px;
  transform: scale(0.4);
  opacity: 0;
  transition: transform 0.22s var(--ease-spring), opacity 0.18s var(--ease-snappy);
}

.custom-checkbox-input:checked + .custom-checkbox-label .custom-checkbox-control,
.custom-checkbox-input:checked + .custom-checkbox-label .custom-checkbox-box,
.custom-checkbox-label:has(.custom-checkbox-input:checked) .custom-checkbox-control,
.custom-checkbox-label:has(.custom-checkbox-input:checked) .custom-checkbox-box {
  background-color: var(--color-accent);
  border-color: var(--color-accent-dark);
  color: #ffffff;
  transform: scale(1.06);
}

.custom-checkbox-input:checked + .custom-checkbox-label .custom-checkbox-control .custom-checkbox-check,
.custom-checkbox-input:checked + .custom-checkbox-label .custom-checkbox-box .custom-checkbox-check,
.custom-checkbox-label:has(.custom-checkbox-input:checked) .custom-checkbox-control .custom-checkbox-check,
.custom-checkbox-label:has(.custom-checkbox-input:checked) .custom-checkbox-box .custom-checkbox-check {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox-input:focus-visible + .custom-checkbox-label .custom-checkbox-control,
.custom-checkbox-input:focus-visible + .custom-checkbox-label .custom-checkbox-box,
.custom-checkbox-label:has(.custom-checkbox-input:focus-visible) .custom-checkbox-control,
.custom-checkbox-label:has(.custom-checkbox-input:focus-visible) .custom-checkbox-box {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
}

.custom-checkbox-label:hover .custom-checkbox-control,
.custom-checkbox-label:hover .custom-checkbox-box {
  border-color: var(--color-accent);
  background-color: var(--color-purple-50);
}

.custom-checkbox-text {
  font-size: var(--text-2xs);
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.custom-checkbox-text a {
  text-decoration: underline;
  color: var(--color-text-primary);
  font-weight: 700;
}

.custom-checkbox-text a:hover {
  color: var(--color-accent);
}

.form-hp-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.site-footer {
  margin-top: clamp(2.5rem, 5vh, var(--space-3xl));
  padding-top: clamp(2.5rem, 5vh, var(--space-3xl));
  padding-bottom: var(--space-xl);
  border-top: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, var(--space-2xl));
  margin-bottom: clamp(24px, 3.5vw, var(--space-3xl));
}

@media (min-width: 576px) and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: clamp(1.75rem, 2.5vw, var(--space-2xl));
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-claim {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: var(--space-xs);
}

.claim-line {
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  overflow-wrap: break-word;
}

.footer-email-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-xs);
}

.footer-sub-label {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}

.footer-email-link {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s var(--ease-snappy);
  width: fit-content;
  overflow-wrap: break-word;
  word-break: break-all;
}

.footer-email-link:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav-link {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding: 0.25rem 0;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-email-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  overflow-wrap: break-word;
  word-break: break-all;
}

.protected-contact-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s var(--ease-snappy);

  &:hover {
    color: var(--color-accent);
    text-decoration: underline;
  }
}

.footer-credits-bar {
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--color-text-muted);
}

.footer-credits-content {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.credits-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.credits-link,
.credits-email-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s var(--ease-snappy);

  &:hover {
    color: var(--color-accent);
    text-decoration: underline;
  }
}

.credits-sep {
  color: var(--color-border);
  margin: 0 2px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   13. Legal Views (Impressum & Datenschutz UI/UX)
   ========================================================================== */
.legal-main {
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: clamp(2rem, 4vh, var(--space-4xl));
  max-width: 920px;
}

.legal-header {
  margin-bottom: clamp(1.5rem, 3.5vw, var(--space-2xl));
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  flex-wrap: wrap;

  a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s var(--ease-snappy);

    &:hover {
      color: var(--color-accent);
      text-decoration: underline;
    }
  }

  .breadcrumb-sep {
    color: var(--color-border);
  }
}

.legal-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
  border-radius: var(--radius-pill);
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  max-width: 100%;
  margin-top: var(--space-xs);

  &::-webkit-scrollbar {
    display: none;
  }

  .legal-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-secondary);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s var(--ease-snappy), color 0.2s var(--ease-snappy), border-color 0.2s var(--ease-snappy);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;

    &:hover {
      color: var(--color-text-primary);
      border-color: var(--color-border);
      background-color: var(--color-bg);
    }

    &.active {
      background-color: var(--color-inverted-bg);
      color: var(--color-inverted-text);
      border-color: var(--color-inverted-bg);
    }
  }
}

.legal-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-light);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--color-text-muted);
  font-weight: 700;

  .meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-primary);

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--color-lime-500);
      box-shadow: 0 0 5px var(--color-lime-400);
    }
  }
}

/* Legal Cards Stack */
.legal-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, var(--space-xl));
}

.legal-card {
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: clamp(18px, 2.5vw, var(--radius-2xl));
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 12px 32px -8px rgba(10, 10, 12, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color 0.25s var(--ease-snappy), box-shadow 0.3s var(--ease-spring);

  &:hover {
    border-color: var(--color-accent);
    box-shadow: 0 18px 42px -10px rgba(168, 85, 247, 0.15);
  }
}

.legal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1.5px solid var(--color-border-light);
}

.legal-card-num {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  flex-shrink: 0;
}

.legal-card-title {
  font-family: var(--font-display, var(--font-sans));
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin: 0;
  overflow-wrap: break-word;
}

.legal-card-content {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-secondary);
  overflow-wrap: break-word;

  p {
    margin: 0 0 var(--space-xs) 0;

    &:last-child {
      margin-bottom: 0;
    }
  }

  strong {
    color: var(--color-text-primary);
  }
}

/* Quick Contact Micro-Cards in Impressum */
.legal-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xs);

  @media (min-width: 576px) {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  @media (min-width: 900px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.legal-quick-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--color-text-primary);
  transition: border-color 0.2s var(--ease-snappy), background-color 0.2s var(--ease-snappy);

  &:hover {
    border-color: var(--color-accent);
    background-color: var(--color-surface);
  }

  .quick-label {
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
  }

  .quick-value {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--color-accent-dark);
    overflow-wrap: break-word;
    word-break: break-all;
  }
}

/* Privacy Highlights Grid in Datenschutz */
.privacy-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xs);

  @media (min-width: 576px) {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  @media (min-width: 900px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.privacy-highlight-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;

  .highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: var(--text-2xs);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text-primary);
  }

  .highlight-desc {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    line-height: 1.45;
  }
}

/* Bottom Actions */
.legal-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1.5px solid var(--color-border);
}

/* ==========================================================================
   13.1 Rounded Modal Dialogs (Impressum & Datenschutz)
   ========================================================================== */
.legal-modal {
  border: 1.5px solid var(--color-border);
  border-radius: clamp(16px, 2.5vw, var(--radius-2xl));
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  padding: 0;
  max-width: 760px;
  width: calc(100% - 24px);
  margin: auto;
  box-shadow: 0 24px 60px -12px rgba(10, 10, 12, 0.4);
  overflow: hidden;
}

.legal-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-header {
  padding: clamp(12px, 2vw, var(--space-lg)) clamp(14px, 2.5vw, var(--space-xl));
  border-bottom: 1.5px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-surface);
}

.modal-title {
  font-size: clamp(1rem, 2vw, var(--text-xl));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

.modal-body {
  padding: clamp(14px, 2.5vw, var(--space-xl));
  max-height: calc(82dvh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.modal-body h3 {
  font-size: var(--text-base);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: var(--space-2xs);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.modal-footer {
  padding: clamp(10px, 2vw, var(--space-md)) clamp(14px, 2.5vw, var(--space-xl));
  border-top: 1.5px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-surface);
  flex-wrap: wrap;
}

.modal-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease-snappy);
}

.modal-doc-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.modal-close-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.4rem 0.9rem;
  font-size: var(--text-xs);
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background-color 0.2s var(--ease-snappy), color 0.2s var(--ease-snappy);
}

.modal-close-action-btn:hover {
  background-color: var(--color-inverted-bg);
  color: var(--color-inverted-text);
}

/* ==========================================================================
   14. Artist Detail Profile Page (/artists/{slug})
   ========================================================================== */
.artist-detail-section {
  min-height: 70vh;
}

.artist-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.artist-detail-media-col {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .artist-detail-grid {
    grid-template-columns: 320px 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
  .artist-detail-media-col {
    margin-inline: 0;
    max-width: 100%;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: start;
  }
}

@media (min-width: 1024px) {
  .artist-detail-grid {
    grid-template-columns: 380px 1fr;
    gap: clamp(2rem, 3.5vw, var(--space-3xl));
  }
}

@media (min-width: 1200px) {
  .artist-detail-grid {
    grid-template-columns: 440px 1fr;
    gap: var(--space-4xl);
  }
}

.artist-detail-figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: clamp(18px, 2.5vw, var(--radius-2xl));
  overflow: hidden;
  position: relative;
  background-color: var(--color-surface);
  border: 2px solid var(--color-border);
  box-shadow: 0 16px 36px -12px rgba(10, 10, 12, 0.12);
}

.artist-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.artist-detail-figure:hover .artist-detail-img {
  transform: scale(1.04);
}

.artist-detail-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.artist-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.artist-detail-heading {
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}

.artist-detail-subhead {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-secondary);
}

.artist-detail-bio-box {
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  background-color: var(--color-surface);
  padding: clamp(1.15rem, 2.5vw, var(--space-lg));
  margin-top: var(--space-xs);
}

.artist-detail-box-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-xs);
}

.artist-detail-bio-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  overflow-wrap: break-word;
}

.artist-detail-facts-card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  background-color: var(--color-bg);
  padding: clamp(1rem, 2vw, var(--space-md)) clamp(1.15rem, 2.5vw, var(--space-lg));
}

.artist-detail-fact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist-detail-actions-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

@media (min-width: 480px) {
  .artist-detail-actions-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

/* Editorial Content & Cooperation Formats */
.artist-editorial-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.artist-formats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

@media (min-width: 580px) {
  .artist-formats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

.artist-format-card {
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.artist-format-card:hover {
  border-color: var(--color-accent);
}

.artist-format-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.artist-format-desc {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
  overflow-wrap: break-word;
}

.artist-quote-callout {
  background-color: var(--color-purple-50);
  border-left: 3.5px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: clamp(1rem, 2vw, var(--space-md)) clamp(1.15rem, 2.5vw, var(--space-lg));
  margin-top: var(--space-xs);
  font-style: italic;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  line-height: 1.6;
  overflow-wrap: break-word;
}

/* Page Section Layout Wrappers */
.artists-page-section,
.artist-detail-section {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: clamp(2.5rem, 5vh, var(--space-3xl));
}

.contact-page-main {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: clamp(2.5rem, 5vh, var(--space-3xl));
}

.error-page-main {
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: clamp(2.5rem, 5vh, var(--space-4xl));
  min-height: calc(100vh - var(--header-height) - 180px);
  min-height: calc(100dvh - var(--header-height) - 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.error-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 480px) {
  .error-actions {
    flex-direction: column;
  }
  .error-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   15. Print Styles & Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .doodle-star,
  .doodle-star-1,
  .doodle-star-2,
  .doodle-star-3,
  .hero-rotator-text,
  .slot-instagram,
  .slot-views,
  .slot-release,
  .hero-drift-1,
  .hero-drift-2,
  .hero-drift-3,
  .hero-drift-4,
  .badge-dashed-ring,
  .badge-text-ring,
  .badge-center-star,
  .reticle-outer,
  .reticle-inner,
  .poly-orbital,
  .poly-shell,
  .poly-compass,
  .poly-core,
  .sound-dial-outer,
  .sound-wave-1,
  .sound-wave-2,
  .stage-beam,
  .ring-left,
  .ring-right,
  .orbiting-nodes,
  .nexus-core,
  .groove-track,
  .ticker-track {
    animation: none !important;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .menu-toggle,
  .mobile-nav-panel,
  .talents-filter-bar,
  .cta-section,
  .contact-form-card,
  .skip-link {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
}

/* ==========================================================================
   Email Verification & Confirmation Dual Actions
   ========================================================================== */
.verify-dual-actions {
  display: flex;
  align-items: stretch;
  gap: 4px;
  width: 100%;
}

.verify-btn-confirm {
  flex: 1 1 58%;
  height: 52px;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  border-top-left-radius: var(--radius-pill) !important;
  border-bottom-left-radius: var(--radius-pill) !important;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.verify-btn-report {
  flex: 1 1 42%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #dc2626;
  background-color: #fef2f2;
  border: 1.5px solid #fecaca;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  cursor: pointer;
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
  border-top-right-radius: var(--radius-pill) !important;
  border-bottom-right-radius: var(--radius-pill) !important;
  transition: all 0.2s var(--ease-snappy);
}

.verify-btn-report:hover {
  background-color: #fee2e2;
  border-color: #f87171;
  color: #b91c1c;
  transform: translateY(-1px);
}

@media (max-width: 540px) {
  .verify-dual-actions {
    flex-direction: column;
    gap: 8px;
  }

  .verify-btn-confirm,
  .verify-btn-report {
    flex: 1 1 100%;
    border-radius: var(--radius-pill) !important;
  }
}
