/* ═══════════════════════════════════════════════════════════
   DJ ANDI – PREMIUM ONE-PAGER
   Design: Editorial Dark / Amber & Warm Gold / Ivory
   ═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:           #0D0B09;
  --clr-bg-alt:       #141210;
  --clr-bg-dark:      #080605;
  --clr-surface:      #1C1814;
  --clr-surface-2:    #23201C;
  --clr-border:       rgba(212, 120, 42, 0.18);
  --clr-blue:         #D4782A;
  --clr-blue-light:   #F0A050;
  --clr-blue-dim:     rgba(212, 120, 42, 0.12);
  --clr-cyan:         #F0C080;
  --clr-cyan-dim:     rgba(240, 192, 128, 0.10);
  --clr-text:         #EDE8E0;
  --clr-text-muted:   #8A7E72;
  --clr-text-faint:   #3D3530;
  --clr-white:        #F5F0E8;

  /* Typography */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'DM Sans', system-ui, sans-serif;

  /* Fluid type scale */
  --text-xs:    clamp(0.75rem,  1vw,    0.875rem);
  --text-sm:    clamp(0.875rem, 1.2vw,  1rem);
  --text-base:  clamp(1rem,     1.4vw,  1.125rem);
  --text-lg:    clamp(1.125rem, 1.8vw,  1.375rem);
  --text-xl:    clamp(1.25rem,  2.2vw,  1.75rem);
  --text-2xl:   clamp(1.5rem,   3vw,    2.5rem);
  --text-3xl:   clamp(2rem,     4.5vw,  3.5rem);
  --text-4xl:   clamp(2.5rem,   6vw,    5rem);
  --text-hero:  clamp(3rem,     8vw,    7rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  10rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --duration:   600ms;
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle film-grain overlay — lifts the whole page to premium */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 260px 260px;
  mix-blend-mode: screen;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── SCROLL BAR ─────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-blue-dim); border-radius: 99px; }

/* ── SELECTION ──────────────────────────────────────────── */
::selection {
  background: var(--clr-blue-dim);
  color: var(--clr-blue);
}

/* ── FOCUS ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: 1.4rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clr-blue);
  opacity: 0.7;
  flex-shrink: 0;
}

.section-label--light {
  color: rgba(212, 120, 42, 0.7);
}

.section-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}

.section-headline em {
  font-style: italic;
  color: var(--clr-blue);
  font-weight: 400;
  text-shadow: 0 0 60px rgba(212, 120, 42, 0.35);
}

.section-headline--center {
  text-align: center;
}

.section-headline--light {
  color: var(--clr-white);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: transform 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out),
              background 300ms ease,
              color 300ms ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 200ms ease;
}

.btn:hover::after  { opacity: 1; }
.btn:hover         { transform: translateY(-2px); }
.btn:active        { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--clr-blue), #B5601A);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(212, 120, 42, 0.35),
              inset 0 1px 0 rgba(255,255,255,0.15);
  letter-spacing: 0.07em;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 6px;
  border: 1px solid rgba(212, 120, 42, 0.4);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--clr-blue-light), var(--clr-blue));
  box-shadow: 0 8px 40px rgba(212, 120, 42, 0.55),
              0 0 0 1px rgba(212, 120, 42, 0.3),
              inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.btn--primary:hover::before { opacity: 1; }

.btn--ghost,
.btn--outline {
  border: 1px solid rgba(212, 120, 42, 0.4);
  color: var(--clr-blue);
  background: transparent;
}

.btn--ghost:hover,
.btn--outline:hover {
  border-color: var(--clr-blue);
  box-shadow: 0 4px 20px rgba(212, 120, 42, 0.1);
}

.btn--gold {
  background: transparent;
  border: 1px solid var(--clr-blue);
  color: var(--clr-blue);
  font-weight: 500;
}

.btn--gold:hover {
  background: var(--clr-blue-dim);
  box-shadow: 0 4px 20px rgba(212, 120, 42, 0.15);
}

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

/* Visuell versteckt, aber für Screenreader & Suchmaschinen lesbar */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms var(--ease-out),
              transform 800ms var(--ease-out);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 400ms ease,
              padding 300ms ease,
              box-shadow 300ms ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.nav__menu {
  margin-left: auto;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  border: 1px solid rgba(212, 120, 42, 0.25);
  border-radius: 999px;
  background: rgba(212, 120, 42, 0.05);
  transition: background 280ms ease,
              border-color 280ms ease,
              box-shadow 280ms ease,
              transform 200ms var(--ease-out);
}

.nav__logo:hover {
  background: rgba(212, 120, 42, 0.1);
  border-color: rgba(212, 120, 42, 0.5);
  box-shadow: 0 0 24px rgba(212, 120, 42, 0.18);
  transform: translateY(-1px);
}

.nav__logo:active { transform: translateY(0); }

/* ── Mini Vinyl Disc ── */
.nav__vinyl {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(
    #130F0B 0%,  #0A0806 10%, #1D1712 20%, #0A0806 30%,
    #130F0B 40%, #0A0806 50%, #1D1712 60%, #0A0806 70%,
    #130F0B 80%, #0A0806 90%, #1D1712 100%
  );
  animation: navVinylSpin 5s linear infinite;
  box-shadow:
    0 0 0 1.5px rgba(212, 120, 42, 0.45),
    0 0 10px rgba(212, 120, 42, 0.18);
  transition: animation-duration 280ms ease,
              box-shadow 280ms ease;
}

