/* ==========================================================================
   Mosaik Festsaal — Premium Event Location CSS
   Elegant, warm, hochwertig
   ========================================================================== */

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13,11,9,0.97);
  border-top: 1px solid rgba(201,169,110,0.25);
  padding: 1.2rem 0;
  backdrop-filter: blur(12px);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.cookie-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { margin-left: 0; width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

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

:root {
  --gold:       #c9a96e;
  --gold-light: #e8c98a;
  --gold-dark:  #9a7040;
  --cream:      #f5f0e8;
  --dark:       #0d0b09;
  --dark2:      #161310;
  --dark3:      #1f1b16;
  --dark4:      #2a241d;
  --text:       #d4cfc8;
  --text-muted: #8a8078;
  --white:      #ffffff;
  --font:       'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Inter', sans-serif;
  --radius:     4px;
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { color: var(--text); line-height: 1.8; }

a { text-decoration: none; color: inherit; transition: color 0.3s; }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION ── */
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto;
}

.gold-divider.left { margin-left: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,169,110,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: rgba(10,8,6,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid transparent;
  height: 38px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.topbar.scrolled {
  background: var(--dark2);
  border-bottom-color: rgba(201,169,110,0.18);
}
.topbar.hidden {
  transform: translateY(-100%);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.topbar-item {
  font-size: 0.73rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.topbar-item i { color: var(--gold); font-size: 0.65rem; }
.topbar-divider { padding-left: 1.2rem; border-left: 1px solid rgba(255,255,255,0.07); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar-link {
  font-size: 0.73rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--gold); }
.topbar-link i { font-size: 0.65rem; }
.topbar-link-wa:hover { color: #25d366; }
.topbar-link-wa:hover i { color: #25d366; }
.topbar-cta {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.topbar-cta:hover { opacity: 0.85; }
@media (max-width: 860px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .topbar-link-wa span { display: none; }
}
@media (max-width: 480px) {
  .topbar-cta { display: none; }
}

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.72) 0%, rgba(10,8,6,0) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, top 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  top: 0;
  background: rgba(10,8,6,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  font-family: var(--font);
  font-size: 1.55rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.nav-logo span { color: var(--gold); }

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links li a:hover,
.nav-links li a.nav-active {
  color: var(--cream);
}
.nav-links li a:hover::after,
.nav-links li a.nav-active::after {
  transform: scaleX(1);
}
.nav-link-gold {
  color: var(--gold) !important;
}
.nav-link-gold::after {
  background: var(--gold);
}
.nav-link-gold i { font-size: 0.7rem; margin-right: 0.3rem; }

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-phone:hover { color: var(--cream); }
.nav-phone i { color: var(--gold); font-size: 0.72rem; }
.nav-phone span { display: inline; }
.nav-btn {
  padding: 0.55rem 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  background: var(--dark2);
  border-left: 1px solid rgba(201,169,110,0.15);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22,0.61,0.36,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.8rem;
  overflow-y: auto;
}
.nav-drawer-logo {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.nav-drawer-logo span { color: var(--gold); }

.nav-drawer-links {
  list-style: none;
  flex: 1;
}
.nav-drawer-links li a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer-links li a i {
  width: 18px;
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-drawer-links li a:hover {
  color: var(--cream);
  padding-left: 6px;
}
.nav-drawer-links li a:hover i { opacity: 1; }
.nav-drawer-gold { color: var(--gold) !important; }
.nav-drawer-gold i { opacity: 1 !important; }

.nav-drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.12);
  margin-top: 1.5rem;
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: all; }

/* Responsive */
@media (max-width: 1050px) {
  .nav-phone { display: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 1.3rem; }
}

/* ============================================================
   HERO
============================================================ */
/* ========== HERO — ZOOM-IN / SUCK-YOU-IN ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

/* Der .container im Hero muss die volle Höhe einnehmen und flex sein */
.hero > .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Content nach unten */
}

/* Vollbild-Video */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  will-change: transform, filter;
}

/* Overlay: Vignette von den Rändern + Boden-Gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Linke Seite abdunkeln wo der Text steht */
    linear-gradient(105deg,
      rgba(13,11,9,0.80) 0%,
      rgba(13,11,9,0.45) 40%,
      transparent        70%
    ),
    /* Starker Gradient unten — Text gut lesbar */
    linear-gradient(180deg,
      rgba(13,11,9,0.30)  0%,
      transparent         35%,
      rgba(13,11,9,0.55)  65%,
      rgba(13,11,9,0.88)  85%,
      rgba(13,11,9,0.97)  100%
    );
  pointer-events: none;
}

/* Hero-Content — durch flex-end des Containers nach unten gedrückt */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  will-change: opacity, transform;
  padding-bottom: 4rem;
}

/* ── HERO TEXT SLIDES ── */
.hero-slide {
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
}
.hero-slide:first-child {
  position: relative;
}

/* Sound-Button */
#video-sound-btn {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 10;
  background: rgba(13,11,9,0.55);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.9);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  font-size: 0.9rem;
}
#video-sound-btn:hover {
  background: rgba(201,169,110,0.18);
  border-color: rgba(201,169,110,0.8);
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  #hero-video { object-position: 60% center; }
  #video-sound-btn { bottom: 5.5rem; right: 1rem; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  margin-top: 2rem; /* Atemraum nach oben zur Navbar */
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.9),
    0 4px 30px rgba(0,0,0,0.8),
    0 0 60px rgba(0,0,0,0.6);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

/* Goldene Trennlinie nach dem Titel */
.hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(212,207,200,0.92);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

/* Hero Badges */
.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-badge i { color: var(--gold); font-size: 0.7rem; }

/* ============================================================
   INTRO / STATS
============================================================ */
/* ============================================================
   ÜBER UNS — EDITORIAL
============================================================ */
.ueber-section {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

/* Parallax-Hintergrund */
.ueber-bg {
  position: absolute;
  inset: -80px 0;
  background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1600&q=60') center/cover no-repeat;
  opacity: 0.04;
  will-change: transform;
}
.ueber-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,169,110,0.04) 0%, transparent 70%);
}

