
/* ============================================================================
   1. KONFIGURATION — Farben, Schriften, Layout.
   Änderungen hier wirken auf die GESAMTE Website, da jede Seite diese
   eine Datei einbindet.
   ============================================================================ */
:root{
  --ink:          #0E1117;   /* Haupt-Hintergrund: sehr dunkles Nachtblau */
  --ink-2:        #151922;   /* Zweiter Ton für abwechselnde Blöcke */
  --ink-3:        #1E2430;   /* Karten / Kacheln, etwas heller */
  --line:         #2E3648;   /* Feine Trennlinien */
  --gold:         #C9A24B;   /* Haupt-Akzentfarbe (Champagner-Gold) */
  --gold-light:   #E9CE86;   /* Helleres Gold für Hover & Glanz */
  --ivory:        #F4F0E8;   /* Haupttext auf dunklem Grund */
  --muted:        #9AA0B0;   /* Gedämpfter Text */

  --font-display: "Fraunces", serif;         /* Überschriften */
  --font-body:    "Inter", sans-serif;       /* Fließtext */
  --font-mono:    "IBM Plex Mono", monospace;/* Labels / Zahlen */

  --max-width:    1220px;
  --radius:       2px;
  --section-pad:  120px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);  /* weiches Ausrollen */
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0; background: var(--ink); color: var(--ivory);
  font-family: var(--font-body); font-size:16px; line-height:1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:500; margin:0; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible{
  outline: 2px solid var(--gold); outline-offset: 3px;
}
/* Respektiert die Systemeinstellung "Bewegung reduzieren" */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important;
     transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1 !important; transform:none !important; }
}

.wrap{ max-width: var(--max-width); margin:0 auto; padding: 0 40px; }
.eyebrow{ font-family: var(--font-mono); font-size:13px; letter-spacing:.18em;
  text-transform:uppercase; color: var(--gold); }
.section-title{ font-size: clamp(32px, 4.2vw, 50px); line-height:1.12; margin-top:14px; }
.section-lede{ color: var(--muted); font-size:18px; max-width:640px; margin-top:18px; }
.section{ padding: var(--section-pad) 0; }
.section-alt{ background: var(--ink-2); }
.center{ text-align:center; }
.center .section-lede{ margin-left:auto; margin-right:auto; }


/* ============================================================================
   2. WOW-EFFEKT: Scroll-Reveal
   Elemente mit der Klasse "reveal" starten unsichtbar und fahren sanft ein,
   sobald sie in den Bildschirm scrollen (gesteuert per JavaScript).
   Mit data-delay="1" bis "5" lässt sich eine Verzögerung staffeln.
   ============================================================================ */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible{ opacity:1; transform:none; }
[data-delay="1"]{ transition-delay:.08s; }
[data-delay="2"]{ transition-delay:.16s; }
[data-delay="3"]{ transition-delay:.24s; }
[data-delay="4"]{ transition-delay:.32s; }
[data-delay="5"]{ transition-delay:.40s; }


/* ============================================================================
   3. WOW-EFFEKT: Fortschrittsbalken oben + Cursor-Glow
   ============================================================================ */
/* Dünne Goldlinie ganz oben, die den Scroll-Fortschritt anzeigt */
.progress-bar{
  position:fixed; top:0; left:0; height:2px; width:0%; z-index:200;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .1s linear;
}
/* Sanfter Lichtschein, der dem Mauszeiger folgt (nur auf Desktop sichtbar) */
.cursor-glow{
  position:fixed; width:520px; height:520px; border-radius:50%; z-index:0;
  pointer-events:none; opacity:0; transition:opacity .4s ease;
  background: radial-gradient(circle, rgba(201,162,75,.09), transparent 62%);
  transform: translate(-50%, -50%);
}
@media (hover:hover) and (pointer:fine){ .cursor-glow{ opacity:1; } }
@media (max-width: 900px){ .cursor-glow{ display:none; } }


/* ============================================================================
   4. NAVIGATION
   HIER ÄNDERN: Menütexte stehen im HTML. Die Navigation schrumpft beim
   Scrollen leicht zusammen (Klasse "scrolled" wird per JS gesetzt).
   ============================================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(14,17,23,.72); backdrop-filter: blur(14px);
  border-bottom:1px solid transparent; transition: all .35s var(--ease);
}
.nav.scrolled{ background: rgba(14,17,23,.94); border-bottom-color: var(--line); }
.nav-inner{
  max-width: var(--max-width); margin:0 auto; padding: 22px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  transition: padding .35s var(--ease);
}
.nav.scrolled .nav-inner{ padding: 14px 40px; }

.logo{ font-family: var(--font-display); font-size:19px; letter-spacing:.06em;
  color: var(--ivory); display:flex; gap:7px; align-items:baseline; white-space:nowrap; }
.logo span{ color: var(--gold); font-style:italic; }

.nav-links{ display:flex; align-items:center; gap:4px; }
.nav-links > li > a, .nav-links > li > button{
  background:none; border:none; color: var(--muted); font-size:15px;
  padding:10px 16px; border-radius: var(--radius); transition: color .2s ease;
  display:flex; align-items:center; gap:6px; position:relative;
}
.nav-links > li > a:hover, .nav-links > li > button:hover{ color: var(--ivory); }
/* Goldener Unterstrich, der beim Hover von links einfährt */
.nav-links > li > a::after{
  content:""; position:absolute; left:16px; right:16px; bottom:4px; height:1px;
  background: var(--gold); transform: scaleX(0); transform-origin:left;
  transition: transform .35s var(--ease);
}
.nav-links > li > a:hover::after{ transform: scaleX(1); }
.nav-links > li > a.active{ color: var(--gold); }
.nav-links > li > a.active::after{ transform: scaleX(1); }