/* Speed up spin on hover */
.nav__logo:hover .nav__vinyl {
  animation-duration: 1.4s;
  box-shadow:
    0 0 0 1.5px rgba(212, 120, 42, 0.7),
    0 0 18px rgba(212, 120, 42, 0.35);
}

@keyframes navVinylSpin {
  to { transform: rotate(360deg); }
}

/* Inner label — counter-rotates so text stays upright */
.nav__vinyl-label {
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #221C16, #0A0806);
  border: 1px solid rgba(212, 120, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: navVinylSpin 5s linear infinite reverse;
}

.nav__logo:hover .nav__vinyl-label {
  animation-duration: 1.4s;
}

.nav__vinyl-dj {
  font-family: var(--font-body);
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue-light);
  line-height: 1;
}

/* Logo wordmark */
.nav__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  line-height: 1;
}

.nav__logo-text em {
  font-style: italic;
  color: var(--clr-blue-light);
  text-shadow: 0 0 20px rgba(212, 120, 42, 0.4);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transition: color 200ms ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-blue);
  transition: width 250ms var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-blue);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(212, 120, 42, 0.5);
  border-radius: var(--radius-sm);
  color: var(--clr-blue) !important;
  font-weight: 500;
  transition: background 250ms ease, box-shadow 250ms ease;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--clr-blue-dim);
  box-shadow: 0 0 16px rgba(212, 120, 42, 0.15);
}

.nav__menu-close {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--clr-blue);
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--clr-bg-dark);
}

/* ── Floating intro text ── */
.hero-intro {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: calc(80px + clamp(1.2rem, 3vh, 2.5rem)) clamp(1.5rem, 5vw, 4rem) clamp(1rem, 2.5vh, 2rem);
  background: linear-gradient(to bottom,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.65) 55%,
    transparent 100%
  );
  flex-shrink: 0;
  pointer-events: none;
}

.hero-intro .hero__eyebrow,
.hero-intro .hero-intro__proof { pointer-events: auto; }

.hero-intro__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--clr-white);
  letter-spacing: -0.015em;
  text-shadow: 0 2px 30px rgba(8, 8, 8, 0.7);
  margin-bottom: 1.4rem;
}

.hero-intro__h1 em {
  font-style: italic;
  color: var(--clr-blue-light);
  font-weight: 400;
  text-shadow: 0 0 60px rgba(212, 120, 42, 0.45);
}

.hero-intro__proof {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 120, 42, 0.2);
  border-radius: 999px;
  font-size: var(--text-xs);
  color: rgba(221, 224, 245, 0.7);
}

/* ── Split cards container ── */
.hero-split {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

/* Expand-on-hover (modern browsers) */
@supports selector(:has(*)) {
  .hero-split:has(.hero-split__card:hover) .hero-split__card:not(:hover) {
    flex: 0.65;
  }
  .hero-split .hero-split__card:hover {
    flex: 1.35;
  }
}

/* JS fallback classes */
.hero-split.has-hover .hero-split__card { flex: 0.65; }
.hero-split.has-hover .hero-split__card.is-hovered { flex: 1.35; }

/* ── Individual card ── */
.hero-split__card {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  transition: flex 700ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  outline-offset: -4px;
}

/* ── Card background image ── */
.hero-split__bg {
  position: absolute;
  inset: 0;
}

.hero-split__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.55);
  transform: scale(1.06);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 700ms ease;
}

.hero-split__card:hover .hero-split__bg img {
  transform: scale(1);
  filter: saturate(0.7) brightness(0.65);
}

/* ── Gradient overlay per card ── */
.hero-split__overlay {
  position: absolute;
  inset: 0;
}

.hero-split__overlay--wedding {
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.5) 40%,
    rgba(8, 8, 8, 0.2) 100%
  );
}

.hero-split__overlay--party {
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.5) 40%,
    rgba(8, 8, 8, 0.2) 100%
  );
}

/* ── Card content ── */
.hero-split__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transform: translateY(10px);
  transition: transform 600ms var(--ease-out);
}

.hero-split__card:hover .hero-split__content {
  transform: translateY(0);
}

.hero-split__icon {
  width: 42px;
  height: 42px;
  color: var(--clr-blue-light);
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(212, 120, 42, 0.5));
  transition: transform 400ms var(--ease-out), filter 300ms ease;
}

.hero-split__card:hover .hero-split__icon {
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 0 16px rgba(212, 120, 42, 0.7));
}

.hero-split__tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-blue);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-split__tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--clr-blue);
  flex-shrink: 0;
}

.hero-split__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-split__list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms ease 80ms,
              transform 400ms var(--ease-out) 80ms;
}

.hero-split__card:hover .hero-split__list {
  opacity: 1;
  transform: translateY(0);
}

.hero-split__list li {
  font-size: var(--text-sm);
  color: rgba(221, 224, 245, 0.65);
  padding-left: 1rem;
  position: relative;
}

.hero-split__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clr-blue);
  font-size: 0.72em;
  top: 0.1em;
}

.hero-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--clr-blue), #B5601A);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(212, 120, 42, 0.35);
  transition: background 250ms ease,
              box-shadow 250ms ease,
              transform 250ms var(--ease-out);
}

.hero-split__card:hover .hero-split__cta {
  background: linear-gradient(135deg, var(--clr-blue-light), var(--clr-blue));
  box-shadow: 0 6px 30px rgba(212, 120, 42, 0.55);
  transform: translateY(-2px);
}

/* ── Center divider ── */
.hero-split__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  width: 1px;
}