.ueber-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* ── LINKE SEITE ── */
.ueber-left { max-width: 520px; }

.ueber-quote-wrap {
  position: relative;
  margin: 2rem 0 2.5rem;
}

.ueber-quote-mark {
  font-family: var(--font);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 0; left: -1rem;
  pointer-events: none;
  user-select: none;
}

.ueber-quote-text {
  font-family: var(--font);
  font-size: 2rem;
  line-height: 1.35;
  color: var(--cream);
  padding-left: 0.5rem;
  position: relative;
}
.ueber-quote-text em {
  color: var(--gold);
  font-style: italic;
}

.ueber-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.ueber-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ueber-signature-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.ueber-signature span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── RECHTE SEITE: Foto-Collage ── */
.ueber-right { position: relative; }

.ueber-collage {
  position: relative;
  height: 480px;
  margin-bottom: 2rem;
}

.ueber-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
}
.ueber-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.ueber-photo:hover img { transform: scale(1.06); }

/* Großes Hauptbild — links */
.ueber-photo-1 {
  left: 0; top: 0;
  width: 62%; height: 75%;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
/* Kleines Bild — rechts oben */
.ueber-photo-2 {
  right: 0; top: 8%;
  width: 36%; height: 42%;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
/* Kleines Bild — rechts unten / überlappt */
.ueber-photo-3 {
  right: 4%; bottom: 0;
  width: 42%; height: 38%;
  z-index: 4;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Gold-Deko-Rahmen im Hintergrund */
.ueber-frame-deco {
  position: absolute;
  right: -12px; bottom: 30px;
  width: 55%; height: 60%;
  border: 1px solid rgba(201,169,110,0.2);
  z-index: 1;
  pointer-events: none;
}
.ueber-frame-deco::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,169,110,0.08);
}

/* ── STATS ── */
.ueber-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.ueber-stat {
  flex: 1;
  text-align: center;
  padding: 1.4rem 1rem;
}
.ueber-stat-num {
  font-family: var(--font);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ueber-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.ueber-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,169,110,0.15);
  flex-shrink: 0;
}