/* --- Dropdown "Anlässe" --- */
.has-dropdown{ position:relative; }
.dropdown-caret{ font-size:10px; transition: transform .25s var(--ease); }
.has-dropdown.open .dropdown-caret{ transform: rotate(180deg); }
.dropdown-menu{
  position:absolute; top:calc(100% + 10px); left:0; min-width:300px;
  background: var(--ink-3); border:1px solid var(--line); border-radius: var(--radius);
  padding:10px; box-shadow: 0 24px 60px rgba(0,0,0,.55);
  opacity:0; visibility:hidden; transform: translateY(-8px);
  transition: all .22s var(--ease);
}
.has-dropdown.open .dropdown-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-menu a{
  display:flex; flex-direction:column; gap:2px; padding:11px 14px;
  border-radius: var(--radius); color: var(--ivory); font-size:14.5px;
  border-left:2px solid transparent; transition: all .2s ease;
}
.dropdown-menu a small{ color: var(--muted); font-size:12.5px; }
.dropdown-menu a:hover{ background: var(--ink-2); border-left-color: var(--gold); padding-left:18px; }
.dropdown-menu a:hover, .dropdown-menu a:hover small{ color: var(--gold-light); }
.dropdown-menu a.active{ color: var(--gold-light); border-left-color: var(--gold); }

.nav-cta{
  font-family: var(--font-mono); font-size:13px; letter-spacing:.05em;
  padding:11px 22px; border:1px solid var(--gold); color: var(--gold);
  border-radius: var(--radius); white-space:nowrap; position:relative; overflow:hidden;
  transition: color .3s ease;
}
/* Gold füllt den Button beim Hover von unten nach oben */
.nav-cta::before{
  content:""; position:absolute; inset:0; background: var(--gold);
  transform: translateY(101%); transition: transform .35s var(--ease); z-index:-1;
}
.nav-cta:hover{ color: var(--ink); }
.nav-cta:hover::before{ transform: translateY(0); }
.nav-cta{ z-index:1; }

.nav-toggle{ display:none; background:none; border:none; color: var(--ivory); font-size:24px; }

