/* ================================================
   DJ FELIX — Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ───────────────────────── */
:root {
  --c-black:     #080808;
  --c-surface-1: #111111;
  --c-surface-2: #191919;
  --c-surface-3: #242424;
  --c-white:     #ffffff;
  --c-silver:    #c0c0c0;
  --c-muted:     #6a6a6a;
  --c-border:    rgba(255, 255, 255, 0.07);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  --nav-h:        72px;
  --section-y:    clamp(5rem, 9vw, 9rem);
  --wrap:         1200px;

  --ease:         cubic-bezier(.25, .1, .25, 1);
  --ease-out:     cubic-bezier(0, 0, .2, 1);
  --ease-spring:  cubic-bezier(.34, 1.56, .64, 1);
}

/* ── RESET & BASE ────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-black);
  color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ── UTILITIES ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-silver);
  flex-shrink: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 25%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--c-white);
  background: transparent;
  color: var(--c-white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .28s var(--ease);
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-white);
  transform: translateX(-101%);
  transition: transform .32s var(--ease-out);
  z-index: 0;
}

.btn span { position: relative; z-index: 1; }

.btn:hover { color: var(--c-black); }
.btn:hover::after { transform: translateX(0); }

.btn-outline {
  border-color: rgba(255, 255, 255, .22);
  color: var(--c-silver);
}

.btn-outline:hover::after { background: rgba(255, 255, 255, .08); }
.btn-outline:hover { color: var(--c-white); }

/* ── REVEAL ANIMATION ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* ── NAVIGATION ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s var(--ease), border-bottom .4s var(--ease);
}

.nav.scrolled {
  background: rgba(8, 8, 8, .94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.nav__logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .14em;
  background: linear-gradient(90deg, #fff 0%, #999 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 5s linear infinite;
}

@keyframes textShine {
  to { background-position: 200% center; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav__links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color .2s var(--ease);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-white);
  transition: width .28s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--c-white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--c-white);
  transition: transform .32s var(--ease), opacity .32s var(--ease), width .32s var(--ease);
}

.nav__burger span:nth-child(2) { width: 70%; }

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  border-top: 1px solid var(--c-border);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .42s var(--ease-out), opacity .3s var(--ease);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: .08em;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 0;
  transition: color .2s, padding-left .2s var(--ease);
}

.nav__mobile a:first-child { border-top: 1px solid var(--c-border); }

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--c-white);
  padding-left: .75rem;
}

/* ── HERO BACKGROUND IMAGE ──────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.07;
  filter: grayscale(1);
  transform: scale(1.04);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 45%, rgba(255, 255, 255, .025) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(8, 8, 8, .1) 0%, rgba(8, 8, 8, .7) 80%, var(--c-black) 100%);
  pointer-events: none;
}

/* subtle noise grain */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  animation: heroIn .9s .15s both;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--c-silver), transparent);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  line-height: .88;
  margin-bottom: 1.75rem;
  animation: heroIn .9s .3s both;
}

.hero__title .t-small {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  color: rgba(255, 255, 255, .25);
  letter-spacing: .05em;
}

.hero__title .t-big {
  display: block;
  font-size: clamp(6rem, 16vw, 16rem);
  letter-spacing: -.01em;
  background: linear-gradient(140deg, #ffffff 30%, #7a7a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--c-silver);
  margin-bottom: .6rem;
  letter-spacing: .04em;
  animation: heroIn .9s .5s both;
}

.hero__sub {
  font-size: .8rem;
  color: var(--c-muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  animation: heroIn .9s .62s both;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroIn .9s .75s both;
}

/* ── HERO SPLIT (text + portrait) ────────────── */
.hero__content--split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__welcome {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .92;
  letter-spacing: .01em;
  margin-bottom: 1.75rem;
  animation: heroIn .9s .3s both;
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 300;
  color: var(--c-silver);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 1.5rem;
  animation: heroIn .9s .5s both;
}

.hero__portrait {
  position: relative;
  animation: heroIn 1s .55s both;
}

.hero__portrait-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65);
}

.hero__portrait-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .7s var(--ease);
}

.hero__portrait:hover .hero__portrait-img img { transform: scale(1.05); }

.hero__portrait-glow {
  position: absolute;
  inset: -14% -10% -18% -14%;
  z-index: 1;
  background: radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, .12), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: var(--c-muted);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  animation: heroIn 1s 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--c-muted));
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: .3; }
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  padding-block: var(--section-y);
  background: var(--c-black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: center;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: .95;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}

