/* ═══════════════════════════════════════════════════════
   LAYLA 2  –  css/style.css
   Dark luxury nightclub · vollständig responsive
   ═══════════════════════════════════════════════════════ */

/* ══ LAYLA 2 LOGO SYSTEM ══
   Script-Schrift "Great Vibes" + Bold Italic "2" in Pink
   ══════════════════════════════════════════════════════ */
.layla2-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.layla2-logo__top {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.layla2-logo__name {
  font-family: 'Great Vibes', cursive;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 24px rgba(255,255,255,0.06);
}
.layla2-logo__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #FF1D78;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255,29,120,0.55), 0 0 28px rgba(255,29,120,0.25);
}
.layla2-logo__sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  display: block;
  margin-top: 18px;
  padding-left: 6px;
}

/* ── Age-Gate (mittelgroß) ── */
.layla2-logo--sm .layla2-logo__name { font-size: 64px; }
.layla2-logo--sm .layla2-logo__num  { font-size: 38px; margin-bottom: 8px; }
.layla2-logo--sm .layla2-logo__sub  { font-size: 9px; letter-spacing: 0.48em; margin-top: 16px; }

/* ── Header (klein) ── */
.layla2-logo--header .layla2-logo__name { font-size: 42px; }
.layla2-logo--header .layla2-logo__num  { font-size: 24px; margin-bottom: 5px; }
.layla2-logo--header .layla2-logo__sub  { font-size: 7px; letter-spacing: 0.42em; margin-top: 14px; }

/* ── Hero (groß) ── */
.layla2-logo--hero .layla2-logo__name { font-size: clamp(110px, 18vw, 200px); }
.layla2-logo--hero .layla2-logo__num  { font-size: clamp(66px, 11vw, 122px); margin-bottom: clamp(8px, 1.5vw, 18px); }
.layla2-logo--hero .layla2-logo__sub  { font-size: clamp(15px, 2vw, 26px); letter-spacing: 0.65em; margin-top: 24px; padding-left: 6px; }

/* ── About-Section (Titel) ── */
.layla2-logo--section .layla2-logo__name { font-size: clamp(52px, 8vw, 96px); }
.layla2-logo--section .layla2-logo__num  { font-size: clamp(32px, 5vw, 58px); margin-bottom: clamp(6px, 1vw, 12px); }

