/* ═══════════════════════════════════════════════════════
   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);
}
/* House of Friends – längerer Name braucht Skalierung */
.layla2-logo__name.hof {
  font-family: 'Great Vibes', cursive;
  font-size: 0.72em;
  letter-spacing: 0px;
}
.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: 30px; }
.layla2-logo--header .layla2-logo__num  { font-size: 18px; margin-bottom: 4px; }
.layla2-logo--header .layla2-logo__sub  { font-size: 6px; letter-spacing: 0.38em; margin-top: 10px; }

/* ── 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:        #CC1F1F;
  --gold-light:  #E84040;
  --gold-dark:   #991515;
  --black:       #0a0a0a;
  --dark:        #221018;
  --dark-2:      #2a1420;
  --card-bg:     rgba(38,16,24,0.92);
  --card-border: rgba(204,31,31,0.2);
  --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; }

/* ══ SECTION PATTERN – Herz-Ornament (Erotikbranche) ══ */
.section {
  position: relative;
  overflow: hidden;
}
/* Herz-Muster Ebene */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Stilisiertes Herz als SVG-Pattern: dezent, elegant, dunkelrot */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='rgba(200%2C30%2C50%2C0.28)' stroke-width='1.2'%3E%3Cpath d='M40 57 C40 57 19 41 19 27 C19 19 27 14 34 17 C37 18 39 22 40 25 C41 22 43 18 46 17 C53 14 61 19 61 27 C61 41 40 57 40 57Z'/%3E%3Cpath d='M4 4 L16 4 L4 16Z' stroke-width='0.7' opacity='0.7'/%3E%3Cpath d='M76 4 L64 4 L76 16Z' stroke-width='0.7' opacity='0.7'/%3E%3Cpath d='M4 76 L16 76 L4 64Z' stroke-width='0.7' opacity='0.7'/%3E%3Cpath d='M76 76 L64 76 L76 64Z' stroke-width='0.7' opacity='0.7'/%3E%3Ccircle cx='40' cy='1' r='1.5' fill='rgba(200%2C30%2C50%2C0.3)'/%3E%3Ccircle cx='40' cy='79' r='1.5' fill='rgba(200%2C30%2C50%2C0.3)'/%3E%3Ccircle cx='1' cy='40' r='1.5' fill='rgba(200%2C30%2C50%2C0.3)'/%3E%3Ccircle cx='79' cy='40' r='1.5' fill='rgba(200%2C30%2C50%2C0.3)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
/* Roter Schimmer-Gradient */
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(180,20,40,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(140,10,30,0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }

/* Dark-Sections: Diamant-Muster */
.dark-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cg fill='none' stroke='rgba(200%2C30%2C50%2C0.25)' stroke-width='1'%3E%3Cpath d='M28 6 L50 28 L28 50 L6 28 Z'/%3E%3Cpath d='M28 15 L41 28 L28 41 L15 28 Z'/%3E%3Ccircle cx='28' cy='28' r='3'/%3E%3Ccircle cx='28' cy='28' r='1' fill='rgba(200%2C30%2C50%2C0.45)'/%3E%3Cline x1='28' y1='0' x2='28' y2='6' stroke-width='0.6' stroke-dasharray='2 1'/%3E%3Cline x1='28' y1='50' x2='28' y2='56' stroke-width='0.6' stroke-dasharray='2 1'/%3E%3Cline x1='0' y1='28' x2='6' y2='28' stroke-width='0.6' stroke-dasharray='2 1'/%3E%3Cline x1='50' y1='28' x2='56' y2='28' stroke-width='0.6' stroke-dasharray='2 1'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='rgba(200%2C30%2C50%2C0.28)'/%3E%3Ccircle cx='56' cy='0' r='1.5' fill='rgba(200%2C30%2C50%2C0.28)'/%3E%3Ccircle cx='0' cy='56' r='1.5' fill='rgba(200%2C30%2C50%2C0.28)'/%3E%3Ccircle cx='56' cy='56' r='1.5' fill='rgba(200%2C30%2C50%2C0.28)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 56px;
}
.dark-section::after {
  background:
    radial-gradient(ellipse at 75% 45%, rgba(180,20,40,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 70%, rgba(140,10,30,0.08) 0%, transparent 50%);
}

.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, #CC1F1F 0%, #E84040 50%, #CC1F1F 100%);
  color: #ffffff;
}
.btn--gold:hover  { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(204,31,31,0.45); }
.btn--outline     { background: transparent; border: 1px solid #CC1F1F; color: #CC1F1F; }
.btn--outline:hover { background: rgba(204,31,31,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; }
.hero__actions .btn { border-radius: 50px; }
.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(25,8,8,0.92), rgba(10,10,10,0.97));
  border: 1px solid rgba(204,31,31,0.35);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(204,31,31,0.15), 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; }
.agegate-logo__name {
  font-family: 'Great Vibes', cursive;
  font-size: 62px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(255,255,255,0.08);
  letter-spacing: 0px;
}
.agegate-logo__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.85;
  margin-top: 10px;
}
.age-gate__divider { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, #CC1F1F, 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,4,4,0.97), rgba(10,4,4,0.95));
  border-bottom: 1px solid rgba(204,31,31,0.20);
  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); }