.hero-split__divider-line {
  display: block;
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
}

.hero-split__divider-badge {
  flex-shrink: 0;
  padding: 0.5rem 0.85rem;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(212, 120, 42, 0.22);
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(221, 224, 245, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0;
}

/* ── Responsive: stack on mobile ── */
@media (max-width: 600px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }
  .hero-split {
    position: relative;
    flex-direction: column;
    inset: auto;
    min-height: 70svh;
  }
  .hero-split__divider {
    display: none;
  }
  .hero-split__card {
    min-height: 50vw;
  }
  .hero-split__list {
    opacity: 1;
    transform: none;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.4) brightness(0.5);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.65) 45%,
    rgba(8, 8, 30, 0.5) 100%
  );
}

/* Atmospheric blue glow that makes the image feel alive */
.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 25% 80%, rgba(212, 120, 42, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  opacity: 0.35;
}

.equalizer {
  width: 100%;
  height: 100%;
}

/* Animated equalizer bars */
.eq-bar {
  fill: var(--clr-blue);
  transform-origin: bottom center;
  animation: eqBounce var(--dur, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.eq-bar:nth-child(1)  { --dur: 0.9s;  --delay: 0.0s; }
.eq-bar:nth-child(2)  { --dur: 1.1s;  --delay: 0.1s; }
.eq-bar:nth-child(3)  { --dur: 0.8s;  --delay: 0.2s; }
.eq-bar:nth-child(4)  { --dur: 1.3s;  --delay: 0.05s; }
.eq-bar:nth-child(5)  { --dur: 0.95s; --delay: 0.3s; }
.eq-bar:nth-child(6)  { --dur: 1.05s; --delay: 0.15s; }
.eq-bar:nth-child(7)  { --dur: 1.2s;  --delay: 0.25s; }
.eq-bar:nth-child(8)  { --dur: 0.85s; --delay: 0.0s; }
.eq-bar:nth-child(9)  { --dur: 1.0s;  --delay: 0.2s; }
.eq-bar:nth-child(10) { --dur: 0.75s; --delay: 0.1s; }
.eq-bar:nth-child(11) { --dur: 1.15s; --delay: 0.35s; }
.eq-bar:nth-child(12) { --dur: 0.9s;  --delay: 0.05s; }
.eq-bar:nth-child(13) { --dur: 1.25s; --delay: 0.4s; }
.eq-bar:nth-child(14) { --dur: 0.8s;  --delay: 0.15s; }
.eq-bar:nth-child(15) { --dur: 1.1s;  --delay: 0.3s; }
.eq-bar:nth-child(16) { --dur: 0.95s; --delay: 0.08s; }
.eq-bar:nth-child(17) { --dur: 1.05s; --delay: 0.22s; }
.eq-bar:nth-child(18) { --dur: 0.88s; --delay: 0.45s; }

@keyframes eqBounce {
  from { transform: scaleY(0.2); opacity: 0.4; }
  to   { transform: scaleY(1.8); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
  width: 100%;
}

.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-blue);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 0.95;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 800px;
  text-shadow: 0 2px 40px rgba(8, 8, 8, 0.8);
}

.hero__headline em {
  font-style: italic;
  color: var(--clr-blue-light);
  font-weight: 400;
  text-shadow: 0 0 80px rgba(212, 120, 42, 0.5);
}

/* Inner wrapper handles the scale-down independently of the reveal fade */
.hero__hl-inner {
  display: block;
  transform: scale(1.12);
  transform-origin: left center;
  transition: transform 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fires once the parent .reveal gets .is-visible — waits 0.7s for the fade to finish */
.hero__headline.is-visible .hero__hl-inner {
  transform: scale(1);
  transition-delay: 0.7s;
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(232, 228, 219, 0.65);
  max-width: 560px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Social proof strip */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.65rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 120, 42, 0.2);
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero__proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22DD88;
  box-shadow: 0 0 8px rgba(34, 221, 136, 0.8);
  animation: probePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes probePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero__proof-stars {
  color: var(--clr-blue-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.hero__proof-text {
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  color: rgba(221, 224, 245, 0.7);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--clr-blue));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  writing-mode: vertical-rl;
}

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

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 120, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 0 0 1px rgba(212, 120, 42, 0.2),
              0 32px 80px rgba(8, 8, 8, 0.7),
              0 0 80px rgba(212, 120, 42, 0.06);
}

/* Decorative blue corner accent */
.about__img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(212, 120, 42, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
  transition: filter 600ms ease, transform 600ms var(--ease-out);
}

.about__img-frame:hover .about__img {
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.02);
}

.about__img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8, 8, 8, 0.6) 100%
  );
}

.about__stat-badge {
  position: absolute;
  background: rgba(18, 18, 30, 0.85);
  border: 1px solid rgba(212, 120, 42, 0.3);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.6rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5),
              0 0 0 1px rgba(212, 120, 42, 0.08) inset,
              0 0 40px rgba(212, 120, 42, 0.08);
}

.about__stat-badge--1 {
  bottom: 2rem;
  left: -2rem;
}

.about__stat-badge--2 {
  top: 3rem;
  right: -2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-blue-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212, 120, 42, 0.5);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  text-align: center;
}

.about__text {
  padding: 1rem 0;
}

.about__lead {
  font-size: var(--text-lg);
  color: var(--clr-text);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.8rem;
  margin-bottom: 1.2rem;
}