@media (max-width: 1000px){
  /* WICHTIG: backdrop-filter auf .nav macht sie zum "containing block" für
     alle position:fixed Kinder. Das würde .nav-links auf die 65px hohe
     Kopfzeile einsperren — die Menüpunkte lägen außerhalb und wären unsichtbar.
     Deshalb auf Handy KEIN Blur, sondern eine solide Fläche. */
  .nav{ backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
        background: rgba(14,17,23,.94); }
  .nav.scrolled{ background: var(--ink); }
  /* z-index über allen Sektionen (die haben z-index:2), sonst wäre
     das ausgeklappte Menü hinter dem Hero-Inhalt. */
  .nav-links{
    position:fixed; top:64px; left:0; right:0; bottom:0; background: var(--ink);
    z-index:99;
    flex-direction:column; align-items:stretch; padding:20px 20px 60px; gap:4px;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y:auto; -webkit-overflow-scrolling: touch;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links > li{ width:100%; }
  .nav-links > li > a, .nav-links > li > button{
    width:100%; justify-content:space-between; font-size:17px; padding:16px;
    color: var(--ivory);
  }
  .nav-links > li > a::after{ display:none; }
  /* Untermenüs im mobilen Menü: als eingerückte Liste, nicht als Popup */
  .dropdown-menu{ position:static; opacity:1; visibility:visible; transform:none;
    display:none; box-shadow:none; margin:0 0 6px; padding:4px 0 10px;
    border:none; background:transparent; min-width:0; }
  .has-dropdown.open .dropdown-menu{ display:block; }
  .dropdown-menu a{ padding:12px 20px 12px 34px; font-size:15px; }
  .dropdown-menu a small{ font-size:12px; }
  .nav-toggle{ display:block; position:relative; z-index:101; }
  .nav-cta{ display:none; }
}


/* ============================================================================
   5. HERO (Startseite) — mit Parallax-Skyline und schimmernder Überschrift
   ============================================================================ */
.hero{
  position:relative; padding:210px 0 130px; overflow:hidden; min-height:92vh;
  display:flex; align-items:center;
  background: radial-gradient(ellipse at 72% -10%, rgba(201,162,75,.13), transparent 58%), var(--ink);
}
.hero-inner{ max-width: var(--max-width); margin:0 auto; padding:0 40px; position:relative; z-index:3; width:100%; }
.hero h1{ font-size: clamp(42px, 7vw, 92px); line-height:1.02; max-width:960px; margin-top:24px; }
/* Der goldene Teil der Headline bekommt einen langsam wandernden Glanz */
.hero h1 em{
  font-style:italic;
  background: linear-gradient(100deg, var(--gold) 20%, var(--gold-light) 45%, var(--gold) 70%);
  background-size: 220% auto;
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer{ to{ background-position: 220% center; } }
.hero p.section-lede{ font-size:19px; max-width:580px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:46px; }

/* Buttons */
.btn{
  font-family: var(--font-mono); font-size:13.5px; letter-spacing:.05em;
  padding:17px 32px; border-radius: var(--radius); display:inline-block;
  position:relative; overflow:hidden; z-index:1; transition: color .3s ease, border-color .3s ease;
}
.btn-primary{ background: var(--gold); color: var(--ink); }
.btn-primary::before{ content:""; position:absolute; inset:0; background: var(--gold-light);
  transform: translateY(101%); transition: transform .35s var(--ease); z-index:-1; }
.btn-primary:hover::before{ transform: translateY(0); }
.btn-secondary{ border:1px solid var(--line); color: var(--ivory);
  background: rgba(14,17,23,.55); backdrop-filter: blur(3px); }
.btn-secondary::before{ content:""; position:absolute; inset:0; background: var(--ink-3);
  transform: translateY(101%); transition: transform .35s var(--ease); z-index:-1; }
.btn-secondary:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-secondary:hover::before{ transform: translateY(0); }

/* Skyline-Illustration: unser Signatur-Element, bewegt sich beim Scrollen leicht mit.
   Die Oberkante wird weich ausgeblendet, damit die Häuser nicht durch die
   Überschrift und die Buttons schneiden. */
.skyline-wrap{ position:absolute; bottom:0; left:0; right:0; height:42%; z-index:1;
  pointer-events:none; will-change: transform; opacity:.85;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 55%); }
.skyline-wrap svg{ width:100%; height:100%; }
/* Dunkler Verlauf zwischen Skyline und Text — hält die Schrift immer lesbar */
.hero::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:52%; z-index:2;
  pointer-events:none;
  background: linear-gradient(to top, rgba(14,17,23,.92) 12%, rgba(14,17,23,.55) 48%, transparent 100%);
}
.win{ animation: twinkle 4.5s ease-in-out infinite; }
.win:nth-child(3n){ animation-delay:.6s; }
.win:nth-child(5n){ animation-delay:1.4s; }
.win:nth-child(7n){ animation-delay:2.2s; }
@keyframes twinkle{ 0%,100%{ opacity:.22; } 50%{ opacity:.95; } }

/* Kleiner "nach unten scrollen"-Hinweis am unteren Rand des Hero */
.scroll-hint{
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%); z-index:4;
  font-family: var(--font-mono); font-size:11px; letter-spacing:.22em;
  text-transform:uppercase; color: var(--muted); display:flex;
  flex-direction:column; align-items:center; gap:10px;
}
.scroll-hint .line{ width:1px; height:44px; background: linear-gradient(var(--gold), transparent);
  animation: scrolldown 2.4s ease-in-out infinite; }
@keyframes scrolldown{ 0%,100%{ transform:scaleY(.4); transform-origin:top; opacity:.4; }
  50%{ transform:scaleY(1); transform-origin:top; opacity:1; } }
@media (max-width:900px){ .scroll-hint{ display:none; } }


/* ============================================================================
   6. SEITENKOPF für Unterseiten
   ============================================================================ */
.page-header{
  padding:180px 0 80px; border-bottom:1px solid var(--line); position:relative; overflow:hidden;
  background: radial-gradient(ellipse at 80% 0%, rgba(201,162,75,.09), transparent 60%);
}
.page-header h1{ font-size: clamp(36px, 5.4vw, 62px); margin-top:16px; max-width:820px; line-height:1.08; }
.breadcrumb{ font-family: var(--font-mono); font-size:13px; color: var(--muted); }
.breadcrumb a:hover{ color: var(--gold); }


/* ============================================================================
   7. ANLASS-KACHELN (Startseite) — mit 3D-Neigung beim Hover
   ============================================================================ */
.anlaesse-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background: var(--line); margin-top:64px; border:1px solid var(--line); }
.anlass-card{
  background: var(--ink); padding:44px 36px; min-height:250px; position:relative;
  display:flex; flex-direction:column; justify-content:space-between; gap:24px;
  transition: background .35s var(--ease), transform .35s var(--ease);
  transform-style: preserve-3d; overflow:hidden;
}
.anlass-card::before{
  content:""; position:absolute; inset:0; opacity:0; transition:opacity .4s ease;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,75,.12), transparent 65%);
}
.anlass-card:hover{ background: var(--ink-3); }
.anlass-card:hover::before{ opacity:1; }
.anlass-card .num{ font-family: var(--font-mono); font-size:13px; color: var(--gold); }
.anlass-card h3{ font-size:25px; margin-top:12px; }
.anlass-card p{ color: var(--muted); font-size:15px; margin-top:10px; }
.anlass-card .more{ font-family: var(--font-mono); font-size:13px; display:flex; gap:8px;
  align-items:center; transition: gap .3s var(--ease), color .3s ease; }