.about__text p {
  color: var(--c-muted);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: .9rem;
}

.about__text p strong {
  color: var(--c-silver);
  font-weight: 600;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-border);
  margin-top: 2.5rem;
  border: 1px solid var(--c-border);
}

.stat {
  padding: 1.5rem 1.75rem;
  background: var(--c-surface-1);
  position: relative;
  overflow: hidden;
  transition: background .25s var(--ease);
}

.stat:hover { background: var(--c-surface-2); }

.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--c-silver), transparent);
}

.stat__val {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--c-white);
}

.stat__label {
  font-size: .72rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-top: .3rem;
}

.about__visual { position: relative; }

.about__cta { margin-top: 2.25rem; }

.about__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-surface-2);
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.about__img-wrap:hover img { transform: scale(1.04); }

.about__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.about__placeholder svg { opacity: .18; color: var(--c-silver); }

.about__placeholder span {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.about__img-border {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid var(--c-border);
  pointer-events: none;
  z-index: -1;
}

/* ── SERVICES ────────────────────────────────── */
.services {
  padding-block: var(--section-y);
  background: var(--c-surface-1);
}

.services__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.services__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1;
  margin-bottom: .9rem;
  letter-spacing: .02em;
}

.services__header p {
  color: var(--c-muted);
  font-size: .97rem;
  line-height: 1.75;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--c-border);
  background: var(--c-border);
  gap: 1px;
}

.service-card {
  background: var(--c-surface-1);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .28s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-silver), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}

.service-card:hover { background: var(--c-surface-2); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 42px; height: 42px;
  margin-bottom: 1.75rem;
  color: var(--c-silver);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, .04);
  position: absolute;
  bottom: .75rem; right: 1.25rem;
  user-select: none;
  pointer-events: none;
  transition: color .28s var(--ease);
}

.service-card:hover .service-card__num {
  color: rgba(255, 255, 255, .07);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .65rem;
  letter-spacing: .03em;
}

.service-card p {
  font-size: .87rem;
  line-height: 1.72;
  color: var(--c-muted);
}

/* ── NUMBERS ─────────────────────────────────── */
.numbers {
  padding-block: 4.5rem;
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-border);
  gap: 1px;
  border: 1px solid var(--c-border);
}

.number-item {
  padding: 2.75rem 2rem;
  background: var(--c-black);
  text-align: center;
}

.number-item__val {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.number-item__label {
  font-size: .72rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .17em;
  margin-top: .5rem;
}

/* ── TEASER REFERENZEN ───────────────────────── */
.teaser-ref {
  padding-block: var(--section-y);
  background: var(--c-surface-1);
}

.teaser-ref__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.teaser-ref h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.teaser-ref p {
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: .97rem;
}

.teaser-ref__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}

.teaser-card {
  aspect-ratio: 4 / 3;
  background: var(--c-surface-2);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.teaser-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .85) 0%, rgba(8,8,8,.2) 60%);
}

.teaser-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-surface-2), var(--c-surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, .06);
  letter-spacing: .1em;
  overflow: hidden;
}

.teaser-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: transform .55s var(--ease);
}

.teaser-card:hover .teaser-card__bg img {
  transform: scale(1.07);
}

.teaser-card__label {
  position: relative;
  z-index: 1;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-silver);
}

/* ── IMPRESSIONS / SLIDER ────────────────────── */
.impressions {
  padding-block: var(--section-y);
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
}

.impressions__header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.impressions__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}

.impressions__header p {
  color: var(--c-muted);
  font-size: .97rem;
  line-height: 1.75;
}

.slider {
  position: relative;
}

.slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
  scrollbar-width: none;
}

.slider__track::-webkit-scrollbar { display: none; }

.slide {
  position: relative;
  flex: 0 0 clamp(240px, 32%, 360px);
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
}

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.25);
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.slide:hover img { transform: scale(1.06); filter: grayscale(0); }

.slide figcaption {
  position: absolute;
  left: 1rem; bottom: .9rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
  z-index: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .7) 0%, transparent 55%);
}

