/* ═══════════════════════════════════════════════
   DJ DJINGO DJANGO — style.css
   Fonts: Syne (variable, 400–800) + DM Sans (variable, 300–700)
   Palette: #080810 · #C084FC · #67E8F9 · #F1F5F9
═══════════════════════════════════════════════ */

/* ── FONTS (lokal, kein CDN) ── */
@font-face {
  font-family: 'Big Shoulders Display';
  src: url('../fonts/BigShouldersDisplay.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ── */
:root {
  --bg:          #080810;
  --bg-2:        #0d0d1a;
  --bg-card:     #0f0f1f;
  --purple:      #C084FC;
  --purple-dim:  rgba(192,132,252,.12);
  --purple-glow: rgba(192,132,252,.45);
  --purple-mid:  rgba(192,132,252,.25);
  --cyan:        #67E8F9;
  --cyan-dim:    rgba(103,232,249,.1);
  --cyan-glow:   rgba(103,232,249,.4);
  --text:        #F1F5F9;
  --text-muted:  #94A3B8;
  --text-dim:    #64748B;
  --border:      rgba(192,132,252,.18);
  --border-subtle: rgba(255,255,255,.06);
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --radius:       3px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── SCANLINE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.025) 3px,
    rgba(0,0,0,.025) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
#nav.scrolled {
  background: rgba(8,8,16,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 32px;
  width: auto;
}
.nav-logo-letter {
  height: 22px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.nav-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: .75rem;
}
.nav-lang-switch a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}
.nav-lang-switch a:hover {
  background: rgba(138, 43, 226, 0.2);
  transform: scale(1.1);
}
.nav-lang-switch a.lang-active {
  background: rgba(138, 43, 226, 0.3);
}
.nav-lang-switch .lang-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lang-switch { display: flex; align-items: center; gap: .3rem; font-size: .75rem; letter-spacing: .08em; }
.lang-switch span { color: var(--text-dim); }
.lang-switch a { color: var(--text-muted); letter-spacing: .08em; }
.lang-switch a:hover { color: var(--cyan); }
.lang-switch a::after { display: none; }
.lang-active { color: var(--cyan) !important; font-weight: 600; }

.nav-cta {
  padding: .55rem 1.4rem;
  border: 1px solid var(--purple);
  color: var(--purple);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--purple);
  color: var(--bg);
  box-shadow: 0 0 24px var(--purple-glow);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,16,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--purple); }
.nav-mobile-booking {
  padding: 1rem 2rem !important;
  background: var(--purple) !important;
  color: var(--bg) !important;
  border-radius: var(--radius);
  font-size: 1.2rem !important;
  font-weight: 700;
  transition: background var(--transition), box-shadow var(--transition);
  margin-bottom: 1rem;
}
.nav-mobile-booking:hover {
  background: var(--cyan) !important;
  color: var(--bg-dark) !important;
  box-shadow: 0 0 24px rgba(138, 43, 226, 0.5);
}
.nav-mobile .nav-cta { font-size: 1rem; padding: .8rem 2.5rem; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../brand_assets/DjingoDjango@EsquinzoBeach.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) brightness(.35) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(192,132,252,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(103,232,249,.1) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,8,16,.3) 0%, rgba(8,8,16,.7) 60%, var(--bg) 100%);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .7s .15s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--cyan);
  opacity: .6;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7.8vw, 7rem);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .7s .3s forwards;
}
.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
  display: block;
}
.hero-title strong {
  display: block;
  color: var(--text);
  position: relative;
  animation: glitch 10s 2s infinite;
}
.hero-title strong::before,
.hero-title strong::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0;
}
.hero-title strong::before {
  color: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  animation: glitch-top 10s 2s infinite;
  animation-fill-mode: backwards;
}
.hero-title strong::after {
  color: var(--purple);
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: glitch-bot 10s 2s infinite;
  animation-fill-mode: backwards;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .7s .45s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .6s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-dim);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s 1s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(15,15,31,.6);
  backdrop-filter: blur(8px);
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--purple);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  margin-top: .2rem;
}
.stats-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════ */
.section {
  padding: 7rem 3rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: .01em;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: normal;
  color: var(--purple);
}
.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-muted);
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: var(--purple);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  box-shadow: 0 0 32px var(--purple-glow), 0 4px 16px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: .9rem 2.4rem;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: none;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-2px);
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
   ÜBER MICH