@media(max-width: 960px) {
  .ueber-container { grid-template-columns: 1fr; gap: 3rem; }
  .ueber-left { max-width: 100%; }
  .ueber-quote-text { font-size: 1.6rem; }
  .ueber-collage { height: 360px; }
}
@media(max-width: 600px) {
  .ueber-collage { height: 280px; }
  .ueber-stat-num { font-size: 1.6rem; }
  .ueber-stats { flex-wrap: wrap; }
  .ueber-stat { flex: 1 1 40%; }
  .ueber-stat-divider { display: none; }
}

/* ============================================================
   ANLÄSSE / EVENTS
============================================================ */
.events-section {
  background: var(--dark);
  padding-bottom: 80px;
}

/* ── ANLASS SHOWCASE ── */
.anlass-showcase {
  display: flex;
  height: 520px;
  margin-top: 4rem;
  overflow: hidden;
}

.anlass-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

/* Beim Hover: dieses Item breiter, alle anderen enger */
.anlass-showcase:hover .anlass-item {
  flex: 0.4;
}
.anlass-showcase:hover .anlass-item:hover {
  flex: 3;
}

.anlass-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.anlass-item:hover .anlass-img {
  transform: scale(1.08);
}

.anlass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.92) 0%,
    rgba(10,8,6,0.45) 50%,
    rgba(10,8,6,0.15) 100%
  );
  transition: background 0.5s ease;
}
.anlass-item:hover .anlass-overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.95) 0%,
    rgba(10,8,6,0.5) 45%,
    rgba(10,8,6,0.1) 100%
  );
}

.anlass-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem;
  z-index: 2;
}

.anlass-num {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s;
}
.anlass-item:hover .anlass-num { opacity: 1; }

.anlass-body h3 {
  font-family: var(--font);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 0.4s ease, margin-bottom 0.4s ease;
}
.anlass-item:hover .anlass-body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  white-space: normal;
}

.anlass-body p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.anlass-item:hover .anlass-body p {
  max-height: 120px;
  opacity: 1;
}

.anlass-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, color 0.25s;
  text-decoration: none;
}
.anlass-link i { font-size: 0.7rem; transition: transform 0.25s; }
.anlass-link:hover { color: var(--cream); }
.anlass-link:hover i { transform: translateX(4px); }
.anlass-item:hover .anlass-link {
  opacity: 1;
  transform: translateY(0);
}

/* Goldene vertikale Trennlinie zwischen Items */
.anlass-item + .anlass-item::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%;
  left: 0;
  width: 1px;
  background: rgba(201,169,110,0.15);
  transition: opacity 0.3s;
}

@media(max-width: 960px) {
  .anlass-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
    height: auto;
    display: grid;
  }
  .anlass-showcase:hover .anlass-item { flex: unset; }
  .anlass-showcase:hover .anlass-item:hover { flex: unset; }
  .anlass-body h3 { font-size: 1.4rem !important; white-space: normal !important; margin-bottom: 0.6rem !important; }
  .anlass-body p { max-height: 120px !important; opacity: 1 !important; }
  .anlass-link { opacity: 1 !important; transform: translateY(0) !important; }
  .anlass-item + .anlass-item::after { display: none; }
}

@media(max-width: 600px) {
  .anlass-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 260px);
  }
}

/* ============================================================
   LEISTUNGEN
============================================================ */
/* ============================================================
   LEISTUNGEN — FEATURE ROWS
============================================================ */
.leistungen-section {
  background: var(--dark2);
  padding: 120px 0 0;
  overflow: hidden;
}

/* Header */
.leist-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.leist-header h2 { margin: 0.5rem 0 0; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.leist-header-sub {
  max-width: 360px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex-shrink: 0;
}

/* Feature Rows */
.leist-features { margin-top: 0; }

.leist-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid rgba(201,169,110,0.07);
}
.leist-feat-reverse { direction: rtl; }
.leist-feat-reverse > * { direction: ltr; }

/* Bild-Seite */
.leist-feat-img {
  position: relative;
  overflow: hidden;
}
.leist-feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.4,0,0.2,1);
}
.leist-feat:hover .leist-feat-img img { transform: scale(1.05); }

.leist-feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,6,0.3) 0%,
    rgba(10,8,6,0.05) 100%
  );
  transition: background 0.5s ease;
}
.leist-feat:hover .leist-feat-img-overlay {
  background: linear-gradient(135deg, rgba(10,8,6,0.15) 0%, rgba(10,8,6,0) 100%);
}