.about__body {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about__body em {
  color: var(--clr-text);
  font-style: italic;
}

.about__text .btn {
  margin-top: 2rem;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.services__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.services__header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.service-card {
  background: linear-gradient(160deg, var(--clr-surface-2) 0%, var(--clr-surface) 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  transition: background 400ms ease, box-shadow 400ms ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Subtle blue-glow ambient light in the top corner */
.service-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 120, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 400ms ease;
  opacity: 0;
}

.service-card:hover::after { opacity: 1; }
.service-card:hover { box-shadow: 0 8px 48px rgba(4, 4, 8, 0.5); }

.service-card:not(:last-child) {
  border-right: 1.5px solid var(--clr-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
}

.service-card:hover {
  background: var(--clr-surface-2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--party::before {
  background: linear-gradient(90deg, var(--clr-blue), var(--clr-cyan));
}

.service-card__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--clr-text-faint);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 300ms ease;
}

.service-card:hover .service-card__num {
  color: var(--clr-blue-dim);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--clr-blue);
  margin-bottom: 1.4rem;
  transition: transform 300ms var(--ease-out);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.service-card__text {
  color: var(--clr-text-muted);
  line-height: 1.75;
  font-size: var(--text-sm);
  margin-bottom: 1.5rem;
}

.service-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-card__list li {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clr-blue);
  font-size: 0.75em;
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-blue);
  letter-spacing: 0.04em;
  transition: letter-spacing 250ms ease, opacity 200ms ease;
  margin-top: auto;
}

.service-card__link:hover {
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════
   MUSIK & STIL
   ══════════════════════════════════════════════════════════ */
.music {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}

.music::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(240, 192, 128, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.music__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.music__body {
  color: rgba(232, 228, 219, 0.6);
  line-height: 1.8;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: var(--text-lg);
}

.music__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.genre-tag {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(212, 120, 42, 0.15);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(221, 224, 245, 0.65);
  background: rgba(212, 120, 42, 0.05);
  transition: all 300ms var(--ease-out);
  cursor: default;
}

.genre-tag:hover {
  border-color: rgba(212, 120, 42, 0.6);
  color: var(--clr-blue-light);
  background: rgba(212, 120, 42, 0.12);
  box-shadow: 0 0 16px rgba(212, 120, 42, 0.1);
  transform: translateY(-1px);
}

.genre-tag--more {
  border-color: rgba(240, 192, 128, 0.35);
  color: var(--clr-cyan);
  background: rgba(240, 192, 128, 0.07);
}

.genre-tag--more:hover {
  border-color: var(--clr-cyan);
  background: rgba(240, 192, 128, 0.15);
  box-shadow: 0 0 16px rgba(240, 192, 128, 0.12);
}

/* Vinyl record */
.music__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.vinyl-record {
  width: clamp(200px, 30vw, 340px);
  height: clamp(200px, 30vw, 340px);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #171210 0%,
    #0C0907 8%,
    #231B15 16%,
    #0C0907 24%,
    #231B15 32%,
    #0C0907 40%,
    #231B15 48%,
    #0C0907 56%,
    #231B15 64%,
    #0C0907 72%,
    #231B15 80%,
    #0C0907 88%,
    #231B15 100%
  );
  position: relative;
  animation: vinylSpin 8s linear infinite;
  box-shadow:
    0 0 0 2px rgba(212, 120, 42, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.6);
}

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

.vinyl-inner {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: var(--clr-bg);
  border: 1px solid rgba(212, 120, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  animation: vinylSpin 8s linear infinite reverse;
}

.vinyl-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--clr-blue);
  font-weight: 400;
  text-transform: uppercase;
}

.vinyl-text--lg {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.music__waveform {
  width: 100%;
  max-width: 400px;
  height: 60px;
}

.music__waveform svg {
  width: 100%;
  height: 100%;
}

.wave-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: waveDraw 3s var(--ease-out) forwards 0.5s,
             waveFloat 4s ease-in-out infinite 3.5s;
}

@keyframes waveDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes waveFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════════════════════
   TECHNIK
   ══════════════════════════════════════════════════════════ */
.tech {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.tech__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.tech__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.tech__sub {
  color: var(--clr-text-muted);
  margin-top: 1rem;
  font-size: var(--text-lg);
}

.tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tech-item {
  background: var(--clr-surface);
  padding: 2.5rem 2rem;
  transition: background 300ms ease;
  border-right: 1.5px solid var(--clr-border);
}

.tech-item:last-child {
  border-right: none;
}

.tech-item:hover {
  background: var(--clr-surface-2);
}

.tech-item__icon {
  width: 32px;
  height: 32px;
  color: var(--clr-blue);
  margin-bottom: 1.2rem;
}

.tech-item__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 0.7rem;
}

.tech-item__text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
}

.gallery__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.gallery__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition: transform 600ms var(--ease-out), filter 400ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(0.9);
}

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

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

.gallery-item--tall img {
  height: 100%;
  min-height: 400px;
}

.gallery__grid--masonry {
  grid-auto-flow: dense;
}

.gallery-item {
  cursor: zoom-in;
}

/* ══════════════════════════════════════════════════════════
   VIDEO-GALERIE
   ══════════════════════════════════════════════════════════ */
.video-gallery {
  padding: 0 0 var(--space-2xl);
  background: var(--clr-bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.video-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-item--portrait video {
  object-fit: contain;
}

.video-gallery__note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 10, 18, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 200ms ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ══════════════════════════════════════════════════════════
   EMPFOHLENE DIENSTLEISTER
   ══════════════════════════════════════════════════════════ */
.partners {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg);
}

.partners__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.partners__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms ease, border-color 400ms ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 120, 42, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.partner-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 500ms ease;
}