═══════════════════════════════════════════════ */
#about {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,232,249,.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,132,252,.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.about-img-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05);
  display: block;
}
.about-img-border {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  border: 1px solid var(--border);
  z-index: -1;
}
.about-img-badge {
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  width: 50%;
  background: var(--purple);
  padding: .6rem 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.about-badge-logo {
  width: 100%;
  height: auto;
  display: block;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text); font-weight: 500; }

.about-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--purple);
  background: var(--purple-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text) !important;
  line-height: 1.5;
  margin: 0 !important;
  font-style: italic;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--purple);
  line-height: 1;
}
.about-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .25rem;
}

/* ═══════════════════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════════════════ */
#services {
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,.07) 0%, transparent 60%);
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: transparent;
  margin-bottom: 3rem;
}
.service-card {
  background: rgba(16,14,32,0.5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) translateY(0) translateZ(0);
  transition: background .4s, border-color .4s, box-shadow .4s, transform .4s cubic-bezier(.23,1,.32,1);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 20px rgba(0,0,0,0.35),
    0 24px 48px rgba(0,0,0,0.3),
    0 40px 72px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}
/* Liquid shimmer top-edge */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.service-card:hover {
  background: rgba(22,18,44,0.68);
  border-color: rgba(192,132,252,0.22);
  transform: perspective(1000px) translateY(-10px) translateZ(20px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.25),
    0 16px 40px rgba(0,0,0,0.5),
    0 40px 80px rgba(0,0,0,0.4),
    0 64px 100px rgba(0,0,0,0.2),
    0 0 30px rgba(192,132,252,0.08),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-list li {
  font-size: .82rem;
  color: var(--text-dim);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: .75rem;
}

.service-card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity var(--transition);
}
.service-card-link:hover { opacity: .7; }

.services-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
}
.extra-item {
  background: var(--bg-card);
  padding: 1.5rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  display: block;
  border: 1px solid transparent;
}
.extra-item:hover {
  background: var(--purple-dim);
  border-color: rgba(192,132,252,.25);
  transform: translateY(-3px);
}
.extra-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.extra-label {
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   PAKETE & PREISE
═══════════════════════════════════════════════ */
#pricing {
  background: var(--bg-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: transparent;
  margin-top: 3.5rem;
}
.pricing-card {
  background: rgba(16,14,32,0.45);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: perspective(1000px) translateY(0) translateZ(0);
  transition: background .4s, border-color .4s, box-shadow .4s, transform .4s cubic-bezier(.23,1,.32,1);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 20px rgba(0,0,0,0.35),
    0 24px 48px rgba(0,0,0,0.3),
    0 40px 72px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}
/* Liquid shimmer top-edge */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.pricing-card:hover {
  background: rgba(22,18,44,0.65);
  border-color: rgba(192,132,252,0.2);
  transform: perspective(1000px) translateY(-10px) translateZ(20px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.25),
    0 16px 40px rgba(0,0,0,0.5),
    0 40px 80px rgba(0,0,0,0.4),
    0 64px 100px rgba(0,0,0,0.2),
    0 0 28px rgba(192,132,252,0.07),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(192,132,252,0.12) 0%, rgba(103,232,249,0.05) 100%);
  border-color: rgba(192,132,252,0.35);
  transform: perspective(1000px) translateY(-6px) translateZ(12px);
  z-index: 1;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.25),
    0 16px 40px rgba(0,0,0,0.45),
    0 40px 80px rgba(0,0,0,0.35),
    0 0 50px rgba(192,132,252,0.14),
    inset 0 1px 0 rgba(192,132,252,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.55), transparent);
}
.pricing-card.featured:hover {
  border-color: rgba(192,132,252,0.55);
  transform: perspective(1000px) translateY(-16px) translateZ(30px);
  box-shadow:
    0 6px 12px rgba(0,0,0,0.3),
    0 24px 56px rgba(0,0,0,0.55),
    0 56px 100px rgba(0,0,0,0.45),
    0 0 60px rgba(192,132,252,0.2),
    inset 0 1px 0 rgba(192,132,252,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}
.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
}
.pricing-tier {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pricing-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.pricing-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.pricing-features li::before {
  content: '✓';
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.pricing-price span {
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-cta { width: 100%; }

/* ═══════════════════════════════════════════════
   ABLAUF / PROZESS
═══════════════════════════════════════════════ */
#process {
  position: relative;
  overflow: hidden;
}
#process::before {
  content: '';
  position: absolute;
  right: -20%;
  bottom: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,.06) 0%, transparent 60%);
  pointer-events: none;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--purple);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--purple);
  position: relative;
  transition: background var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-num {
  background: var(--purple);
  color: var(--bg);
  box-shadow: 0 0 20px var(--purple-glow);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   GALERIE & REFERENZEN
═══════════════════════════════════════════════ */
#testimonials {
  background: var(--bg-2);
}
.testimonials-grid {
  margin-bottom: 5rem;
}