/* Große Hintergrund-Nummer */
.leist-feat-num {
  position: absolute;
  bottom: 1.5rem; right: 1.8rem;
  font-family: var(--font);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,169,110,0.15);
  font-weight: 700;
  letter-spacing: -0.02em;
  user-select: none;
  transition: color 0.4s ease;
}
.leist-feat:hover .leist-feat-num { color: rgba(201,169,110,0.28); }

/* Text-Seite */
.leist-feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem;
  background: var(--dark2);
  position: relative;
}
.leist-feat-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.6s ease;
}
.leist-feat:hover .leist-feat-body::before { height: 100%; }

.leist-feat-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.8;
}

.leist-feat-body h3 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.leist-feat-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Tags (Küchen) */
.leist-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.leist-feat-tags span {
  padding: 0.35rem 0.9rem;
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all 0.25s;
}
.leist-feat-tags span:hover { background: rgba(201,169,110,0.12); color: var(--cream); }

/* Pills (Checkmarks) */
.leist-feat-pills {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.leist-feat-pills span {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.leist-feat-pills span i {
  color: var(--gold);
  font-size: 0.7rem;
  width: 14px;
}

/* CTA Link */
.leist-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 0.25rem;
  transition: gap 0.25s, color 0.25s;
  width: fit-content;
}
.leist-feat-cta:hover { gap: 1rem; color: var(--cream); }
.leist-feat-cta i { font-size: 0.75rem; }

/* Responsive */
@media(max-width: 900px) {
  .leist-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .leist-header-sub { max-width: 100%; }
  .leist-feat,
  .leist-feat-reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .leist-feat-img { height: 280px; }
  .leist-feat-body { padding: 3rem 2rem; }
  .leist-feat-body::before { display: none; }
}

/* ============================================================
   CATERING / KÜCHEN
============================================================ */
.catering-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.catering-section::before {
  content: 'CATERING';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-size: 18vw;
  color: rgba(201,169,110,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.catering-text h2 { margin-bottom: 1rem; }
.catering-text p { color: var(--text-muted); margin-bottom: 1.5rem; }

.kitchen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.kitchen-tag {
  padding: 6px 16px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.kitchen-tag:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
}

.catering-image {
  position: relative;
}

.catering-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.15);
}

.catering-image-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 180px;
  height: 180px;
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.catering-image-accent .num {
  font-family: var(--font);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.catering-image-accent .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   GALERIE
============================================================ */
.galerie-section {
  background: var(--dark2);
  padding: 80px 0;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: 3rem;
}

.galerie-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.galerie-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
  min-height: 200px;
}

.galerie-item:first-child img { min-height: 420px; }

.galerie-item:hover img { transform: scale(1.06); }

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie-overlay i { color: var(--gold); font-size: 1.5rem; }
.galerie-item:hover .galerie-overlay { opacity: 1; }

/* ============================================================
   ABLAUF / TIMELINE
============================================================ */
/* ============================================================
   ABLAUF — Premium horizontal steps
============================================================ */
.ablauf-section {
  position: relative;
  background: var(--dark);
  padding: 120px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

/* Hintergrundbild */
.ablauf-bg {
  position: absolute;
  inset: 0;
  background: url('../img/1000140373.jpg') center/cover no-repeat;
  transform: scale(1.05);
  filter: blur(2px);
  z-index: 0;
}

.ablauf-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,11,9,0.97) 0%,
    rgba(13,11,9,0.90) 50%,
    rgba(13,11,9,0.97) 100%
  );
  z-index: 1;
}

.ablauf-container {
  position: relative;
  z-index: 2;
}

/* Header */
.ablauf-header {
  text-align: center;
  margin-bottom: 80px;
}

.ablauf-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}

.ablauf-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.ablauf-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Steps grid */
.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 70px;
}

/* Single step */
.ablauf-step {
  padding: 0 2.5rem 0 0;
  position: relative;
  cursor: default;
}

.ablauf-step:last-child {
  padding-right: 0;
}