.partner-card:hover .partner-card__img {
  filter: saturate(1);
}

.partner-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.8rem;
  flex: 1;
}

.partner-card__tag {
  align-self: flex-start;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  border: 1px solid rgba(212, 120, 42, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}

.partner-card__name {
  font-size: var(--text-xl);
  color: var(--clr-white);
  line-height: 1.2;
}

.partner-card__text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.partner-card__link {
  margin-top: auto;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 5%;
  font-family: var(--font-display);
  font-size: clamp(12rem, 20vw, 24rem);
  color: rgba(212, 120, 42, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.testimonials__header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial {
  background: linear-gradient(160deg, var(--clr-surface-2) 0%, var(--clr-surface) 100%);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 300ms ease, box-shadow 300ms ease;
  position: relative;
}

.testimonial:not(:last-child) {
  border-right: 1.5px solid var(--clr-border);
}

.testimonial:hover {
  background: linear-gradient(160deg, #2A241E 0%, var(--clr-surface-2) 100%);
}

.testimonial--featured {
  border-top: 2px solid var(--clr-blue);
  box-shadow: inset 0 1px 0 rgba(212, 120, 42, 0.15);
}

/* Giant decorative opening quote mark */
.testimonial--featured::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 1;
  color: rgba(212, 120, 42, 0.08);
  pointer-events: none;
  user-select: none;
}

.testimonial__stars {
  color: var(--clr-blue);
  letter-spacing: 0.1em;
  font-size: var(--text-sm);
}

.testimonial__quote {
  flex: 1;
}

.testimonial__quote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  color: var(--clr-text);
  line-height: 1.65;
}

.testimonial--featured .testimonial__quote p {
  font-size: var(--text-xl);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 1.5rem;
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.6);
  border: 2px solid rgba(212, 120, 42, 0.4);
  box-shadow: 0 0 0 3px rgba(212, 120, 42, 0.1);
  flex-shrink: 0;
  transition: filter 300ms ease;
}

.testimonial:hover .testimonial__avatar {
  filter: saturate(0.85);
}

.testimonial__avatar--note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 120, 42, 0.9), rgba(212, 120, 42, 0.55));
  color: var(--clr-white);
  font-size: 1.4rem;
  line-height: 1;
  filter: none;
}

.testimonial:hover .testimonial__avatar--note {
  filter: none;
}

.testimonial__name {
  display: block;
  font-weight: 500;
  color: var(--clr-white);
  font-style: normal;
  font-size: var(--text-sm);
}

.testimonial__event {
  display: block;
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-alt);
}

.faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.faq__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  color: rgba(221, 224, 245, 0.85);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 250ms ease, padding-left 250ms var(--ease-out);
}

.faq-item__question:hover {
  color: var(--clr-white);
  padding-left: 0.4rem;
}

.faq-item__question[aria-expanded="true"] {
  color: var(--clr-blue-light);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  color: var(--clr-blue);
  flex-shrink: 0;
  transition: transform 350ms var(--ease-out);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 500ms var(--ease-out),
              padding 300ms ease;
}

.faq-item__answer.is-open {
  max-height: 300px;
}

.faq-item__answer p {
  padding-bottom: 1.6rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: var(--text-sm);
}

.faq-item__answer strong {
  color: var(--clr-text);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 120, 42, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.contact__text {
  color: rgba(232, 228, 219, 0.6);
  line-height: 1.8;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: var(--text-lg);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  transition: color 200ms ease;
}

a.contact-detail:hover {
  color: var(--clr-blue);
}

.contact-detail__icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

.contact__social {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all 250ms ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
  background: var(--clr-blue-dim);
}

/* Form */
.contact__form {
  background: linear-gradient(160deg, rgba(24, 24, 42, 0.9) 0%, rgba(18, 18, 30, 0.9) 100%);
  border: 1px solid rgba(212, 120, 42, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(212, 120, 42, 0.05) inset,
              0 24px 80px rgba(8, 8, 8, 0.6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.form-input {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--clr-text);
  transition: border-color 250ms ease, box-shadow 250ms ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--clr-text-faint);
}

.form-input:focus {
  outline: none;
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(212, 120, 42, 0.12),
              0 0 20px rgba(212, 120, 42, 0.08);
  background: rgba(10, 10, 10, 0.95);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236870A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--clr-surface);
}

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

.form-group--check {
  margin-top: 0.5rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--clr-blue);
}

.form-check__text {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.form-link {
  color: var(--clr-blue);
  text-decoration: underline;
  text-decoration-color: rgba(212, 120, 42, 0.4);
}

.form-row + .form-group {
  margin-top: 0;
}

#submitBtn {
  margin-top: 1.8rem;
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn-icon {
  transition: transform 250ms var(--ease-out);
}

#submitBtn:hover .btn-icon {
  transform: translateX(4px);
}

.form-success {
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: rgba(212, 120, 42, 0.1);
  border: 1px solid rgba(212, 120, 42, 0.3);
  border-radius: var(--radius-sm);
  color: var(--clr-blue);
  font-size: var(--text-sm);
  text-align: center;
}

.form-error {
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: rgba(200, 50, 50, 0.1);
  border: 1px solid rgba(200, 50, 50, 0.35);
  border-radius: var(--radius-sm);
  color: #c83232;
  font-size: var(--text-sm);
  text-align: center;
}