.anlass-card:hover .more{ color: var(--gold-light); gap:16px; }
@media (max-width:1000px){ .anlaesse-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:700px){ .anlaesse-grid{ grid-template-columns:1fr; } }


/* ============================================================================
   8. ABLAUF-TIMELINE — "So arbeiten wir" in vier Schritten
   ============================================================================ */
.timeline{ margin-top:70px; position:relative; }
.timeline::before{ content:""; position:absolute; left:0; right:0; top:34px; height:1px; background: var(--line); }
.timeline-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:34px; position:relative; }
.tl-step .dot{
  width:14px; height:14px; border-radius:50%; background: var(--ink);
  border:2px solid var(--gold); position:relative; z-index:2; margin-bottom:26px;
  margin-top:28px; transition: all .4s var(--ease);
}
.tl-step:hover .dot{ background: var(--gold); box-shadow:0 0 0 8px rgba(201,162,75,.14); }
.tl-step .step-num{ font-family: var(--font-mono); font-size:12px; color: var(--gold); letter-spacing:.14em; }
.tl-step h4{ font-size:21px; margin:10px 0; }
.tl-step p{ color: var(--muted); font-size:15px; }
@media (max-width:900px){
  .timeline::before{ left:6px; right:auto; top:0; bottom:0; width:1px; height:auto; }
  .timeline-grid{ grid-template-columns:1fr; gap:40px; padding-left:38px; }
  .tl-step .dot{ position:absolute; left:-38px; margin-top:6px; }
  .tl-step{ position:relative; }
}


/* ============================================================================
   9. KUNDENSTIMMEN-SLIDER
   HIER ÄNDERN: Die Zitate stehen im HTML der Startseite. Bitte durch
   ECHTE Kundenstimmen ersetzen — die aktuellen sind reine Platzhalter.
   ============================================================================ */
.testi-wrap{ margin-top:60px; position:relative; min-height:250px; }
.testi{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transform: translateY(16px); transition: all .6s var(--ease); text-align:center;
}
.testi.active{ opacity:1; visibility:visible; transform:none; position:relative; }
.testi blockquote{
  font-family: var(--font-display); font-size: clamp(22px,2.9vw,34px); line-height:1.4;
  margin:0 auto; max-width:860px; font-style:italic; color: var(--ivory);
}
.testi .quote-mark{ font-family: var(--font-display); font-size:64px; color: var(--gold); opacity:.4; line-height:1; }
.testi .author{ font-family: var(--font-mono); font-size:13px; letter-spacing:.1em;
  color: var(--gold); margin-top:30px; text-transform:uppercase; }
.testi .role{ color: var(--muted); font-size:14px; margin-top:6px; }
.testi-dots{ display:flex; gap:10px; justify-content:center; margin-top:44px; }
.testi-dots button{
  width:34px; height:3px; border:none; background: var(--line); padding:0;
  transition: background .3s ease;
}
.testi-dots button.active{ background: var(--gold); }


/* ============================================================================
   10. ZAHLEN / STATISTIKEN — zählen beim Scrollen hoch
   ============================================================================ */
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:40px; margin-top:70px;
  border-top:1px solid var(--line); padding-top:54px; }
.stat .num{ font-family: var(--font-display); font-size:clamp(38px,5vw,54px); color: var(--gold); line-height:1; }
.stat .label{ font-family: var(--font-mono); font-size:13px; color: var(--muted); margin-top:12px; }
@media (max-width:900px){ .stats-grid{ grid-template-columns:1fr 1fr; gap:34px; } }


/* ============================================================================
   11. GALERIE mit Lightbox
   HIER ÄNDERN: Echte Fotos einsetzen — siehe Kommentar in galerie.html.
   ============================================================================ */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:60px; }
.gal-item{
  position:relative; aspect-ratio:4/3; overflow:hidden; cursor:pointer;
  border:1px solid var(--line); background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  display:flex; align-items:center; justify-content:center; transition: transform .5s var(--ease);
}
.gal-item:hover{ transform: scale(1.02); border-color: var(--gold); }
.gal-item .gal-label{
  position:absolute; left:0; right:0; bottom:0; padding:18px 20px;
  background: linear-gradient(transparent, rgba(14,17,23,.92));
  font-family: var(--font-mono); font-size:12.5px; letter-spacing:.08em;
  text-transform:uppercase; color: var(--ivory);
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.gal-item:hover .gal-label{ transform: translateY(0); }
.gal-item .mono{ font-family: var(--font-display); font-style:italic; font-size:52px; color: var(--line); }
.gal-item img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:1fr 1fr; gap:10px; } }

/* Lightbox-Overlay (öffnet sich beim Klick auf ein Galeriebild) */
.lightbox{
  position:fixed; inset:0; z-index:300; background: rgba(8,10,14,.96);
  display:flex; align-items:center; justify-content:center; padding:5vw;
  opacity:0; visibility:hidden; transition: all .35s var(--ease);
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox .lb-content{ max-width:900px; width:100%; text-align:center; }
.lightbox .lb-frame{
  aspect-ratio:4/3; border:1px solid var(--line); display:flex; align-items:center;
  justify-content:center; background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
}
.lightbox .lb-frame img{ width:100%; height:100%; object-fit:contain; }
.lightbox .lb-frame .mono{ font-family: var(--font-display); font-style:italic; font-size:90px; color: var(--line); }
.lightbox .lb-caption{ font-family: var(--font-mono); font-size:13px; color: var(--muted);
  margin-top:22px; letter-spacing:.08em; }
.lb-close{ position:absolute; top:26px; right:32px; background:none; border:none;
  color: var(--ivory); font-size:32px; line-height:1; }
.lb-close:hover{ color: var(--gold); }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); background:none;
  border:1px solid var(--line); color: var(--ivory); width:48px; height:48px; font-size:20px;
  transition: all .25s ease; }