/* Top row: number + connecting line */
.ablauf-step-top {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.ablauf-step-num {
  font-family: var(--font);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.35);
  transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
  flex-shrink: 0;
  display: block;
  width: 90px;
}

/* Connecting horizontal line after number */
.ablauf-step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,0.5), rgba(201,169,110,0.1));
  margin-left: 1rem;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

/* Icon */
.ablauf-step-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(201,169,110,0.05);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.ablauf-step h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.ablauf-step p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Hover state */
.ablauf-step:hover .ablauf-step-num {
  color: rgba(201,169,110,0.15);
  -webkit-text-stroke: 1px var(--gold);
}

.ablauf-step:hover .ablauf-step-icon {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.6);
  transform: translateY(-4px);
}

/* Lines draw when section is in view */
.ablauf-section.lines-visible .ablauf-step-line {
  transform: scaleX(1);
}

.ablauf-section.lines-visible .ablauf-step:nth-child(2) .ablauf-step-line { transition-delay: 0.2s; }
.ablauf-section.lines-visible .ablauf-step:nth-child(3) .ablauf-step-line { transition-delay: 0.4s; }
.ablauf-section.lines-visible .ablauf-step:nth-child(4) .ablauf-step-line { transition-delay: 0.6s; }

/* CTA */
.ablauf-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .ablauf-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .ablauf-step {
    padding-right: 0;
  }
  .ablauf-step-line {
    display: none !important;
  }
}

@media (max-width: 580px) {
  .ablauf-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   PARTNER
============================================================ */
.partner-section {
  background: var(--dark2);
  padding: 60px 0;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.partner-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2.5rem;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.partner-item:hover { opacity: 1; }
.partner-item i { color: var(--gold); }

/* ============================================================
   KONTAKT / CTA
============================================================ */
.kontakt-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.kontakt-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-info h2 { margin-bottom: 1rem; }
.kontakt-info p { color: var(--text-muted); margin-bottom: 2rem; }

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kontakt-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.kontakt-item-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 500;
}

.kontakt-item-text a,
.kontakt-item-text span {
  font-size: 0.95rem;
  color: var(--cream);
}

.kontakt-item-text a:hover { color: var(--gold); }

/* FORM */
.kontakt-form {
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--cream);
  font-family: var(--font-sans);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  justify-content: center;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo-text {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo-text span { color: var(--gold); }

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--cream); }

/* ============================================================
   BERATER WIDGET (IONOS-Stil)
============================================================ */
.berater-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
}

/* Trigger Button */
.berater-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.berater-trigger:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,169,110,0.15);
}

.berater-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.berater-trigger-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.berater-trigger-text strong {
  font-size: 0.82rem;
  color: var(--cream);
  font-weight: 600;
}

.berater-trigger-text span {
  font-size: 0.72rem;
  color: var(--gold);
}

.berater-chevron {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.3s;
}

.berater-widget.open .berater-chevron {
  transform: rotate(180deg);
}

/* Popup Panel */
.berater-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: var(--dark2);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;

  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.berater-widget.open .berater-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.berater-panel-header {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.berater-panel-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid rgba(201,169,110,0.3);
}

.berater-panel-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.berater-panel-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.berater-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #4ade80;
  margin-top: 4px;
}

.berater-online-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.berater-panel-body {
  padding: 1.5rem;
}

.berater-panel-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.berater-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.berater-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.2);
  background: var(--dark3);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: var(--font-sans);
}

.berater-action-btn:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
  transform: translateX(4px);
}

.berater-action-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.berater-action-btn.primary:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.berater-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.berater-action-btn.primary .berater-action-icon {
  background: rgba(13,11,9,0.2);
}

.berater-action-text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 1px;
}

.berater-action-text span {
  font-size: 0.73rem;
  opacity: 0.7;
}

.berater-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.2s;
  background: none;
  border: none;
}

.berater-close:hover { color: var(--cream); }

/* ============================================================
   REVEAL ANIMATIONEN — Verschiedene Richtungen
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.8s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Von links */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.85s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.85s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Von rechts */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.85s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.85s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Zoom-in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.75s ease,
              transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── GALERIE — Parallax-Stagger ── */