.form-error a {
  color: inherit;
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 2.5rem;
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 3rem;
}

.footer__brand .nav__logo {
  border-color: rgba(212, 120, 42, 0.18);
  background: transparent;
}

.footer__brand .nav__logo-text {
  font-size: 1.45rem;
}

.footer__tagline {
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  margin-top: 0.7rem;
  line-height: 1.6;
}

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

.footer__nav a {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  transition: color 200ms ease;
}

.footer__nav a:hover {
  color: var(--clr-blue);
}

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

.footer__legal a {
  font-size: var(--text-sm);
  color: var(--clr-text-faint);
  transition: color 200ms ease;
}

.footer__legal a:hover {
  color: var(--clr-text-muted);
}

/* "Cookie-Einstellungen"-Button im Footer – sieht aus wie die Links daneben */
.footer__legal-btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--clr-text-faint);
  cursor: pointer;
  transition: color 200ms ease;
}

.footer__legal-btn:hover {
  color: var(--clr-text-muted);
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  color: var(--clr-text-faint);
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
  letter-spacing: 0.03em;
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 44px;
  height: 44px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms var(--ease-out), background 200ms ease;
  backdrop-filter: blur(8px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--clr-blue-dim);
  border-color: var(--clr-blue);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card:not(:last-child) {
    border-right: none;
    border-bottom: 1.5px solid var(--clr-border);
  }

  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-item:nth-child(2) {
    border-right: none;
  }

  .tech-item:nth-child(3) {
    border-right: 1.5px solid var(--clr-border);
  }

  .tech-item:nth-child(1),
  .tech-item:nth-child(2) {
    border-bottom: 1.5px solid var(--clr-border);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonial:not(:last-child) {
    border-right: none;
    border-bottom: 1.5px solid var(--clr-border);
  }
}

@media (max-width: 900px) {
  .about__inner,
  .music__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about__stat-badge--1 { left: 1rem; bottom: 1rem; }
  .about__stat-badge--2 { right: 1rem; top: 1rem; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 198;
    background: rgba(0, 0, 0, 0.6);
  }

  .nav-overlay.open {
    display: block;
  }

  .nav__menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    height: 100vh;
    z-index: 199;
    margin-left: 0;
    background-color: #1C1814;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 2.5rem 3rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 420ms var(--ease-out);
    border-left: 2px solid var(--clr-blue);
    overflow-y: auto;
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.8);
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__menu-close {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
  }

  .nav__menu-close button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-blue);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 200ms ease, transform 150ms ease;
    box-shadow: 0 4px 16px rgba(212, 120, 42, 0.4);
  }

  .nav__menu-close button:active {
    transform: scale(0.92);
  }

  .nav__menu > li:not(.nav__menu-close) {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav__menu > li:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav__link {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    transition: color 200ms ease, padding-left 200ms ease;
  }

  .nav__link:hover,
  .nav__link.active {
    color: var(--clr-blue-light);
    padding-left: 0.5rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.9rem 2.2rem;
    background: var(--clr-blue);
    color: #ffffff !important;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 24px rgba(212, 120, 42, 0.5);
  }

  .nav__link--cta:hover {
    padding-left: 2.2rem;
    background: var(--clr-blue-light);
    color: #ffffff !important;
    box-shadow: 0 6px 30px rgba(212, 120, 42, 0.65);
  }

  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13, 11, 9, 0.97);
  }

  .site-header {
    z-index: 200;
  }

  .nav__burger {
    display: flex;
    z-index: 101;
    margin-left: auto;
  }

  .tech__grid {
    grid-template-columns: 1fr;
  }

  .tech-item {
    border-right: none;
    border-bottom: 1.5px solid var(--clr-border);
  }

  .tech-item:last-child {
    border-bottom: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .music__genres {
    gap: 0.5rem;
  }
}

/* ══════════════════════════════════════════════════════════
   PRELOADER  —  CDJ / Vinyl Interface
   ══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
  background: #0D0B09;
}

/* ── Left / Right curtain panels ── */
.preloader__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  background: #0D0B09;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader__panel--left  { left: 0; }
.preloader__panel--right { right: 0; }

.preloader.is-leaving .preloader__panel--left  { transform: translateX(-101%); }
.preloader.is-leaving .preloader__panel--right { transform: translateX(101%); }

/* ── Strobe flash ── */
.preloader__flash {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--clr-cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity 60ms ease;
}

.preloader__flash.is-active { opacity: 0.18; }

/* ── Stage content ── */
.preloader__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.2vw, 1.2rem);
  padding: 2rem;
  user-select: none;
  transition: opacity 280ms ease;
}

.preloader.is-leaving .preloader__content { opacity: 0; }

/* ── Vinyl wrapper (handles entrance animation) ── */
.preloader__vinyl-wrap {
  opacity: 0;
  transform: translateY(18px) scale(0.82);
  animation: plFadeUp 750ms var(--ease-out) 80ms forwards;
}