.lb-nav:hover{ border-color: var(--gold); color: var(--gold); }
.lb-prev{ left:24px; } .lb-next{ right:24px; }
@media (max-width:700px){ .lb-nav{ display:none; } }


/* ============================================================================
   12. FAQ-AKKORDEON
   ============================================================================ */
.faq{ margin-top:56px; border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left; color: var(--ivory);
  font-family: var(--font-display); font-size:19px; padding:26px 50px 26px 0;
  position:relative; transition: color .25s ease;
}
.faq-q:hover{ color: var(--gold-light); }
.faq-q::after{
  content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%);
  font-family: var(--font-body); font-size:24px; color: var(--gold);
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-q::after{ transform:translateY(-50%) rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .45s var(--ease); }
.faq-a p{ color: var(--muted); font-size:16px; padding:0 60px 28px 0; }


/* ============================================================================
   13. ANLASS-DETAILSEITE
   ============================================================================ */
.anlass-body{ padding:100px 0; }
.anlass-body .wrap{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.anlass-visual{
  aspect-ratio:4/3; border:1px solid var(--line); position:relative; overflow:hidden;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  display:flex; align-items:center; justify-content:center;
}
.anlass-visual .monogram{ font-family: var(--font-display); font-style:italic;
  font-size:96px; color: var(--line); }
.anlass-text .desc{ color: var(--muted); font-size:17px; max-width:560px; }
.meta-grid{ display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-top:40px; }
.meta-grid h4{ font-family: var(--font-mono); font-size:12.5px; letter-spacing:.1em;
  text-transform:uppercase; color: var(--gold); margin-bottom:14px; font-weight:500; }
.meta-grid ul li{ font-size:15px; padding:9px 0; border-top:1px solid var(--line);
  padding-left:20px; position:relative; }
.meta-grid ul li::before{ content:"—"; position:absolute; left:0; color: var(--gold); }
.meta-grid ul li:first-child{ border-top:none; }
@media (max-width:1000px){
  .anlass-body .wrap{ grid-template-columns:1fr; gap:40px; }
  .meta-grid{ grid-template-columns:1fr; }
}

/* Pakete / Leistungsumfang auf den Anlass-Seiten */
.pakete{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background: var(--line);
  border:1px solid var(--line); margin-top:56px; }
.paket{ background: var(--ink); padding:40px 32px; transition: background .3s ease; }
.paket:hover{ background: var(--ink-3); }
.paket .p-name{ font-family: var(--font-mono); font-size:12.5px; letter-spacing:.12em;
  text-transform:uppercase; color: var(--gold); }
.paket h4{ font-size:23px; margin:14px 0 12px; }
.paket p{ color: var(--muted); font-size:15px; }
.paket ul{ margin-top:22px; }
.paket ul li{ font-size:14.5px; padding:7px 0 7px 22px; position:relative; color: var(--ivory); }
.paket ul li::before{ content:"✓"; position:absolute; left:0; color: var(--gold); font-size:13px; }
@media (max-width:900px){ .pakete{ grid-template-columns:1fr; } }

/* Verweisleiste "Weitere Anlässe" */
.other-anlaesse{ border-top:1px solid var(--line); padding:80px 0; }
.other-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background: var(--line);
  border:1px solid var(--line); margin-top:36px; }
.other-grid a{ background: var(--ink); padding:24px 20px; font-size:14px; color: var(--muted);
  transition: all .3s ease; }
.other-grid a:hover{ background: var(--ink-3); color: var(--gold-light); padding-left:26px; }
@media (max-width:900px){ .other-grid{ grid-template-columns:1fr 1fr; } }


/* ============================================================================
   14. PARTNER — Raster + endlos laufendes Logo-Band
   ============================================================================ */
.partner-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background: var(--line);
  border:1px solid var(--line); margin-top:60px; }
.partner-logo{
  background: var(--ink); height:150px; display:flex; align-items:center; justify-content:center;
  color: var(--muted); font-family: var(--font-mono); font-size:13.5px; letter-spacing:.05em;
  text-align:center; padding:20px; transition: all .35s var(--ease);
}
.partner-logo:hover{ color: var(--gold-light); background: var(--ink-3); transform: scale(1.03); }
@media (max-width:900px){ .partner-grid{ grid-template-columns:1fr 1fr; } }