/* Carousel */
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.carousel-track .testimonial-card {
  flex-shrink: 0;
  /* width set by JS based on viewport */
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover:not(:disabled) {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(192,132,252,.08);
}
.carousel-btn:disabled { opacity: .3; cursor: default; }
.carousel-dots { display: flex; gap: .5rem; align-items: center; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
}
.carousel-dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.testimonial-card:hover { background: rgba(192,132,252,.04); border-color: rgba(192,132,252,.3); }
.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1.25rem;
}
.testimonial-stars span {
  color: var(--cyan);
  font-size: 1rem;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--purple); font-size: 1.5rem; line-height: 0; vertical-align: -.4rem; margin-right: .2rem; }
.testimonial-text::after  { content: '"'; color: var(--purple); font-size: 1.5rem; line-height: 0; vertical-align: -.4rem; margin-left:  .2rem; }
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-meta {
  font-size: .78rem;
  color: var(--text-dim);
}

/* Gallery grid */
/* Gallery preview mode: zeige nur die ersten 8 Items */
.gallery-grid--preview .gallery-item:nth-child(n+9) {
  display: none;
}

/* Filter-Tabs zunächst versteckt */
.gallery-filters--hidden {
  display: none;
}

/* Mehr-Button */
.gallery-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.gallery-more-btn svg {
  transition: transform .3s;
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.gallery-filter {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
}
.gallery-filter:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.gallery-filter.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

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

/* When filtered: uniform 4-col layout, hidden items removed from flow */
.gallery-grid.gallery-filtered .gallery-item {
  grid-column: span 4 !important;
  grid-row: span 1 !important;
}
.gallery-item.gallery-hidden {
  display: none;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 5; }
.gallery-item:nth-child(8) { grid-column: span 4; }
.gallery-item:nth-child(9) { grid-column: span 3; }
/* Ab Item 10: gleichmäßiges 4-Spalten-Raster */
.gallery-item:nth-child(n+10) { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: transform .7s cubic-bezier(.23,1,.32,1), filter .7s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,132,252,.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* Videos */
.videos-section {
  margin-top: 3rem;
}
.videos-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.video-facade {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  overflow: hidden;
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter .3s;
}
.video-facade:hover img { filter: grayscale(0%); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: rgba(8,8,16,.5);
  transition: background .3s;
}
.video-facade:hover .video-play { background: rgba(8,8,16,.3); }
.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: box-shadow .3s, transform .3s;
}
.video-facade:hover .video-play-btn {
  box-shadow: 0 0 24px var(--purple-glow);
  transform: scale(1.08);
}
.video-play-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.video-title-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(8,8,16,.9), transparent);
  font-size: .82rem;
  color: var(--text);
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
#faq {
  position: relative;
}
.faq-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 6rem;
  margin-top: 1rem;
  align-items: start;
}
.faq-intro p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1.25rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .97rem;
  color: var(--text);
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--purple);
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--purple);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════ */
#contact {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  left: -15%;
  bottom: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}