/* ── Vinyl record ── */
.preloader__vinyl {
  width: clamp(150px, 20vw, 220px);
  height: clamp(150px, 20vw, 220px);
  border-radius: 50%;
  background: conic-gradient(
    #130F0B 0%,   #0A0806 4%,  #1D1712 8%,  #0A0806 12%,
    #130F0B 16%,  #0A0806 20%, #1D1712 24%, #0A0806 28%,
    #130F0B 32%,  #0A0806 36%, #1D1712 40%, #0A0806 44%,
    #130F0B 48%,  #0A0806 52%, #1D1712 56%, #0A0806 60%,
    #130F0B 64%,  #0A0806 68%, #1D1712 72%, #0A0806 76%,
    #130F0B 80%,  #0A0806 84%, #1D1712 88%, #0A0806 92%,
    #130F0B 96%,  #0A0806 100%
  );
  animation: plVinylSpin 2.4s linear infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1.5px rgba(212, 120, 42, 0.4),
    0 0 0 4px rgba(212, 120, 42, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.75),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes plVinylSpin {
  to { transform: rotate(360deg); }
}

/* ── Vinyl center label (counter-rotates to stay upright) ── */
.preloader__vinyl-label {
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #221C16, #0A0806);
  border: 1px solid rgba(212, 120, 42, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  animation: plVinylSpin 2.4s linear infinite reverse;
}

.preloader__dj {
  font-family: var(--font-body);
  font-size: clamp(0.42rem, 0.8vw, 0.56rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--clr-blue);
  line-height: 1;
}

.preloader__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ── Sub tag ── */
.preloader__sub {
  font-size: clamp(0.52rem, 0.95vw, 0.65rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  opacity: 0;
  transform: translateY(8px);
  animation: plFadeUp 400ms ease 480ms forwards;
}

/* ── CDJ Deck display ── */
.preloader__deck {
  width: 100%;
  max-width: 540px;
  opacity: 0;
  transform: translateY(10px);
  animation: plFadeUp 400ms ease 560ms forwards;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(212, 120, 42, 0.12);
  border-radius: 8px;
  padding: clamp(0.7rem, 1.4vw, 1.1rem) clamp(0.9rem, 1.8vw, 1.4rem);
}

/* ── Waveform ── */
.preloader__waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 46px;
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
}

.preloader__waveform span {
  flex: 1;
  min-width: 0;
  border-radius: 1.5px;
  transform: scaleY(0);
  transform-origin: center;
  animation: plBarIn 180ms var(--ease-out) var(--delay, 0ms) forwards;
}

@keyframes plBarIn {
  to { transform: scaleY(1); }
}

/* ── Seekbar ── */
.preloader__seekbar {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  position: relative;
  margin-bottom: 0.65rem;
  overflow: visible;
}

.preloader__seekbar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-blue), var(--clr-blue-light));
  border-radius: 99px;
  transition: width 1700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 8px rgba(212, 120, 42, 0.55);
}

.preloader__seekbar-head {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-white);
  transition: left 1700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 6px var(--clr-blue), 0 0 12px rgba(212, 120, 42, 0.4);
}

/* ── Meta row ── */
.preloader__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preloader__bpm-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.preloader__bpm {
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--clr-blue);
  letter-spacing: 0.08em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.preloader__bpm-unit {
  font-size: clamp(0.48rem, 0.85vw, 0.6rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.preloader__status {
  font-size: clamp(0.5rem, 0.88vw, 0.62rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  animation: plBlink 700ms ease-in-out infinite;
}

.preloader__status.is-ready {
  color: #5cdb95;
  animation: none;
}

@keyframes plBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.preloader__key {
  font-size: clamp(0.52rem, 0.9vw, 0.65rem);
  letter-spacing: 0.06em;
  color: var(--clr-text-faint);
  font-style: italic;
}

@keyframes plFadeUp {
  to { opacity: 1; transform: none; }
}

/* ── Mobile preloader adjustments ── */
@media (max-width: 500px) {
  .preloader__content {
    padding: 1.25rem;
    gap: 0.45rem;
  }

  .preloader__deck {
    padding: 0.65rem 0.85rem;
  }

  .preloader__waveform {
    gap: 1.5px;
    height: 36px;
  }

  .preloader__vinyl {
    width: clamp(110px, 32vw, 160px);
    height: clamp(110px, 32vw, 160px);
  }

  .preloader__meta {
    gap: 0.4rem;
  }

  .preloader__bpm {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
}

/* ── Scroll lock during load ── */
body.is-loading { overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO — Subpage banner header
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 120, 42, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.page-hero__breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.page-hero__breadcrumb a:hover { color: var(--clr-blue-light); }

.page-hero__breadcrumb-sep { color: var(--clr-text-faint); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--clr-white);
  margin-top: 0.75rem;
}

.page-hero__title em {
  font-style: italic;
  color: var(--clr-blue-light);
}

.page-hero__sub {
  margin-top: 1.25rem;
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 120, 42, 0.11) 0%, transparent 68%);
  pointer-events: none;
}

.cta-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-banner__title em {
  color: var(--clr-blue-light);
  font-style: italic;
}

.cta-banner__text {
  color: var(--clr-text-muted);
  font-size: var(--text-base);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.pricing__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.pricing__note {
  margin-top: 1rem;
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.pricing-card {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 300ms ease, transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.pricing-card:hover {
  border-color: rgba(212, 120, 42, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  border-color: var(--clr-blue);
  background: linear-gradient(145deg, #23201C 0%, rgba(212,120,42,0.07) 100%);
}

.pricing-card--featured:hover {
  border-color: var(--clr-blue-light);
}

.pricing-card__badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-blue);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}

.pricing-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-card__price {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-blue-light);
  line-height: 1;
}

.pricing-card__price-from {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--clr-text-muted);
  margin-right: 0.25rem;
}

.pricing-card__price-note {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin-top: 0.35rem;
  margin-bottom: 1.75rem;
}

.pricing-card__list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card__list li {
  padding: 0.55rem 0;
  font-size: var(--text-sm);
  color: var(--clr-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.pricing-card__list li::before {
  content: '✓';
  color: var(--clr-blue);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ══════════════════════════════════════════════════════════
   SERVICE HERO — Full-bleed hero for dedicated event pages
   ══════════════════════════════════════════════════════════ */
.service-hero {
  position: relative;
  height: 75vh;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 6, 5, 0.96) 0%,
    rgba(8, 6, 5, 0.55) 45%,
    rgba(8, 6, 5, 0.15) 100%
  );
}

.service-hero__breadcrumb {
  position: absolute;
  top: clamp(5rem, 10vw, 7rem);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 200, 160, 0.6);
}

.service-hero__breadcrumb a {
  color: rgba(240, 200, 160, 0.6);
  text-decoration: none;
  transition: color 200ms ease;
}

.service-hero__breadcrumb a:hover { color: var(--clr-blue-light); }
.service-hero__breadcrumb-sep { color: rgba(240,200,160,0.3); }

.service-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  width: 100%;
}

.service-hero__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-blue-light);
  border: 1px solid rgba(212, 120, 42, 0.4);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}