/* Laufband: die Liste wird im HTML doppelt eingefügt, damit die Schleife nahtlos wirkt */
.marquee{ overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:26px 0; background: var(--ink-2); }
.marquee-track{ display:flex; gap:60px; width:max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee span{ font-family: var(--font-mono); font-size:14px; letter-spacing:.14em;
  text-transform:uppercase; color: var(--muted); white-space:nowrap; }
.marquee span::after{ content:"·"; margin-left:60px; color: var(--gold); }
@keyframes marquee{ to{ transform: translateX(-50%); } }


/* ============================================================================
   15. KONTAKT-SEITE
   ============================================================================ */
.kontakt-grid{ display:grid; grid-template-columns:1.15fr 1fr; gap:80px; margin-top:60px; }
.field{ margin-bottom:24px; }
.field label{ display:block; font-family: var(--font-mono); font-size:12.5px; letter-spacing:.06em;
  text-transform:uppercase; color: var(--muted); margin-bottom:10px; }
.field input, .field select, .field textarea{
  width:100%; background: var(--ink-2); border:1px solid var(--line); color: var(--ivory);
  padding:15px 16px; font-family: var(--font-body); font-size:15px; border-radius: var(--radius);
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold); background: var(--ink-3); outline:none;
}
.field input.error, .field textarea.error{ border-color:#C25B5B; }
.field .err-msg{ color:#E08A8A; font-size:13px; margin-top:7px; display:none; }
.field.invalid .err-msg{ display:block; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.submit-btn{
  background: var(--gold); color: var(--ink); border:none; padding:17px 36px;
  font-family: var(--font-mono); font-size:13.5px; letter-spacing:.05em;
  border-radius: var(--radius); transition: background .3s ease;
}
.submit-btn:hover{ background: var(--gold-light); }
.form-note{ font-size:13px; color: var(--muted); margin-top:16px; }
/* Erfolgsmeldung nach dem Absenden */
.form-success{
  display:none; border:1px solid var(--gold); background: rgba(201,162,75,.08);
  padding:26px 28px; margin-top:20px;
}
.form-success.show{ display:block; animation: fadeUp .6s var(--ease); }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
.form-success h4{ font-size:20px; color: var(--gold-light); }
.form-success p{ color: var(--muted); font-size:15px; margin-top:8px; }

.kontakt-info h4{ font-family: var(--font-mono); font-size:12.5px; text-transform:uppercase;
  letter-spacing:.08em; color: var(--gold); margin-bottom:10px; }
.kontakt-info .block{ margin-bottom:36px; padding-bottom:24px; border-bottom:1px solid var(--line); }
.kontakt-info .block:last-child{ border-bottom:none; }
.kontakt-info .block p{ font-size:16px; }
.kontakt-info .block p.muted{ color: var(--muted); font-size:14.5px; margin-top:5px; }
.kontakt-info a:hover{ color: var(--gold-light); }
@media (max-width:1000px){ .kontakt-grid{ grid-template-columns:1fr; gap:56px; }
  .field-row{ grid-template-columns:1fr; } }


/* ============================================================================
   16. CTA-BANNER (Aufruf am Seitenende) + FOOTER + Zurück-nach-oben-Knopf
   ============================================================================ */
.cta-band{ padding:110px 0; text-align:center; position:relative; overflow:hidden;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,162,75,.13), transparent 62%), var(--ink-2);
  border-top:1px solid var(--line); }
.cta-band h2{ font-size: clamp(30px,4vw,46px); max-width:720px; margin:16px auto 0; line-height:1.15; }
.cta-band .hero-actions{ justify-content:center; }

footer{ border-top:1px solid var(--line); padding:70px 0 40px; }
.footer-top{ display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:50px; padding-bottom:50px;
  border-bottom:1px solid var(--line); }
.footer-top .logo{ font-size:18px; }
.footer-top p{ color: var(--muted); font-size:15px; margin-top:18px; max-width:340px; }
.footer-col h5{ font-family: var(--font-mono); font-size:12px; letter-spacing:.1em;
  text-transform:uppercase; color: var(--gold); margin:0 0 16px; font-weight:500; }
.footer-col a{ display:block; color: var(--muted); font-size:15px; padding:5px 0; transition: color .2s ease; }
.footer-col a:hover{ color: var(--ivory); }
.footer-inner{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px;
  align-items:center; padding-top:34px; }
.footer-inner p{ color: var(--muted); font-size:14px; }
.footer-links{ display:flex; gap:26px; }
.footer-links a{ color: var(--muted); font-size:14px; transition: color .2s ease; }
.footer-links a:hover{ color: var(--gold); }
@media (max-width:1000px){ .footer-top{ grid-template-columns:1fr 1fr; gap:40px; } }
@media (max-width:640px){ .footer-top{ grid-template-columns:1fr; gap:34px; } }

.to-top{
  position:fixed; right:28px; bottom:28px; z-index:90; width:46px; height:46px;
  border:1px solid var(--line); background: rgba(14,17,23,.9); color: var(--ivory);
  opacity:0; visibility:hidden; transition: all .35s var(--ease); font-size:16px;
}
.to-top.show{ opacity:1; visibility:visible; }
.to-top:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }


/* ============================================================================
   17. LEISTUNGEN — Kacheln auf der Startseite (Planung / Beratung / DJ-Booking)
   ============================================================================ */