/* CTA-Kachel im Slider ("Dein Event") */
.slide--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, .18);
  background: linear-gradient(150deg, var(--c-surface-1), var(--c-surface-2));
  color: var(--c-muted);
  transition: border-color .28s var(--ease), color .28s var(--ease), background .28s var(--ease);
}

.slide--cta::after { content: none; }

.slide__cta-icon {
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  transition: transform .3s var(--ease-spring), border-color .28s var(--ease);
}

.slide__cta-icon svg { width: 26px; height: 26px; }

.slide__cta-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.slide--cta:hover {
  border-color: rgba(255, 255, 255, .4);
  color: var(--c-white);
  background: var(--c-surface-2);
}

.slide--cta:hover .slide__cta-icon {
  transform: scale(1.12);
  border-color: rgba(255, 255, 255, .5);
}

.impressions__actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: rgba(8, 8, 8, .8);
  backdrop-filter: blur(10px);
  color: var(--c-white);
  cursor: pointer;
  z-index: 3;
  transition: background .22s var(--ease), border-color .22s var(--ease), opacity .22s;
}

.slider__btn:hover { background: var(--c-surface-2); border-color: rgba(255, 255, 255, .3); }
.slider__btn svg { width: 20px; height: 20px; }
.slider__btn--prev { left: -8px; }
.slider__btn--next { right: -8px; }
.slider__btn[hidden] { display: none; }

/* ── INSTAGRAM / CALL CTA ────────────────────── */
.insta-cta {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(214, 41, 118, .12), transparent 55%),
    radial-gradient(120% 160% at 100% 100%, rgba(150, 47, 191, .12), transparent 55%),
    var(--c-surface-1);
}

.insta-cta__text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: .35rem;
}

.insta-cta__text p {
  color: var(--c-muted);
  font-size: .92rem;
  line-height: 1.6;
  max-width: 46ch;
}

.insta-cta__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-white);
  border-radius: 10px;
  background: linear-gradient(120deg, #feda75, #d62976 45%, #962fbf 80%, #4f5bd5);
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease);
  white-space: nowrap;
}

.insta-btn svg { width: 18px; height: 18px; }
.insta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214, 41, 118, .35); }

/* ── VIDEOS (9:16) ───────────────────────────── */
.videos {
  padding-block: var(--section-y);
  background: var(--c-surface-1);
  border-top: 1px solid var(--c-border);
}

.videos__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.videos__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.videos__header p {
  color: var(--c-muted);
  font-size: .96rem;
  line-height: 1.75;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}

.video-card__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Im Vollbild 9:16 behalten (nicht beschneiden, sondern einpassen) */
.video-card__media video:fullscreen {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
}
.video-card__media video:-webkit-full-screen {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
}

.video-card__label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-silver);
}

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  background: var(--c-black);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-bg);
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 20rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  white-space: nowrap;
  color: rgba(255, 255, 255, .022);
  pointer-events: none;
  user-select: none;
  letter-spacing: .04em;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: .95;
  letter-spacing: .03em;
  margin-bottom: .6rem;
}

.page-hero p {
  color: var(--c-muted);
  font-size: .95rem;
}

/* ── EVENTS / REFERENZEN ─────────────────────── */
.events {
  padding-block: var(--section-y);
  background: var(--c-black);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--c-surface-1);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: border-color .28s var(--ease), transform .35s var(--ease-out);
}

.event-card:hover {
  border-color: rgba(255, 255, 255, .22);
  transform: translateY(-5px);
}

.event-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-surface-2);
  position: relative;
}

.event-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.event-card:hover .event-card__media img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.event-card__ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-surface-2), var(--c-surface-3));
}

.event-card__ph span {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .07);
}

.event-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(8, 8, 8, .82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  padding: .22rem .65rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-silver);
}