/* ── DESKTOP NAV ── */
.nav { display: flex; align-items: center; }

/* Slide-in-Panel-Elemente auf Desktop ausblenden */
.nav__header { display: none; }
.nav__divider { display: none; }
.nav__actions { display: none; }
.nav__inner { display: flex; align-items: center; }

.nav__list { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
/* Icons in der Desktop-Nav ausblenden */
.nav__list .nav__link i { display: none; }
/* Login-Link auf Desktop: dezenter Gold-Stil mit Schloss-Icon sichtbar */
.nav__link--login { color: rgba(201,168,76,0.75) !important; }
.nav__link--login:hover { color: var(--gold) !important; }
.nav__link--login i { display: inline-block !important; margin-right: 5px; font-size: 0.75em; }
.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: #CC1F1F;
  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, #CC1F1F, #E84040);
  color: #ffffff !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: column;
  align-items: center;
  gap: 4px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; line-height: 1;
}
.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: -230px; }
.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(204,31,31,0.4)); }
  50%      { transform: scale(1.04); filter: drop-shadow(0 0 30px rgba(204,31,31,0.8)); }
}
.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, #CC1F1F); }
.hero__divider span:last-child  { background: linear-gradient(90deg, #CC1F1F, 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: #CC1F1F;
  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: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero__ticker { display: block; }
}

/* ══ TICKER ══ */
.opening-banner { background: #CC1F1F; 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: #ffffff; 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: #CC1F1F; 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 rgba(204,31,31,0.25);
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a0808, #0d0808);
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ══ ABOUT SLIDER ══ */
.about__slider-wrap { position: relative; }
.about__slider { position: relative; width: 100%; height: 100%; }
.about__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
}
.about__slide.active { opacity: 1; }
.about__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.about__slider-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s;
}
.about__slider-dots .dot.active { background: #C9A84C; }
.about__stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  border-top: 1px solid rgba(204,31,31,0.25); 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(204,31,31,0.15); }
.koop__card-glow {
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(204,31,31,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(204,31,31,0.15), rgba(204,31,31,0.04));
  border: 1px solid rgba(204,31,31,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(204,31,31,0.06); border: 1px solid rgba(204,31,31,0.2);
  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(204,31,31,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(204,31,31,0.05); border: 1px solid rgba(204,31,31,0.2);
  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(204,31,31,0.15); border-color: rgba(204,31,31,0.4); }
.angebot__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(204,31,31,0.14), rgba(204,31,31,0.03));
  border: 1px solid rgba(204,31,31,0.22); 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: #140808;
  border: 1px solid rgba(204,31,31,0.12);
}
.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: #CC1F1F;
}
.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(204,31,31,0.2); border: 1px solid rgba(204,31,31,0.4);
  color: #fff; 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(204,31,31,0.5); }
.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(204,31,31,0.09); border: 1px solid rgba(204,31,31,0.22);
  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(204,31,31,0.5); transform: translateX(3px); }
.kontakt__ch-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(204,31,31,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;
}

/* ══ GETRÄNKEKARTE ══ */
.getraenke { background: var(--dark); }
.getraenke__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.getraenke__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.getraenke__card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.getraenke__card--highlight {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}
.getraenke__cat {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.getraenke__cat i { font-size: 0.85rem; }
.getraenke__size {
  font-size: 0.6rem; color: #888;
  font-weight: 400; letter-spacing: 0.05em;
  text-transform: none;
}
.getraenke__card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.getraenke__card li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.83rem; color: #c8c8c8;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 7px;
}
.getraenke__card li:last-child { border-bottom: none; padding-bottom: 0; }
.getraenke__card li span:last-child { color: var(--gold); font-weight: 600; white-space: nowrap; margin-left: 8px; }

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

/* ══ 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(204,31,31,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(204,31,31,0.35); 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, #CC1F1F, #E84040);
  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, #0d0404 0%, #080808 100%);
  border-top: 1px solid rgba(204,31,31,0.2);
}
.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: #CC1F1F; border-color: #CC1F1F; }
.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; }

  /* Slide-in-Panel-Elemente wieder einblenden */
  .nav__header { display: flex !important; }
  .nav__divider { display: block !important; }
  .nav__actions { display: flex !important; }
  .nav__list .nav__link i { display: inline-block !important; }

  .nav {
    position: fixed; top: 0; right: -100%; width: min(78vw, 300px);
    height: 100vh; height: 100dvh;
    background: rgba(10,4,4,0.98);
    border-left: 1px solid rgba(204,31,31,0.25);
    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-start !important; }
  .hero__img { object-position: 30% center; }
  .hero__content {
    padding: calc(18vh + 38px) 14px 56px !important;
    display: flex; flex-direction: column; align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
  }
  .hero__sub {
    margin-top: auto !important;
    margin-bottom: 16px !important;
  }
  .hero__logo-wrap { margin-top: 0 !important; }
  .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; }
}