.galerie-item {
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,0.61,0.36,1) !important;
  opacity: 0;
  transform: translateY(50px) scale(0.96);
}
.galerie-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.galerie-item:nth-child(1) { transition-delay: 0s; }
.galerie-item:nth-child(2) { transition-delay: 0.12s; }
.galerie-item:nth-child(3) { transition-delay: 0.24s; }
.galerie-item:nth-child(4) { transition-delay: 0.36s; }
.galerie-item:nth-child(5) { transition-delay: 0.48s; }
.galerie-item:nth-child(6) { transition-delay: 0.60s; }
.galerie-item:nth-child(7) { transition-delay: 0.72s; }
.galerie-item:nth-child(8) { transition-delay: 0.84s; }
.galerie-item:nth-child(9) { transition-delay: 0.96s; }
.galerie-item:nth-child(10){ transition-delay: 1.08s; }

/* ── DYNAMISCHES LICHT ── */
/* Licht-Orbs die im Hintergrund schweben */
#light-orb-1, #light-orb-2, #light-orb-3 {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 1.5s ease, background 2s ease, transform 4s ease;
  will-change: transform, opacity;
}
#light-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
}
#light-orb-2 {
  width: 500px; height: 500px;
  top: 30%; right: -150px;
  background: radial-gradient(circle, rgba(180,120,80,0.15) 0%, transparent 70%);
}
#light-orb-3 {
  width: 400px; height: 400px;
  bottom: 10%; left: 20%;
  background: radial-gradient(circle, rgba(220,190,130,0.12) 0%, transparent 70%);
}

/* Licht-Farb-Phasen */
.light-phase-warm #light-orb-1 { background: radial-gradient(circle, rgba(255,180,60,0.2) 0%, transparent 70%); }
.light-phase-warm #light-orb-2 { background: radial-gradient(circle, rgba(220,100,50,0.15) 0%, transparent 70%); }
.light-phase-cool #light-orb-1 { background: radial-gradient(circle, rgba(100,160,255,0.12) 0%, transparent 70%); }
.light-phase-cool #light-orb-2 { background: radial-gradient(circle, rgba(150,100,255,0.10) 0%, transparent 70%); }
.light-phase-gold #light-orb-1 { background: radial-gradient(circle, rgba(201,169,110,0.22) 0%, transparent 70%); }
.light-phase-gold #light-orb-2 { background: radial-gradient(circle, rgba(255,210,80,0.15) 0%, transparent 70%); }

/* Stat-Karten Counter-Animation */
.stat-number {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.stat-card.visible .stat-number { transform: scale(1); }

/* Event-Karten staggered */
.event-card {
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,0.61,0.36,1) !important;
}
.event-card:nth-child(1) { transition-delay: 0.00s !important; }
.event-card:nth-child(2) { transition-delay: 0.08s !important; }
.event-card:nth-child(3) { transition-delay: 0.16s !important; }
.event-card:nth-child(4) { transition-delay: 0.24s !important; }
.event-card:nth-child(5) { transition-delay: 0.32s !important; }
.event-card:nth-child(6) { transition-delay: 0.40s !important; }
.event-card:nth-child(7) { transition-delay: 0.48s !important; }
.event-card:nth-child(8) { transition-delay: 0.56s !important; }
.event-card:nth-child(9) { transition-delay: 0.64s !important; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .intro-grid,
  .catering-inner,
  .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }

  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .leistungen-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }

  .events-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-item:first-child { grid-column: span 2; }

  .berater-panel { width: 290px; right: 0; }
  .berater-trigger-text { display: none; }
  .berater-trigger { padding: 10px; }
}

/* Scroll Progress */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── PAGE HERO (Unterseiten) ── */
.page-hero {
  padding: 160px 0 80px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { max-width: 720px; }
.page-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0;
}

/* ── BTN SIZES ── */
.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
}

/* ── ANLASS ROW hover fix ── */
.anlass-row img:hover { transform: scale(1.03); }

/* ============================================================
   SCROLL-TO-TOP BUTTON
============================================================ */
#scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.45);
  background: rgba(13,11,9,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease,
              background 0.25s ease, border-color 0.25s ease;
}

#scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top-btn:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
}

@media (max-width: 600px) {
  #scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}