/* ── Footer (mittel, gold-ish) ── */
.layla2-logo--footer .layla2-logo__name { font-size: 52px; color: #E8C97A; text-shadow: 0 0 16px rgba(232,201,122,0.2); }
.layla2-logo--footer .layla2-logo__num  { font-size: 30px; margin-bottom: 7px; }
.layla2-logo--footer .layla2-logo__sub  { font-size: 8px; letter-spacing: 0.45em; color: #C9A84C; opacity: 0.75; margin-top: 16px; }

/* ── Mobile Anpassungen ── */
@media (max-width: 640px) {
  .layla2-logo--hero .layla2-logo__name { font-size: clamp(52px, 16vw, 82px); }
  .layla2-logo--hero .layla2-logo__num  { font-size: clamp(30px, 9vw, 48px); }
  .layla2-logo--hero .layla2-logo__sub  { font-size: clamp(10px, 2.5vw, 14px); letter-spacing: 0.45em; margin-top: 18px; }
  .layla2-logo--section .layla2-logo__name { font-size: clamp(44px, 14vw, 70px); }
  .layla2-logo--section .layla2-logo__num  { font-size: clamp(26px, 8vw, 42px); }
  .layla2-logo--sm .layla2-logo__name { font-size: 52px; }
  .layla2-logo--sm .layla2-logo__num  { font-size: 30px; }
  .layla2-logo--footer .layla2-logo__name { font-size: 40px; }
  .layla2-logo--footer .layla2-logo__num  { font-size: 24px; }
}

/* ══ CSS VARIABLES ══ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7A2E;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #181410;
  --card-bg:     rgba(20,16,8,0.92);
  --card-border: rgba(201,168,76,0.22);
  --white:       #ffffff;
  --light-2:     #d4cfc8;
  --muted:       #b0a898;
  --radius:      12px;
  --header-h:    68px;
  --shadow:      0 8px 48px rgba(0,0,0,0.65);
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }
button { font-family: inherit; }

/* ══ UTILITIES ══ */
.hidden  { display: none !important; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section       { padding: 100px 0; }
.dark-section  { background: var(--dark-2); }
.main-site     { display: block; }

.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px 0 32px;
  border: none;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.section-label {
  display: block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--white); line-height: 1.15;
}
.section-desc {
  font-size: 0.95rem; color: var(--muted);
  max-width: 600px; margin-top: 12px; line-height: 1.7;
}
.section-desc.light { color: var(--light-2); }
.section-header { margin-bottom: 56px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 4px; border: none; cursor: pointer;
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
  white-space: nowrap; text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #0a0a0a;
}
.btn--gold:hover  { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.btn--outline     { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: rgba(201,168,76,0.1); }
.btn--red         { background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; border-color: transparent; }
.btn--red:hover   { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(231,76,60,0.4); }
.btn--ghost       { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); }
.btn--call        { background: linear-gradient(135deg, #1a6b3a, #2dc653); color: #fff; }
.btn--whatsapp    { background: linear-gradient(135deg, #128C7E, #25D366); color: #fff; }
.btn--call:hover, .btn--whatsapp:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--lg          { padding: 15px 30px; font-size: 0.74rem; }
.btn--full        { width: 100%; }

/* ══ COOKIE BANNER ══ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: linear-gradient(135deg, rgba(12,9,4,0.98), rgba(22,17,7,0.98));
  border-top: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  padding: 16px 20px;
  display: none;
}
.cookie-banner__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-banner__icon { font-size: 1.6rem; flex-shrink: 0; }
.cookie-banner__text { flex: 1; min-width: 200px; }
.cookie-banner__text strong { color: var(--gold); display: block; margin-bottom: 3px; font-size: 0.9rem; }
.cookie-banner__text p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.cookie-banner__text a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ══ AGE-GATE ══ */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  display: none;
  animation: fadeInGate 0.5s ease;
}
@keyframes fadeInGate { from { opacity: 0; } to { opacity: 1; } }
.age-gate.visible { display: flex; }
.age-gate__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,6,2,0.97) 0%, rgba(0,0,0,1) 100%);
}
.age-gate__box {
  position: relative; z-index: 1; text-align: center;
  padding: 48px 36px; max-width: 480px; width: 92%;
  background: linear-gradient(145deg, rgba(30,22,8,0.9), rgba(10,10,10,0.96));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(201,168,76,0.12), 0 24px 64px rgba(0,0,0,0.8);
  backdrop-filter: blur(24px);
  animation: slideUpGate 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUpGate { from { transform: translateY(40px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.age-gate__logo { margin-bottom: 20px; }
.age-gate__divider { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 16px; }
.age-gate__subtitle { font-size: 0.6rem; letter-spacing: 0.32em; color: var(--gold); font-weight: 700; margin-bottom: 14px; text-transform: uppercase; }
.age-gate__headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 5vw, 2.3rem); font-weight: 300; color: #fff; margin-bottom: 14px; }
.age-gate__text { font-size: 0.87rem; color: #bbb; margin-bottom: 28px; line-height: 1.8; }
.age-gate__text strong { color: #fff; }
.age-gate__buttons { display: flex; flex-direction: column; gap: 12px; max-width: 300px; margin: 0 auto 20px; }
.age-gate__legal { font-size: 0.68rem; color: #555; line-height: 1.6; }
.age-gate__legal a { color: var(--gold); }

/* ══ HEADER ══ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 700;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(8,6,2,0.97), rgba(8,6,2,0.92));
  border-bottom: 1px solid rgba(201,168,76,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }
.header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-inline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.65rem;
  letter-spacing: -0.02em; line-height: 1;
}
.header__logo-club { color: #fff; margin-right: 0.08em; }
.header__logo-a1   { color: var(--gold); }

.nav { display: flex; }
.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #c0b8a8; transition: color 0.2s;
  position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link--cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a !important; padding: 8px 16px; border-radius: 4px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { opacity: 0.88; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
}
.hamburger__lines {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
}
.hamburger__lines span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.hamburger.open .hamburger__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger__lines span:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px; max-height: 1080px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: linear-gradient(160deg, #1a0e04 0%, #0d0a06 40%, #080604 100%);
}
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.05) 25%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.82) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 24px 72px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero__logo-wrap { margin-bottom: 12px; margin-top: -100px; }
.hero__logo-inline {
  display: block;
  line-height: 1;
  animation: logoPulse 1.8s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { transform: scale(1);    filter: drop-shadow(0 0 14px rgba(232,201,122,0.35)); }
  50%      { transform: scale(1.06); filter: drop-shadow(0 0 34px rgba(232,201,122,0.75)); }
}
.hero__name-glow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.42em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px;
}
.hero__tagline { font-size: 1rem; color: var(--light-2); margin-bottom: 18px; }
.hero__divider { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hero__divider span { flex: 1; max-width: 100px; height: 1px; }
.hero__divider span:first-child { background: linear-gradient(90deg, transparent, var(--gold)); }
.hero__divider span:last-child  { background: linear-gradient(90deg, var(--gold), transparent); }
.hero__divider i { color: var(--gold); font-size: 0.55rem; }
.hero__sub       { font-size: 0.85rem; color: var(--muted); margin-bottom: 32px; }
.hero__actions   { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__scroll {
  position: absolute; bottom: 24px; right: 28px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: pointer; color: var(--gold);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ══ HERO TICKER (nur mobile) ══ */
.hero__ticker {
  display: none;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--gold);
  overflow: hidden;
  padding: 9px 0;
}
.hero__ticker-track {
  display: inline-block; white-space: nowrap;
  animation: ticker 18s linear infinite;
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.18em; color: #0a0a0a;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero__ticker { display: block; }
}

/* ══ TICKER ══ */
.opening-banner { background: var(--gold); overflow: hidden; padding: 10px 0; }
.opening-banner__track {
  display: inline-block; white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-size: 0.63rem; font-weight: 800;
  letter-spacing: 0.2em; color: #0a0a0a; text-transform: uppercase;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══ ABOUT ══ */
.about { background: var(--dark); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; margin-bottom: 56px;
}
.about-title-club, .about-title-a1 { display: none; } /* ersetzt durch layla2-logo--section */
.about__lead  { font-size: 1.02rem; color: var(--light-2); margin-bottom: 18px; line-height: 1.78; }
.about__body  { font-size: 0.9rem; color: var(--muted); margin-bottom: 26px; line-height: 1.82; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--light-2); line-height: 1.5; }
.about__features li i { color: var(--gold); font-size: 0.72rem; flex-shrink: 0; margin-top: 3px; }
.about__img-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--card-border);
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a1208, #0d0c08);
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  border-top: 1px solid var(--card-border); padding-top: 40px;
}
.stat { text-align: center; padding: 18px 8px; }
.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat__label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ══ KOOPERATION ══ */
.kooperation { background: var(--dark-2); }
.koop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.koop__card {
  position: relative; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px 28px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.koop__card:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(201,168,76,0.1); }
.koop__card-glow {
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.koop__header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.koop__icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.25); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem;
}
.koop__name  { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.koop__url   { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.05em; }
.koop__intro { font-size: 0.88rem; color: var(--muted); line-height: 1.72; margin-bottom: 22px; }
.koop__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.koop__feature  { display: flex; gap: 9px; align-items: flex-start; }
.koop__feature i { color: var(--gold); font-size: 0.82rem; margin-top: 2px; flex-shrink: 0; }
.koop__feature strong { display: block; font-size: 0.78rem; color: #fff; margin-bottom: 2px; }
.koop__feature span   { font-size: 0.72rem; color: #888; line-height: 1.4; }
.koop__benefits { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.koop__benefits span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--light-2);
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px; padding: 3px 10px;
}
.koop__benefits span i { color: var(--gold); font-size: 0.62rem; }
.koop__dual-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  overflow: hidden;
}
.koop__dual-site { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0; }
.koop__dual-site .koop__name { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.koop__dual-divider {
  width: 1px; height: 42px; flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
}
.koop__dual-btns { display: flex; gap: 10px; }
.koop__dual-btns .btn { flex: 1; }
.koop__footer {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 36px; padding: 18px;
  background: rgba(201,168,76,0.05); border: 1px solid var(--card-border);
  border-radius: var(--radius); color: var(--light-2); font-size: 0.85rem;
  text-align: center;
}
.koop__footer i { color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }

/* ══ ANGEBOT ══ */
.angebot { background: var(--dark); }
.angebot__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.angebot__card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.angebot__card:hover { transform: translateY(-3px); box-shadow: 0 10px 38px rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.42); }
.angebot__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; margin-bottom: 18px;
}
.angebot__card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.angebot__card p  { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ══ GALERIE ══ */
.galerie { background: var(--dark-2); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: 8px;
  cursor: pointer; background: #141008;
  border: 1px solid rgba(201,168,76,0.1);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; color: var(--gold);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay i { font-size: 1.4rem; margin-bottom: 6px; }
.gallery__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  color: #fff; position: absolute; bottom: 10px; left: 12px; right: 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ══ LIGHTBOX ══ */
.lightbox {
  position: fixed; inset: 0; z-index: 8000;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.94); backdrop-filter: blur(8px); }
.lightbox__content { position: relative; z-index: 1; max-width: 92vw; max-height: 88vh; }
.lightbox__content img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; z-index: 2;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.95rem; transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(201,168,76,0.35); }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev  { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.75rem; color: var(--light-2); letter-spacing: 0.1em;
}

/* ══ INFO ══ */
.info__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.info__card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
}
.info__icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.05rem; margin-bottom: 18px;
}
.info__card h3 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.info__list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.86rem; color: var(--light-2); gap: 8px;
}
.info__list li:last-child { border-bottom: none; }
.info__note { margin-top: 14px; font-size: 0.78rem; color: var(--gold); display: flex; align-items: center; gap: 7px; }
.info__address { font-size: 0.9rem; color: var(--light-2); line-height: 1.85; margin-bottom: 14px; }
.info__transport { display: flex; flex-direction: column; gap: 7px; }
.info__transport span { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--muted); }
.info__transport i { color: var(--gold); flex-shrink: 0; }
.info__rules { display: flex; flex-direction: column; gap: 9px; }
.info__rules li { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--light-2); }
.info__rules i { color: var(--gold); font-size: 0.72rem; flex-shrink: 0; }