.contact-info .section-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .92rem;
  color: var(--text-muted);
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.contact-detail a { transition: color var(--transition); }
.contact-detail a:hover { color: var(--cyan); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(192,132,252,.12);
}
.form-select { cursor: pointer; }
.form-select option { background: #0d0d1a; color: var(--text); }
.form-textarea { resize: vertical; min-height: 130px; }

/* Date picker wrapper */
.form-date-wrap {
  position: relative;
}
.form-date-wrap .form-input {
  padding-right: 2.8rem;
  cursor: pointer;
}
.form-date-icon {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 2.8rem;
  height: 100%;
  cursor: pointer;
}

/* Honeypot */
.form-honeypot { display: none !important; }

.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .82rem;
  color: var(--text-muted);
  cursor: pointer;
}
.form-gdpr input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--purple);
  margin-top: .1rem;
}
.form-gdpr a { color: var(--purple); }
.form-gdpr a:hover { text-decoration: underline; }

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--purple), rgba(103,232,249,.85));
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
}
.form-submit:hover {
  opacity: .92;
  box-shadow: 0 0 32px rgba(192,132,252,.35);
  transform: translateY(-1px);
}
.form-message {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(103,232,249,.1);
  border: 1px solid rgba(103,232,249,.3);
  color: var(--cyan);
}
.form-message.error {
  display: block;
  background: rgba(252,165,132,.1);
  border: 1px solid rgba(252,165,132,.3);
  color: #FCA5A5;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  padding: 3.5rem 3rem;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-logo-img {
  height: 64px;
  width: auto;
}
.footer-brand span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-center {
  text-align: center;
}
.footer-copy {
  font-size: .78rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  justify-content: flex-end;
}
.footer-links a {
  font-size: .78rem;
  color: var(--text-dim);
  transition: color var(--transition);
  letter-spacing: .04em;
}
.footer-links a:hover { color: var(--cyan); }