.svc-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:64px; }
.svc-card{
  position:relative; background: var(--ink-3); border:1px solid var(--line);
  padding:40px 34px 34px; display:flex; flex-direction:column; gap:18px;
  overflow:hidden; transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
/* Feine Goldkante, die beim Hover von links einläuft */
.svc-card::before{
  content:""; position:absolute; top:0; left:0; height:2px; width:100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease);
}
.svc-card:hover{ transform: translateY(-6px); border-color: rgba(201,162,75,.45); background:#222836; }
.svc-card:hover::before{ transform: scaleX(1); }
.svc-icon{ width:44px; height:44px; color: var(--gold); }
.svc-icon svg{ width:100%; height:100%; display:block; }
.svc-card h3{ font-size:24px; }
.svc-card p{ color: var(--muted); font-size:15px; flex:1; }
.svc-card .more{ font-family: var(--font-mono); font-size:13px; color: var(--muted);
  display:flex; align-items:center; gap:8px; transition: gap .3s var(--ease), color .3s ease; }
.svc-card:hover .more{ color: var(--gold-light); gap:15px; }
@media (max-width:1100px){ .svc-grid{ grid-template-columns:1fr 1fr; gap:16px; } }
@media (max-width:640px){ .svc-grid{ grid-template-columns:1fr; } }


/* ============================================================================
   18. MUSIKRICHTUNGEN / SCHLAGWORT-LISTE (DJ-Booking)
   ============================================================================ */
.tag-list{ display:flex; flex-wrap:wrap; gap:12px; margin-top:48px; }
.tag-list span{
  font-family: var(--font-mono); font-size:13px; letter-spacing:.04em;
  padding:11px 20px; border:1px solid var(--line); color: var(--muted);
  border-radius: 999px; transition: all .3s var(--ease); cursor:default;
}
.tag-list span:hover{ border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,162,75,.07); transform: translateY(-2px); }


/* ============================================================================
   19. EQUALIZER-GRAFIK (DJ-Booking) und ICON-GRAFIK (Beratung)
   Ersetzen die Foto-Platzhalter, solange keine echten Bilder da sind.
   ============================================================================ */
.eq{ display:flex; align-items:flex-end; justify-content:center; gap:7px;
  height:52%; width:76%; }
.eq span{
  flex:1; height:100%;   /* volle Höhe, die Animation staucht sie nach unten */
  background: linear-gradient(to top, var(--gold), rgba(233,206,134,.25));
  transform-origin:bottom; animation: eqbounce 1.5s ease-in-out infinite; opacity:.85;
}
.eq span:nth-child(1){ animation-delay:-.9s }  .eq span:nth-child(2){ animation-delay:-.2s }
.eq span:nth-child(3){ animation-delay:-1.3s } .eq span:nth-child(4){ animation-delay:-.6s }
.eq span:nth-child(5){ animation-delay:-1.1s } .eq span:nth-child(6){ animation-delay:-.35s }
.eq span:nth-child(7){ animation-delay:-1.5s } .eq span:nth-child(8){ animation-delay:-.75s }
.eq span:nth-child(9){ animation-delay:-.45s } .eq span:nth-child(10){ animation-delay:-1.2s }
.eq span:nth-child(11){ animation-delay:-.15s }.eq span:nth-child(12){ animation-delay:-.95s }
.eq span:nth-child(13){ animation-delay:-1.4s }.eq span:nth-child(14){ animation-delay:-.55s }
.eq span:nth-child(15){ animation-delay:-1.05s }
@keyframes eqbounce{ 0%,100%{ transform:scaleY(.12); } 50%{ transform:scaleY(1); } }

.icon-visual{ width:52%; height:52%; color: var(--gold); opacity:.8; }


/* ============================================================================
   20. FORMULAR-ERGÄNZUNGEN — Spam-Falle, Einwilligungs-Häkchen
   ============================================================================ */
/* Für Menschen unsichtbar, für Bots ein verlockendes Feld */
.honeypot{ position:absolute !important; left:-9999px !important; width:1px !important;
  height:1px !important; opacity:0 !important; pointer-events:none; }

.field-check{ margin-top:6px; }
/* Wichtig: muss ".field label" überbieten, sonst wird der Satz in
   Großbuchstaben und Mono gesetzt wie die übrigen Feldbeschriftungen. */