/* ══ KONTAKT ══ */
.kontakt { background: var(--dark); }
.kontakt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.kontakt__channels { display: flex; flex-direction: column; gap: 10px; }
.kontakt__channel {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; background: var(--card-bg);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.kontakt__channel:hover { border-color: rgba(201,168,76,0.52); transform: translateX(3px); }
.kontakt__ch-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(201,168,76,0.1); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.98rem;
}
.kontakt__ch-icon.whatsapp { background: rgba(37,211,102,0.1); color: #25D366; }
.kontakt__ch-label { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.kontakt__ch-value { font-size: 0.92rem; color: #fff; font-weight: 500; }
.kontakt__form {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 28px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  padding: 13px 15px; color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem;
  outline: none; resize: vertical;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-success {
  margin-top: 14px; padding: 13px 16px;
  background: rgba(45,198,83,0.1); border: 1px solid rgba(45,198,83,0.3);
  border-radius: 6px; color: #2dc653; font-size: 0.86rem;
  display: flex; align-items: center; gap: 8px;
}

/* ══ GOOGLE BEWERTUNGEN ══ */
.reviews { background: var(--dark-2); }

.reviews__google-link {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 16px 24px;
  text-decoration: none; margin-top: 20px; margin-bottom: 48px;
  transition: border-color 0.25s, background 0.25s;
}
.reviews__google-link:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }
.reviews__google-logo { height: 22px; object-fit: contain; }
.reviews__google-name { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.reviews__stars-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.reviews__stars { color: #fbbc04; font-size: 1rem; letter-spacing: 1px; }
.reviews__avg { font-size: 0.9rem; font-weight: 700; color: #fff; }
.reviews__count { font-size: 0.78rem; color: #aaa; }
.reviews__google-addr { font-size: 0.75rem; color: var(--gold); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #e8c97a);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.review-card__meta { flex: 1; }
.review-card__name { display: block; font-size: 0.88rem; font-weight: 700; color: #fff; }
.review-card__date { display: block; font-size: 0.72rem; color: #888; margin-top: 1px; }
.review-card__glogo { height: 16px; object-fit: contain; opacity: 0.7; }
.review-card__stars { color: #fbbc04; font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card__text { font-size: 0.83rem; color: #c8c8c8; line-height: 1.65; font-style: italic; }

.reviews__cta { text-align: center; }

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__google-link { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ══ FOOTER ══ */
.footer {
  background: linear-gradient(180deg, #0d0a04 0%, #080808 100%);
  border-top: 1px solid rgba(201,168,76,0.14);
}
.footer__top { padding: 56px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; }
.footer__logo { display: flex; align-items: baseline; gap: 0.08em; margin-bottom: 14px; }
.logo-velvet, .logo-a1 {
  font-family: 'Montserrat', sans-serif; font-size: 1.55rem;
  font-weight: 900; letter-spacing: -0.02em; line-height: 1;
}
.logo-velvet { color: #fff; }
.logo-a1     { color: var(--gold); }
.footer__brand p { font-size: 0.84rem; color: #c8c8c8; line-height: 1.7; margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: #bbb; transition: 0.25s;
}
.footer__social a:hover { color: var(--gold); border-color: var(--gold); }
.footer__links h4, .footer__legal-links h4, .footer__hours h4 {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer__links ul, .footer__legal-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer__links a, .footer__legal-links a { font-size: 0.83rem; color: #c8c8c8; transition: color 0.2s; }
.footer__links a:hover, .footer__legal-links a:hover { color: var(--gold); }
.footer__hours table { width: 100%; border-collapse: collapse; }
.footer__hours td { font-size: 0.8rem; color: #c8c8c8; padding: 5px 0; }
.footer__hours td:last-child { text-align: right; color: var(--light-2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 22px 0; text-align: center; }
.footer__credits { font-size: 0.76rem; color: #aaa; margin-bottom: 5px; }
.footer__credits a { color: var(--gold); }
.footer__bottom p { font-size: 0.76rem; color: #aaa; line-height: 1.6; }
.footer__bottom a { color: var(--gold); }

/* ══ SCROLL ANIMATIONS ══ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════ */

/* ── 1200px: leichtes Layout-Adjust ── */
@media (max-width: 1200px) {
  .gallery__grid { grid-auto-rows: 200px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

/* ── 1024px: Kooperation einspaltiger ── */
@media (max-width: 1024px) {
  .koop__grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── 900px: Hamburger-Menü ── */
@media (max-width: 900px) {
  :root { --header-h: 60px; }

  .hamburger { display: flex !important; }

  .nav {
    position: fixed; top: 0; right: -100%; width: min(78vw, 300px);
    height: 100vh; height: 100dvh;
    background: rgba(8,6,2,0.98);
    border-left: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    z-index: 800; transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; justify-content: center;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 26px; text-align: center; padding: 20px; }
  .nav__link { font-size: 0.9rem; letter-spacing: 0.12em; }

  .about__grid   { grid-template-columns: 1fr; gap: 36px; }
  .about__img-wrap { max-width: 480px; margin: 0 auto; width: 100%; }

  .angebot__grid { grid-template-columns: 1fr 1fr; }
  .info__grid    { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .kontakt__grid { grid-template-columns: 1fr; gap: 32px; }

  .gallery__grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 190px; }
  .gallery__item--tall { grid-row: span 1; }
}

/* ── 768px: Tablet ── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 16px; }
  .koop__features { grid-template-columns: 1fr; }
  .koop__card { padding: 24px 20px; }
  .about__features { grid-template-columns: 1fr; }
  .gallery__grid { grid-auto-rows: 170px; gap: 8px; }
  .hero__content { padding: 0 18px 60px; }
}

/* ── 640px: Mobil ── */
@media (max-width: 640px) {
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  *, *::before, *::after { box-sizing: border-box; }

  :root { --header-h: 56px; }
  .section { padding: 60px 0; }
  .container { padding: 0 14px; }

  /* Header */
  .header__logo-inline { font-size: 1.4rem; }

  /* Hero */
  .hero { min-height: 100svh; max-height: none; align-items: flex-end; }
  .hero__img { object-position: 30% center; }
  .hero__content {
    padding: 0 14px 56px;
    display: flex; flex-direction: column; align-items: flex-start;
  }
  .hero__logo-inline { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .hero__name-glow   { font-size: 0.58rem; letter-spacing: 0.28em; }
  .hero__tagline     { font-size: 0.88rem; }
  .hero__sub         { font-size: 0.78rem; }
  .hero__actions {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; width: 100%;
  }
  .hero__actions .btn--lg {
    padding: 12px 8px; font-size: 0.62rem;
    letter-spacing: 0.08em; width: 100%;
  }
  .hero__scroll { display: none; }

  /* Ticker */
  .opening-banner__track { font-size: 0.58rem; letter-spacing: 0.14em; }

  /* About */
  .about__stats-row { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .stat { padding: 12px 4px; }
  .stat__num   { font-size: 1.8rem; }
  .stat__label { font-size: 0.6rem; letter-spacing: 0.12em; word-break: break-word; white-space: normal; }

  /* Kooperation */
  .koop__grid { max-width: 100%; }
  .koop__dual-header { gap: 8px; }
  .koop__dual-site .koop__name { font-size: 0.85rem; }
  .koop__dual-site .koop__url  { font-size: 0.62rem; }
  .koop__dual-btns { gap: 7px; }
  .koop__dual-btns .btn { padding: 10px 6px; font-size: 0.6rem; letter-spacing: 0.08em; }
  .koop__benefits span { font-size: 0.68rem; }

  /* Angebot */
  .angebot__grid { grid-template-columns: 1fr; gap: 12px; }

  /* Galerie */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px; gap: 6px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  /* Info */
  .info__grid { max-width: 100%; }
  .info__list li { font-size: 0.8rem; flex-wrap: wrap; gap: 4px; }

  /* Kontakt */
  .kontakt__channel { padding: 14px 16px; gap: 12px; }
  .kontakt__ch-value { font-size: 0.82rem; word-break: break-all; }
  .kontakt__form { padding: 22px 16px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__top  { padding: 40px 0 24px; }

  /* Sections */
  .section-title { font-size: clamp(1.7rem, 7.5vw, 2.6rem) !important; }
  .section-header { margin-bottom: 36px; }

  /* Age-Gate */
  .age-gate__box { padding: 36px 18px; width: 96%; }
  .age-gate__headline { font-size: 1.7rem; }

  /* Cookie */
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* ── 400px: Sehr kleine Geräte ── */
@media (max-width: 400px) {
  .hero__logo-inline { font-size: clamp(2.4rem, 14vw, 3.5rem); }
  .hero__actions .btn--lg { font-size: 0.56rem; padding: 11px 6px; }
  .gallery__grid { grid-auto-rows: 110px; }
  .age-gate__buttons .btn { font-size: 0.68rem; padding: 13px 20px; }
}

/* ── Landscape Mobile ── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: 100vw; height: auto; }
  .hero__content { padding: 80px 18px 40px; }
  .age-gate__box { padding: 28px 20px; }
  .age-gate__headline { font-size: 1.5rem; }
}