.contact-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.contact-social a:hover {
  background: rgba(138, 43, 226, 0.15);
  transform: translateY(-2px);
}
.social-icon-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  opacity: 0.5;
  cursor: not-allowed;
}
.social-icon-disabled:hover {
  opacity: 0.6;
}
.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Mixcloud Icon - größer skalieren wegen größerer Original-Datei (1920x1080) */
.social-icon-mixcloud {
  width: 40px !important;
  height: 40px !important;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
@keyframes scrollBounce {
  0%, 100% { opacity: .25; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}
@keyframes glitch {
  0%, 88%, 100%  { transform: none; }
  89% { transform: skewX(-3deg) translateX(-3px); }
  90% { transform: skewX(2deg)  translateX(3px);  }
  91% { transform: none; }
  92% { transform: skewX(-1deg) translateX(-1px); }
  93% { transform: none; }
}
@keyframes glitch-top {
  0%, 88%, 100%  { opacity: 0; transform: translateX(-50%); }
  89% { opacity: 1; transform: translateX(calc(-50% - 5px)); }
  90% { transform: translateX(calc(-50% + 5px)); }
  91% { opacity: 0; }
}
@keyframes glitch-bot {
  0%, 90%, 100%  { opacity: 0; transform: translateX(-50%); }
  91% { opacity: 1; transform: translateX(calc(-50% + 5px)); }
  92% { transform: translateX(calc(-50% - 5px)); }
  93% { opacity: 0; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-cards { grid-template-columns: 1fr; }
  .services-extras { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 2px; }
  .pricing-card.featured { transform: none; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-steps::before { display: none; }
  /* mobile card width set by JS (getVisible returns 1) */
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-item:nth-child(n) { grid-column: span 12; }
  .gallery-grid.gallery-filtered .gallery-item { grid-column: span 12 !important; }
  .gallery-filters { gap: .35rem; }
}

@media (max-width: 768px) {
  #nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; flex-shrink: 0; }
  .nav-logo-letter { display: none; }
  .nav-left { gap: .5rem; }
  .nav-lang-switch { gap: 0.25rem; padding-left: .5rem; }
  .nav-lang-switch a { width: 24px; height: 24px; border-radius: 3px; }
  .nav-lang-switch .lang-icon { width: 18px; height: 18px; }

  .section { padding: 4.5rem 1.25rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 340px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }

  .stats-divider { display: none; }
  .stats-inner { gap: 1.75rem; }

  .about-stats { gap: 1.5rem; }

  /* Globale Basisgröße anheben – skaliert alle rem-Werte automatisch mit */
  html { font-size: 17px; }
}

@media (max-width: 480px) {
  /* Samsung S24 und ähnliche: 18px Basis = alles proportional größer */
  html { font-size: 18px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; max-width: 280px; text-align: center; }

  .section { padding: 4rem 1rem; }
  .service-card,
  .pricing-card { padding: 1.75rem 1.25rem; }

  /* Formular-Inputs: iOS/Android zoomen nicht mehr rein */
  .form-input,
  .form-select,
  .form-textarea { font-size: 1rem; }

  /* Filter-Tabs bleiben kompakt */
  .gallery-filters { gap: .3rem; flex-wrap: wrap; }
  .gallery-filter { font-size: .78rem; padding: .38rem .8rem; }
}


/* ═══════════════════════════════════════════════
   EVENT-SEITEN: SPIELE & DEKO
═══════════════════════════════════════════════ */

/* Spiele-Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .games-grid { grid-template-columns: 1fr; } }

/* Einzelne Spiele-Karte – springt beim Erscheinen */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(32px) scale(0.95);
  transition: opacity .5s ease, transform .5s ease, border-color .3s;
}
.game-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.game-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px) scale(1.02);
}
/* Stagger-Verzögerung für jede Karte */
.game-card:nth-child(1) { transition-delay: .05s; }
.game-card:nth-child(2) { transition-delay: .12s; }
.game-card:nth-child(3) { transition-delay: .19s; }
.game-card:nth-child(4) { transition-delay: .26s; }
.game-card:nth-child(5) { transition-delay: .33s; }
.game-card:nth-child(6) { transition-delay: .40s; }

.game-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: .75rem;
  /* Hop-Animation beim Reinladen */
  animation: none;
}
.game-card.visible .game-icon {
  animation: iconHop .5s cubic-bezier(.36,.07,.19,.97) forwards;
  animation-delay: inherit;
}
@keyframes iconHop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25) rotate(-6deg); }
  70%  { transform: scale(0.92) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

.game-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .6rem;
}
.game-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.game-card-img {
  width: 100%;
  border-radius: .5rem;
  margin-bottom: 1rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Deko-Grid */
.deko-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .deko-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .deko-grid { grid-template-columns: 1fr; } }

.deko-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: border-color .3s, transform .3s;
}
.deko-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}
.deko-card--highlight {
  border-color: var(--purple);
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(192,132,252,.07));
  grid-column: span 1;
  position: relative;
  overflow: hidden;
}
.deko-card--highlight::before {
  content: '⭐ Highlight';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--purple);
  text-transform: uppercase;
}
.deko-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: .75rem;
}
.deko-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.deko-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   COOKIE NOTICE
═══════════════════════════════════════════════ */
#cookieNotice {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(15,15,31,.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: .75rem;
  padding: .9rem 1.4rem;
  max-width: min(640px, calc(100vw - 2rem));
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: opacity .35s ease, transform .35s ease;
}
#cookieNotice.cookie-notice--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
}
#cookieNotice span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
#cookieNotice a {
  color: var(--cyan);
  text-decoration: underline;
  white-space: nowrap;
}
#cookieNotice a:hover { opacity: .8; }
#cookieOkBtn {
  flex-shrink: 0;
  padding: .45rem 1.2rem;
  background: var(--purple);
  color: var(--bg);
  border: none;
  border-radius: .4rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
#cookieOkBtn:hover {
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}
@media (max-width: 480px) {
  #cookieNotice { flex-direction: column; align-items: flex-start; gap: .75rem; }
  #cookieOkBtn { align-self: flex-end; }
}