.field label.check{
  display:flex; align-items:flex-start; gap:13px; cursor:pointer;
  font-family: var(--font-body); font-size:14.5px; text-transform:none;
  letter-spacing:normal; color: var(--muted); line-height:1.55; margin-bottom:0;
}
.check input{
  appearance:none; -webkit-appearance:none; flex:none; margin:2px 0 0;
  width:20px; height:20px; border:1px solid var(--line); background: var(--ink-2);
  border-radius: var(--radius); position:relative; cursor:pointer;
  transition: border-color .25s ease, background .25s ease;
}
.check input:hover{ border-color: var(--gold); }
.check input:checked{ background: var(--gold); border-color: var(--gold); }
.check input:checked::after{
  content:"✓"; position:absolute; inset:0; display:flex; align-items:center;
  justify-content:center; color: var(--ink); font-size:13px; font-weight:600;
}
.field-check.invalid .check input{ border-color:#C25B5B; }
.submit-btn:disabled{ opacity:.6; cursor:progress; }


/* ============================================================================
   21. DANKE-SEITE (erscheint nach dem Absenden des Formulars)
   ============================================================================ */
.danke{
  min-height:78vh; display:flex; align-items:center; padding:200px 0 120px;
  background: radial-gradient(ellipse at 50% 12%, rgba(201,162,75,.13), transparent 62%), var(--ink);
}
.danke h1{ font-size: clamp(32px,4.6vw,54px); margin-top:16px; line-height:1.12; }
.danke .section-lede{ margin-top:22px; }
.danke-mark{ width:78px; height:78px; margin:0 auto 34px; color: var(--gold);
  border:1px solid rgba(201,162,75,.4); border-radius:50%; display:flex;
  align-items:center; justify-content:center; animation: pop .7s var(--ease) both; }
.danke-mark svg{ width:42px; height:42px; }
.danke-mark svg path{ stroke-dasharray:70; stroke-dashoffset:70;
  animation: haken .7s var(--ease) .25s forwards; }
@keyframes pop{ from{ opacity:0; transform:scale(.8); } to{ opacity:1; transform:none; } }
@keyframes haken{ to{ stroke-dashoffset:0; } }


/* ============================================================================
   22. FEINSCHLIFF — mehr Tiefe und ruhigere Übergänge
   ============================================================================ */
/* Sehr feine Körnung über der ganzen Seite: nimmt den Farbflächen das Flache */
body::before{
  content:""; position:fixed; inset:0; z-index:1; pointer-events:none; opacity:.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Inhalte liegen über der Körnung */
.nav, .hero, .section, .page-header, .anlass-body, .other-anlaesse,
.cta-band, footer, .marquee, .danke, .lightbox, .to-top{ position:relative; z-index:2; }
.nav{ z-index:100; }
.lightbox{ z-index:300; }

/* Kleine goldene Linie über jeder Abschnitts-Überschrift */
.eyebrow{ display:flex; align-items:center; gap:14px; }
.eyebrow::before{ content:""; width:30px; height:1px; background: var(--gold); flex:none; opacity:.7; }
.center .eyebrow, .cta-band .eyebrow{ justify-content:center; }

/* Pakete heben sich beim Überfahren leicht an */
.paket{ position:relative; }
.paket::after{
  content:""; position:absolute; left:0; right:0; top:0; height:2px;
  background: var(--gold); transform:scaleX(0); transform-origin:left;
  transition: transform .45s var(--ease);
}
.paket:hover::after{ transform:scaleX(1); }

/* Verweisleiste unten: Pfeil erscheint beim Überfahren */
.other-grid a{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.other-grid a::after{ content:"→"; opacity:0; transform:translateX(-6px);
  transition: all .3s var(--ease); color: var(--gold); }
.other-grid a:hover::after{ opacity:1; transform:none; }

/* Anlass-Kacheln: Nummer wird beim Überfahren größer und goldener */
.anlass-card .num{ transition: color .3s ease, letter-spacing .4s var(--ease); }
.anlass-card:hover .num{ color: var(--gold-light); letter-spacing:.12em; }

/* Beim offenen Mobilmenü nicht mehr im Hintergrund scrollen */
body.nav-open{ overflow:hidden; }

/* Galerie-Platzhalter wirken bewusster gesetzt */
.gal-item::after{
  content:""; position:absolute; inset:12px; border:1px solid rgba(201,162,75,.12);
  pointer-events:none; transition: inset .45s var(--ease), border-color .45s ease;
}
.gal-item:hover::after{ inset:8px; border-color: rgba(201,162,75,.4); }

/* Auf sehr großen Schirmen etwas mehr Luft zwischen den Abschnitten */
@media (min-width:1400px){ :root{ --section-pad:140px; } }
/* Auf kleinen Schirmen weniger Luft, damit weniger gescrollt werden muss */
@media (max-width:700px){
  :root{ --section-pad:76px; }
  .wrap, .hero-inner{ padding:0 22px; }
  .nav-inner{ padding:18px 22px; }
  .nav.scrolled .nav-inner{ padding:12px 22px; }
  .hero{ padding:150px 0 110px; }
  .anlass-card{ padding:34px 26px; min-height:0; }
  .paket{ padding:32px 26px; }
  .svc-card{ padding:32px 26px; }
}


/* ============================================================================
   23. INSTAGRAM-LINK im Footer
   HIER ÄNDERN: Adresse und Anzeigename stehen im HTML jeder Seite (Footer).
   ============================================================================ */
.social{
  display:inline-flex; align-items:center; gap:11px;
  font-family: var(--font-mono); font-size:13.5px; letter-spacing:.03em;
  color: var(--muted); padding:9px 18px 9px 14px;
  border:1px solid var(--line); border-radius:999px;
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease);
}
.social svg{ width:19px; height:19px; flex:none; }
.social:hover{
  color: var(--gold-light); border-color: var(--gold);
  background: rgba(201,162,75,.08); transform: translateY(-2px);
}
/* Auf schmalen Schirmen sitzt der Link mittig unter dem Copyright */
@media (max-width:760px){
  .footer-inner{ justify-content:center; text-align:center; }
  .social{ order:-1; }
}