.service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--clr-white);
}

.service-hero__title em {
  font-style: italic;
  color: var(--clr-blue-light);
}

.service-hero__sub {
  margin-top: 1.25rem;
  font-size: var(--text-lg);
  color: rgba(237, 232, 224, 0.7);
  max-width: 580px;
  line-height: 1.6;
}

.service-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ── Highlight features strip below service hero ── */
.service-features {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.75rem 0;
}

.service-features__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.service-feature strong {
  color: var(--clr-blue-light);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   TEASER SECTIONS (home page abbreviated blocks)
   ══════════════════════════════════════════════════════════ */
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-blue-light);
  text-decoration: none;
  transition: gap 200ms ease, color 200ms ease;
}

.teaser-link:hover {
  gap: 0.9rem;
  color: var(--clr-cyan);
}

/* Gallery teaser — 2×2 on home */
.gallery-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-teaser__grid .gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-teaser__grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

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

.gallery-teaser__footer {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 600px) {
  .gallery-teaser__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   PRICE BREAKDOWN — "Wie setzt sich mein Preis zusammen?"
   ══════════════════════════════════════════════════════════ */
.price-breakdown {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.price-breakdown__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.price-breakdown__intro {
  color: var(--clr-text-muted);
  font-size: var(--text-base);
  max-width: 660px;
  margin: 1rem auto 3.5rem;
  text-align: center;
  line-height: 1.8;
}

/* ── Hours timeline table ── */
.breakdown-timeline {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.breakdown-timeline__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}

.breakdown-timeline__sub {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 220px 1fr 70px;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-row:last-child {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1.5px solid var(--clr-border);
}

.breakdown-row__label {
  font-size: var(--text-sm);
  color: var(--clr-text);
  white-space: nowrap;
}

.breakdown-row:last-child .breakdown-row__label {
  font-weight: 600;
  color: var(--clr-white);
}

.breakdown-row__track {
  background: var(--clr-surface-2);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.breakdown-row__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-blue-light) 100%);
  transition: width 1s var(--ease-out);
  width: 0;
}

.breakdown-row.is-visible .breakdown-row__fill {
  width: var(--fill-w, 0%);
}

.breakdown-row:last-child .breakdown-row__track {
  background: rgba(212, 120, 42, 0.15);
}

.breakdown-row:last-child .breakdown-row__fill {
  background: linear-gradient(90deg, var(--clr-blue-light) 0%, var(--clr-cyan) 100%);
}

.breakdown-row__hours {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-blue-light);
  text-align: right;
  white-space: nowrap;
}

.breakdown-row:last-child .breakdown-row__hours {
  color: var(--clr-cyan);
  font-size: var(--text-base);
}

@media (max-width: 640px) {
  .breakdown-row {
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto auto;
  }
  .breakdown-row__track {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .breakdown-timeline {
    padding: 1.5rem 1.25rem;
  }
}

/* ── Factor cards grid ── */
.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .breakdown-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .breakdown-grid { grid-template-columns: 1fr; }
}

.breakdown-card {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color 300ms ease, transform 300ms var(--ease-out);
}

.breakdown-card:hover {
  border-color: rgba(212, 120, 42, 0.45);
  transform: translateY(-3px);
}

.breakdown-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.breakdown-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.breakdown-card__text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ── Summary box ── */
.breakdown-summary {
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(212, 120, 42, 0.06) 100%);
  border: 1.5px solid var(--clr-blue);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.breakdown-summary__text {
  font-size: var(--text-base);
  color: var(--clr-text);
  line-height: 1.8;
}

.breakdown-summary__text strong {
  color: var(--clr-blue-light);
}

@media (max-width: 640px) {
  .breakdown-summary {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--clr-surface);
  border-top: 2px solid var(--clr-blue);
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 500ms var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 3rem;
  align-items: center;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--clr-blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background 200ms ease, transform 150ms ease;
  white-space: nowrap;
}

.cookie-btn:active { transform: scale(0.97); }

.cookie-btn--accept {
  background: var(--clr-blue);
  color: #fff;
}

.cookie-btn--accept:hover { background: var(--clr-blue-light); }

.cookie-btn--decline {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--decline:hover {
  color: var(--clr-text);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
   ══════════════════════════════════════════════════════════ */
.legal-content {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--clr-bg);
}

.legal-content__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--clr-blue-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--clr-blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: var(--clr-text);
  font-weight: 600;
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