.event-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.event-card__meta {
  font-size: .72rem;
  color: var(--c-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.event-card__body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}

.event-card__body p {
  font-size: .86rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.event-card--cta {
  border: 1px dashed rgba(255, 255, 255, .14);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  transition: border-color .28s var(--ease), background .28s var(--ease);
  text-decoration: none;
}

.event-card--cta:hover {
  border-color: rgba(255, 255, 255, .32);
  background: var(--c-surface-1);
  transform: none;
}

.event-card__cta-inner {
  text-align: center;
  padding: 2rem;
}

.event-card__cta-inner svg {
  width: 36px; height: 36px;
  color: var(--c-muted);
  margin: 0 auto .75rem;
  transition: color .25s, transform .3s var(--ease-spring);
}

.event-card--cta:hover .event-card__cta-inner svg {
  color: var(--c-white);
  transform: scale(1.12);
}

.event-card__cta-inner p {
  font-size: .8rem;
  color: var(--c-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s;
}

.event-card--cta:hover .event-card__cta-inner p { color: var(--c-white); }

/* ── CONTACT PAGE ────────────────────────────── */
.contact {
  padding-block: var(--section-y);
  background: var(--c-black);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .95;
  margin-bottom: 1rem;
}

.contact__info > p {
  color: var(--c-muted);
  margin-bottom: 2.75rem;
  line-height: 1.8;
  font-size: .96rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  margin-bottom: 2.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  background: var(--c-surface-1);
  transition: background .22s var(--ease);
  text-decoration: none;
  color: inherit;
}

.contact-item:hover { background: var(--c-surface-2); }

.contact-item__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--c-silver);
}

.contact-item__label {
  font-size: .67rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .1rem;
}

.contact-item__value {
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}

.contact-item:hover .contact-item__value { color: var(--c-silver); }

.social-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.3rem;
  border: 1px solid var(--c-border);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: border-color .22s, color .22s, background .22s;
  text-decoration: none;
}

.social-link:hover {
  border-color: rgba(255, 255, 255, .25);
  color: var(--c-white);
  background: var(--c-surface-1);
}

.social-link svg { width: 15px; height: 15px; }

.contact__map {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.65) brightness(0.62) contrast(1.08);
  transition: filter .4s var(--ease);
}

.contact__map:hover iframe {
  filter: grayscale(0.3) brightness(0.75) contrast(1.05);
}

/* ── LEGAL PAGES ─────────────────────────────── */
.legal {
  padding-block: var(--section-y);
  background: var(--c-black);
}

.legal__content { max-width: 760px; }

.legal__content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  margin-bottom: 2.5rem;
}

.legal__content h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--c-silver);
  margin-top: 2.5rem;
  margin-bottom: .6rem;
  padding-left: 1rem;
  border-left: 2px solid var(--c-silver);
}

.legal__content p,
.legal__content li {
  color: var(--c-muted);
  line-height: 1.85;
  font-size: .93rem;
  margin-bottom: .6rem;
}

.legal__content a {
  color: var(--c-silver);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.legal__content a:hover { color: var(--c-white); }

.legal__content ul {
  padding-left: 1.25rem;
  margin-bottom: .75rem;
}

.legal__content ul li {
  list-style: disc;
  color: var(--c-muted);
}

/* ── EVENT VIDEO ────────────────────────────── */
.event-video {
  padding-block: var(--section-y);
  text-align: center;
}

.event-video h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.event-video > .container > p {
  color: var(--c-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-size: .96rem;
}

.event-video__wrap {
  max-width: 900px;
  margin-inline: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface-1);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}

.event-video__wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--c-surface-1);
  border-top: 1px solid var(--c-border);
  padding-block: 4rem 1.75rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: .87rem;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 280px;
  margin-top: .85rem;
}

.footer__col h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer__col ul a {
  font-size: .87rem;
  color: var(--c-muted);
  transition: color .2s;
}

.footer__col ul a:hover { color: var(--c-white); }

.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer__bottom p {
  font-size: .78rem;
  color: var(--c-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.75rem;
}

.footer__bottom-links a {
  font-size: .78rem;
  color: var(--c-muted);
  transition: color .2s;
}

.footer__bottom-links a:hover { color: var(--c-white); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 440px; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__map { min-height: 340px; height: 340px; }
  .contact__map iframe { min-height: 340px; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .teaser-ref__inner { grid-template-columns: 1fr; }
  .teaser-ref__cards { max-width: 480px; }

  .hero { min-height: auto; padding-block: calc(var(--nav-h) + 3rem) 5rem; }
  .hero__content--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__portrait { max-width: 380px; margin-inline: auto; }
  .hero__portrait-img { aspect-ratio: 16 / 12; }
  .hero__portrait-img img { object-position: center 25%; }
  .hero__scroll { display: none; }
  .slide { flex-basis: clamp(220px, 62%, 320px); }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .numbers__grid { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .events__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .insta-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .insta-cta__actions { width: 100%; }
  .slider__btn { display: none; }
  .slide { flex-basis: 78%; }
}
