/* ==========================================================================
   Fobi Fotobox — Design-System
   Statische Marketing-Seite (kein Framework, kein Build-Schritt)
   Palette: bg #0d0d0f–#1a1a1a, Gold #c9a84c → #e6cd7a, Text #f2f0e8
   Schriften: "Great Vibes" (Gold-Script) + "Lato" (Display & Fließtext)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variablen & Reset
   -------------------------------------------------------------------------- */
:root {
  /* Farben */
  --bg-0: #0d0d0f;
  --bg-1: #1a1a1a;
  --bg-2: #26221f;
  --panel: #232120;
  --panel-2: #242424;
  --gold: #c9a84c;
  --gold-bright: #e0b74c;
  --gold-light: #e6cd7a;
  --gold-grad: linear-gradient(135deg, #c9a84c 0%, #e6cd7a 100%);
  --text: #f2f0e8;
  --white: #ffffff;
  --muted: #a0a0a0;
  --whatsapp: #25d366;
  --line: rgba(201, 168, 76, 0.35);

  /* Typografie */
  --font-script: "Great Vibes", cursive;
  --font-sans: "Lato", Arial, Helvetica, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 860px;
  --radius: 8px;
  --header-h: 64px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px; /* Anker landen nicht unter dem Sticky-Header */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg-1);
  background-image: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 30%, var(--bg-1) 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--white); }
ul { padding-left: 1.2em; }
strong, b { color: var(--white); }

::selection { background: var(--gold); color: var(--bg-0); }

/* Sichtbarer Tastatur-Fokus (nur bei Tastatur-Navigation, nicht bei Maus-Klick) */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* "Zum Inhalt springen"-Link: unsichtbar, erscheint bei Tastatur-Fokus */
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 300;
  background: var(--gold-grad);
  color: #0d0d0f;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #0d0d0f; }

/* --------------------------------------------------------------------------
   2. Typografie-Klassen
   -------------------------------------------------------------------------- */

/* Goldene Script-Überschrift (Signature-Look) */
.script-heading {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-bright);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.15;
  margin: 0 0 0.35em;
}

/* Große weiße Display-Überschrift, teils Versalien */
.display-heading {
  font-family: var(--font-sans);
  font-weight: 900;
  color: var(--white);
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

.display-heading .script-inline,
.script-inline {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-bright);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.25em;
  vertical-align: 0.005em;
}

/* Gesperrte Gold-Versalien (z.B. REFERENZEN UND MEINUNGEN) */
.spaced-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.6em;
}

.gold { color: var(--gold-bright); }
.lead { font-size: 1.12em; }
.muted { color: var(--muted); }

/* --------------------------------------------------------------------------
   3. Layout-Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.container-narrow { max-width: var(--container-narrow); }

.section { padding: 72px 0; }
.section-tint { background: linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 100%); }
.text-center { text-align: center; }

.divider {
  width: 90px;
  height: 2px;
  background: var(--gold-grad);
  border: none;
  margin: 26px auto;
}

/* Scroll-Reveal (JS fügt .visible hinzu): feines Fade-up, kurzer Weg,
   weiche Ease-out-Kurve (statt 26px/ease → 18px/cubic-bezier) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Gestaffeltes Karten-Pop: .stagger.reveal → die direkten Kinder erscheinen
   nacheinander (leicht kleiner + tiefer → Normalgröße), 70 ms Versatz.
   Der Container selbst blendet nicht mehr zusätzlich (sonst doppelt). */
.stagger.reveal { opacity: 1; transform: none; }
.stagger > * {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > :nth-child(2)  { transition-delay: 0.07s; }
.stagger.visible > :nth-child(3)  { transition-delay: 0.14s; }
.stagger.visible > :nth-child(4)  { transition-delay: 0.21s; }
.stagger.visible > :nth-child(5)  { transition-delay: 0.28s; }
.stagger.visible > :nth-child(6)  { transition-delay: 0.35s; }
.stagger.visible > :nth-child(7)  { transition-delay: 0.42s; }
.stagger.visible > :nth-child(8)  { transition-delay: 0.49s; }
.stagger.visible > :nth-child(n+9) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .stagger > * { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: var(--gold-grad);
  color: #1a1a1a;
}
.btn-gold:hover {
  color: #0d0d0f;
  box-shadow: 0 0 22px rgba(230, 205, 122, 0.45);
  transform: translateY(-2px);
}
/* Glanz-Sweep: ein schmaler, schräger heller Streifen wandert alle ~7 s
   einmal von links nach rechts über den Gold-Button (dezent, nur transform).
   Bei Hover läuft er sofort und schneller durch. */
.btn-gold::after {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: 0;
  width: 42%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .btn-gold::after { animation: btn-shine 7s ease-in-out infinite; animation-delay: 1.2s; }
  .btn-gold:hover::after { animation: btn-shine-hover 0.9s ease-out 1; }
}
@keyframes btn-shine {
  0%       { transform: translateX(-160%) skewX(-18deg); }
  18%      { transform: translateX(380%) skewX(-18deg); }
  100%     { transform: translateX(380%) skewX(-18deg); }
}
@keyframes btn-shine-hover {
  from { transform: translateX(-160%) skewX(-18deg); }
  to   { transform: translateX(380%) skewX(-18deg); }
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  color: #fff;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(201, 168, 76, 0.12); color: var(--white); }

.btn-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Globale mobile CTA-Regel (Runde 15): zwei zusammengehörige Buttons kompakt NEBENEINANDER statt gestapelt */
@media (max-width: 560px) {
  .btn-row, .hero-actions, .product-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
  }
  .btn-row > .btn, .hero-actions > .btn, .product-actions > .btn {
    flex: 1 1 auto;        /* Breite nach Textlänge (war 1 1 0 → gleiche Breite schnitt lange Texte ab) */
    min-width: 0;
    padding: 13px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   5. Bild-Platzhalter
   Jedes <img> liegt in einer .ph-Box. Fehlt die Datei, blendet onerror das
   <img> aus (Klasse .missing) und die Box zeigt einen dunkelgrauen Kasten
   mit goldenem Strichrahmen + Label (data-label) — so sieht man, welches
   Foto wohin gehört.
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  background: #232323;
  border: 1px dashed var(--line);
  overflow: hidden;
  margin: 0;
}

.ph::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  opacity: 0.85;
}

.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ph img.missing { display: none; }

/* Seitenverhältnisse */
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x3 { aspect-ratio: 4 / 3; }
.ph-3x4 { aspect-ratio: 3 / 4; }
.ph-1x1 { aspect-ratio: 1 / 1; }

/* --------------------------------------------------------------------------
   6. Header (sticky)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* obere Zeile: Logo + Kontakt */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo: Bild falls vorhanden, sonst Text-Logo (JS setzt .no-img) */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 58px; width: auto; }
.logo .logo-text { display: none; align-items: baseline; gap: 8px; white-space: nowrap; }
.logo.no-img img { display: none; }
.logo.no-img .logo-text { display: inline-flex; }

.logo-script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: 2.1rem;
  line-height: 1;
}
.logo-caps {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.32em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-contact a { color: var(--text); font-size: 0.92rem; white-space: nowrap; }
.header-contact a:hover { color: var(--gold-light); }
.header-contact .btn { padding: 11px 22px; font-size: 0.92rem; }
/* Header-CTA „Jetzt anfragen!": .header-contact a (0,1,1) schlägt sonst
   .btn-gold (0,1,0) → Schrift wurde hell statt dunkel wie bei allen anderen
   Gold-Buttons. Hier explizit angleichen. */
.header-contact a.btn-gold { color: #1a1a1a; }
.header-contact a.btn-gold:hover { color: #0d0d0f; }

/* runde Social-Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  transition: background 0.25s, color 0.25s;
}
.social-icon:hover { background: var(--gold); color: #1a1a1a; }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation (zentriert) */
.site-nav { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav li { position: relative; }
.site-nav a {
  display: block;
  padding: 13px 18px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.site-nav a:hover { color: var(--gold-light); }
.site-nav a.active { color: var(--gold-bright); }

/* Dropdown */
.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 6px;
  color: var(--gold);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #17171a;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 50;
}
.dropdown a { padding: 11px 18px; font-weight: 400; font-size: 0.92rem; }
.dropdown a:hover { background: rgba(201, 168, 76, 0.1); }

@media (hover: hover) and (min-width: 901px) {
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: flex; }
}
.has-dropdown.open .dropdown { display: flex; }

/* --------------------------------------------------------------------------
   7. Header — Mobil
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .header-contact .contact-mail,
  .header-contact .contact-tel-text { display: none; }
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav-open .site-nav { display: block; }

  .site-nav ul { flex-direction: column; }
  .site-nav a { padding: 14px 26px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  /* Mobil: Dropdown-Pfeile (Fotoboxen/Zubehör) deutlich größer/präsenter */
  .has-dropdown > a::after { font-size: 1.35em; margin-left: 10px; font-weight: 900; }

  .dropdown {
    position: static;
    display: none;
    border: none;
    border-left: 2px solid var(--gold);
    box-shadow: none;
    background: #121214;
    border-radius: 0;
  }
  .dropdown a { padding-left: 42px; }
}

@media (max-width: 560px) {
  .header-contact .social-icon { display: none; }
  .header-contact .btn { padding: 10px 16px; font-size: 0.85rem; }
  .logo img { height: 46px; }
  .logo-script { font-size: 1.7rem; }
  .logo-caps { font-size: 0.8rem; letter-spacing: 0.24em; }
}

/* --------------------------------------------------------------------------
   8. Hero & Full-Width-Foto-Bänder
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
}

.band .band-media {
  position: absolute;
  inset: 0;
  border-left: none;
  border-right: none;
}

/* Platzhalter-Label im Band nach unten schieben, damit es nicht mit der
   Überschrift auf dem Band kollidiert */
.band .band-media::before {
  align-items: flex-end;
  padding-bottom: 14px;
}

.band .band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.55) 0%, rgba(13, 13, 15, 0.35) 50%, rgba(13, 13, 15, 0.75) 100%);
  z-index: 2;
}

.band .band-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 22px;
  width: 100%;
}

.band-tall { min-height: 62vh; }

/* Hero mit Zitat rechts */
.hero { min-height: 74vh; }
.hero .band-content {
  display: flex;
  justify-content: flex-end;
  max-width: var(--container);
  margin: 0 auto;
  text-align: right;
}

.hero-quote {
  max-width: 480px;
  padding: 30px 0;
}
.hero-quote blockquote {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.hero-quote cite {
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold-bright);
}

@media (max-width: 700px) {
  .hero .band-content { justify-content: center; text-align: center; }
  .band-tall { min-height: 46vh; }
}

/* --------------------------------------------------------------------------
   9. Gestaffelte Vorteils-Blöcke (Zickzack)
   -------------------------------------------------------------------------- */
.benefits { display: flex; flex-direction: column; gap: 34px; }

.benefit {
  max-width: 560px;
  padding: 26px 30px;
  background: rgba(37, 34, 31, 0.55);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.benefit:nth-child(even) {
  align-self: flex-end;
  text-align: right;
  border-left: none;
  border-right: 3px solid var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
}

.benefit h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 1.45rem;
  margin: 0 0 0.4em;
}
.benefit p { margin: 0; }

@media (max-width: 700px) {
  .benefit,
  .benefit:nth-child(even) {
    align-self: stretch;
    text-align: left;
    border-right: none;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   10. Split-Sektionen (Bild links / Text rechts, spiegelbar)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-reverse .split-text { order: 1; }

.split-media { display: grid; gap: 18px; }
.split-media .ph { border-radius: var(--radius); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2em 0;
}
.feature-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-list li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 10px;
  font-size: 0.85em;
}
.feature-list li:last-child { border-bottom: none; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split-reverse .split-media { order: 1; }
  .split-reverse .split-text { order: 2; }
}

/* --------------------------------------------------------------------------
   11. Slider / Karussell
   -------------------------------------------------------------------------- */
.slider { position: relative; }

.slider-viewport { overflow: hidden; }

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  touch-action: pan-y;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 4px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(13, 13, 15, 0.75);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.slider-arrow:hover { background: var(--gold); color: #1a1a1a; }
.slider-arrow.prev { left: -10px; }
.slider-arrow.next { right: -10px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.slider-dots button.active { background: var(--gold); }

@media (max-width: 700px) {
  .slider-arrow { display: none; } /* mobil: wischen */
}

/* Modell-Karte im Slider */
.model-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 36px;
  align-items: center;
  background: rgba(37, 34, 31, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 34px;
}
.model-card .ph { border-radius: var(--radius); }

.model-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.2em;
}
.model-card .model-tagline {
  color: var(--gold-bright);
  font-weight: 700;
  margin: 0 0 0.8em;
}
.model-card hr {
  border: none;
  height: 1px;
  background: var(--gold-grad);
  margin: 18px auto;
  width: 70%;
}
.model-card .feature-list { text-align: center; }
.model-details { text-align: center; }

@media (max-width: 820px) {
  .model-card { grid-template-columns: 1fr; padding: 22px; gap: 22px; }
}

/* --------------------------------------------------------------------------
   12. KI-Stil-Karten
   -------------------------------------------------------------------------- */
.style-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 34px 0;
}
.style-card { text-align: center; }
.style-card .ph { border-radius: var(--radius); }
.style-card figcaption {
  margin-top: 10px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

@media (max-width: 1000px) { .style-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .style-cards { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   13. Referenzen
   -------------------------------------------------------------------------- */
.refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Schlichte dunkle Kachel mit Gold-Rahmen (keine Foto-Hintergründe mehr) */
.ref-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  background: rgba(37, 34, 31, 0.72);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ref-card:hover { border-color: rgba(201, 168, 76, 0.7); }
.ref-card .ref-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 32px 26px 18px;
  width: 100%;
}
.ref-card h3 {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.5em;
}
.ref-card p { margin: 0; font-size: 0.98rem; }
.ref-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-top: 24px;
}

@media (max-width: 820px) {
  .refs { grid-template-columns: 1fr; }
  .ref-card { min-height: 300px; }
}

/* Kundenstimmen-Laufband (Startseite): .refs-marquee[data-refs-marquee]
   > .refs-marquee-track > .refs (EIN Karten-Set, JS klont es aria-hidden).
   - Im Laufband ist .refs eine Flex-Reihe fester Kartenbreite (statt Grid).
   - Ohne JS / vor dem Klonen: wischbare Reihe (overflow-x: auto).
   - JS setzt .is-marquee, --marquee-shift (= genau ein Set) und die Dauer.
   - Pause bei Hover/Fokus; reduced-motion → Animation aus, Klone weg, wischbar. */
.refs-marquee {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding: 6px 0 12px;
}
.refs-marquee::-webkit-scrollbar { height: 8px; }
.refs-marquee::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.5); border-radius: 4px; }
.refs-marquee::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }
.refs-marquee-track { display: flex; width: max-content; }
.refs-marquee .refs {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  padding: 0 22px 0 0; /* = gap → Sets kacheln nahtlos */
}
.refs-marquee .ref-card {
  flex: 0 0 380px;
  width: 380px;
  min-height: 0;
}
.refs-marquee .ref-card .ref-inner { justify-content: flex-start; }
.refs-marquee .ref-card .ref-mark { margin-top: 18px; }
.refs-marquee.is-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.refs-marquee.is-marquee .refs-marquee-track {
  animation: style-marquee var(--marquee-duration, 60s) linear infinite;
  will-change: transform;
}
.refs-marquee.is-marquee:hover .refs-marquee-track,
.refs-marquee.is-marquee:focus-within .refs-marquee-track { animation-play-state: paused; }
@media (max-width: 560px) {
  .refs-marquee .ref-card { flex-basis: min(320px, 82vw); width: min(320px, 82vw); }
}
@media (prefers-reduced-motion: reduce) {
  .refs-marquee.is-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .refs-marquee.is-marquee .refs-marquee-track { animation: none; will-change: auto; }
  .refs-marquee .refs[aria-hidden="true"] { display: none; }
}

/* --------------------------------------------------------------------------
   14. Kontakt-Sektion & Formular
   -------------------------------------------------------------------------- */
.contact-teaser { max-width: 720px; margin: 0 auto 30px; text-align: center; }

.form-wrap {
  max-width: 700px;
  margin: 44px auto 0;
  background: var(--panel);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 26px;
}
.form-wrap iframe { border-radius: 4px; background: #fff; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  margin-top: 40px;
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 52px 22px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-col-left address { font-style: normal; line-height: 1.9; }
.footer-col-left .footer-brand {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-logo { text-align: center; }
.footer-logo img { height: 180px; width: auto; margin: 0 auto; }
.footer-logo .logo-script { font-size: 3.2rem; }
.footer-logo .logo-caps { font-size: 1.15rem; }

.footer-col-right { text-align: right; }
.footer-col-right .footer-heart {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}
.footer-col-right .footer-heart span { color: var(--gold-bright); }
.footer-col-right p { margin: 0 0 18px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-light); }
.footer-links .sep { color: rgba(255, 255, 255, 0.2); }
.footer-social { display: flex; gap: 10px; }

@media (max-width: 820px) {
  .footer-cols { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-col-right { text-align: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   16. Leistungs-Slider (Home „weitere Leistungen": Bild + Text pro Slide)
   -------------------------------------------------------------------------- */
.leistung-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 36px;
  align-items: center;
  background: rgba(37, 34, 31, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 34px;
}
.leistung-card .ph { border-radius: var(--radius); }

.leistung-card h3 {
  font-family: var(--font-sans);
  font-weight: 900;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
.leistung-card p { margin: 0; }

@media (max-width: 820px) {
  .leistung-card { grid-template-columns: 1fr; padding: 22px; gap: 22px; }
}

/* --------------------------------------------------------------------------
   17. Partner-/Location-Logo-Leiste — 14 Kundenlogos als Endlos-Laufband
   .partner-marquee > .partner-marquee-track > .partner-logos > .partner-logo
   - Logos sind farbig/dunkel mit Transparenz → jedes liegt auf einem WEISSEN
     Chip (sonst auf Anthrazit unsichtbar). Die PNGs sind 200×200 mit viel
     Luft, daher feste Bildhöhe + feste Chip-Mindestbreite (gleichmäßige Reihe,
     Set-Breite unabhängig vom Ladezustand der Bilder).
   - Ohne JS / vor dem Klonen: wischbare Reihe (overflow-x: auto).
   - JS (site.js, [data-partner-marquee]) klont das Set aria-hidden, setzt
     .is-marquee, --marquee-shift und --marquee-duration (Set-Breite / px pro s).
   - Pause bei Hover/Fokus; reduced-motion → keine Animation, Klone weg,
     Reihe bleibt wischbar.
   -------------------------------------------------------------------------- */
.partner-strip { padding: 48px 0 56px; overflow: hidden; }

.partner-heading {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.partner-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 26px;
}

.partner-marquee {
  position: relative;
  max-width: var(--container); /* wie KI-Leiste: nicht randlos, eingefasst */
  margin: 0 auto;
  padding: 8px 0 22px; /* Platz für den Chip-Schatten */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.partner-marquee::-webkit-scrollbar { display: none; }
.partner-marquee-track {
  display: flex;
  width: max-content;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 16px 0 0; /* = gap → Sets kacheln nahtlos */
}
.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 84px;
  margin: 0;
  padding: 0 18px;
  overflow: hidden; /* PNGs haben ~15–30 % transparente Luft → Bild etwas größer als Chip, geclippt wird nur Transparenz */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(201, 168, 76, 0.22);
}
.partner-logo img {
  display: block;
  flex: 0 0 auto;
  height: 104px;
  max-height: none;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.partner-marquee.is-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.partner-marquee.is-marquee .partner-marquee-track {
  animation: partner-marquee var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
}
.partner-marquee.is-marquee:hover .partner-marquee-track,
.partner-marquee.is-marquee:focus-within .partner-marquee-track { animation-play-state: paused; }
@keyframes partner-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-marquee.is-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .partner-marquee.is-marquee .partner-marquee-track { animation: none; will-change: auto; }
  .partner-marquee .partner-logos[aria-hidden="true"] { display: none; }
  .partner-marquee .partner-logos { padding-left: 16px; }
}
@media (max-width: 540px) {
  .partner-logos { gap: 12px; padding-right: 12px; }
  .partner-logo { min-width: 128px; height: 72px; padding: 0 14px; }
  .partner-logo img { height: 90px; max-width: 120px; }
}

/* --------------------------------------------------------------------------
   18. Zubehör-/Service-Karten (Modellseiten)
   -------------------------------------------------------------------------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}
.addon-card {
  background: rgba(37, 34, 31, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.addon-card h3 {
  color: var(--gold-bright);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5em;
}
.addon-card p { margin: 0 0 0.6em; font-size: 0.98rem; }
.addon-card p:last-child { margin-bottom: 0; }
.addon-card .feature-list { margin: 0.8em 0 0; }
.addon-card .feature-list li { font-size: 0.95rem; }
.addon-wide { grid-column: 1 / -1; }

@media (max-width: 700px) {
  .addon-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   19. Chips & horizontale Style-Karussells (KI-Fotobox)
   -------------------------------------------------------------------------- */
.chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 22px 0;
}
.chip-strip-scroll {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.chip {
  flex: 0 0 auto;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

/* horizontal scrollendes Bild-Karussell mit Style-Labels */
.style-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  margin: 30px 0 10px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.style-strip .style-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
}
.style-strip::-webkit-scrollbar { height: 8px; }
.style-strip::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.5); border-radius: 4px; }
.style-strip::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }

@media (max-width: 540px) { .style-strip .style-card { flex-basis: 130px; } }

/* KI-Style-Laufband (Marquee): .style-marquee > .style-marquee-track > .style-strip
   - Ohne JS / vor dem Klonen: normale wischbare Leiste (overflow-x: auto).
   - JS (site.js, [data-style-marquee]) klont das Karten-Set (aria-hidden, ohne
     data-edit/data-img), setzt .is-marquee, --marquee-shift (= genau ein Set,
     -100%/Kopien) und die Dauer (Set-Breite / px pro Sekunde).
   - Nahtlos: jedes Set trägt padding-right = gap, die Sets kacheln also exakt;
     Track = n gleich breite Sets, Animation 0 → -(1/n) der Track-Breite.
   - Pause bei Hover; reduced-motion → Animation aus, Klon versteckt, Leiste wischbar. */
.style-marquee {
  position: relative;
  margin: 30px 0 10px;
  padding: 8px 0 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.style-marquee::-webkit-scrollbar { height: 8px; }
.style-marquee::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.5); border-radius: 4px; }
.style-marquee::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }
.style-marquee-track {
  display: flex;
  width: max-content;
}
.style-marquee .style-strip {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 16px 0 0; /* = gap → Sets kacheln nahtlos */
  overflow: visible;
  scroll-snap-type: none;
}
.style-marquee .style-strip .style-card { scroll-snap-align: none; }
.style-marquee.is-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.style-marquee.is-marquee .style-marquee-track {
  animation: style-marquee var(--marquee-duration, 60s) linear infinite;
  will-change: transform;
}
.style-marquee.is-marquee:hover .style-marquee-track,
.style-marquee.is-marquee:focus-within .style-marquee-track { animation-play-state: paused; }
@keyframes style-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}
@media (prefers-reduced-motion: reduce) {
  .style-marquee.is-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .style-marquee.is-marquee .style-marquee-track { animation: none; will-change: auto; }
  .style-marquee .style-strip[aria-hidden="true"] { display: none; }
}

/* --------------------------------------------------------------------------
   20. Kicker-Heading (kleine Gold-Zeile über großer Display-Zeile, KI-Seite)
   -------------------------------------------------------------------------- */
.kicker {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* --------------------------------------------------------------------------
   21. Ablauf-Schritte (nummeriert, KI-Seite)
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
  text-align: center;
}
.step {
  background: rgba(37, 34, 31, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step .step-num {
  display: block;
  font-family: var(--font-script);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.step h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5em;
}
.step p { margin: 0; font-size: 0.98rem; }

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   22. Schwebende Buttons (WhatsApp-Kontakt + "nach oben")
   -------------------------------------------------------------------------- */
.float-btn {
  position: fixed;
  right: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn svg { width: 26px; height: 26px; fill: currentColor; }
.float-btn:hover { transform: translateY(-2px); }
.float-btn[hidden] { display: none; }

.float-whatsapp {
  bottom: 18px;
  background: var(--whatsapp);
  color: #fff;
}
.float-whatsapp:hover { color: #fff; box-shadow: 0 0 22px rgba(37, 211, 102, 0.5); }

.float-top {
  bottom: 84px;
  background: rgba(13, 13, 15, 0.88);
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.float-top:hover { background: var(--gold); color: #1a1a1a; }

@media (max-width: 560px) {
  .float-btn { width: 46px; height: 46px; right: 14px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-whatsapp { bottom: 14px; }
  .float-top { bottom: 72px; }
}

@media print {
  .float-btn,
  .skip-link,
  .site-header,
  .site-footer { display: none !important; }
}

/* ==========================================================================
   ONE-PAGER-UMBAU DER STARTSEITE (2026-09) — neue Abschnitte 23–33
   Alles im Fobi-Look: Anthrazit-Flächen, Gold-Akzent, Great Vibes + Lato.
   ========================================================================== */

/* --------------------------------------------------------------------------
   23. Hero v2 — einspaltig, textzentriert, kein Bild.
       Hintergrund: statischer Gold-Glow + 3 langsam schwebende Glow-Kugeln
       (reine CSS-Keyframes, nur transform → günstig; reduced-motion → aus).
   -------------------------------------------------------------------------- */
.hero-v2 {
  position: relative;
  overflow: hidden;
  /* Runde 15 (2.7): echtes Partyfoto als Hintergrund, stark abgedunkelt (dunkler Charakter + Lesbarkeit) */
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0.80) 0%, rgba(13, 13, 15, 0.86) 55%, rgba(13, 13, 15, 0.92) 100%),
    url("../img/hero-party.jpg") center 40% / cover no-repeat,
    var(--bg-0);
}
/* dezenter Gold-Schein mittig hinter dem Text + leichte Aufhellung oben */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 50% 60%, rgba(201, 168, 76, 0.14) 0%, rgba(201, 168, 76, 0) 70%),
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 70%);
}
/* Schwebende Glow-Kugeln: weiche radiale Verläufe (kein filter: blur → kein
   Repaint pro Frame), jede mit eigener Bahn und Dauer. */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(230, 205, 122, 0.22) 0%, rgba(201, 168, 76, 0.09) 38%, rgba(201, 168, 76, 0) 70%);
  will-change: transform;
}
.hero-orb-1 { width: 520px; height: 520px; left: -140px; top: -120px; animation: orb-float-1 26s ease-in-out infinite; }
.hero-orb-2 { width: 420px; height: 420px; right: -120px; top: 12%; animation: orb-float-2 32s ease-in-out infinite; }
.hero-orb-3 { width: 340px; height: 340px; left: 38%; bottom: -160px; opacity: 0.8; animation: orb-float-3 22s ease-in-out infinite; }

@keyframes orb-float-1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(70px, 50px, 0) scale(1.08); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-60px, 70px, 0) scale(0.94); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-50px, -40px, 0) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 140px 22px 116px; /* Runde 15: Hero-Band auf Desktop ~20% höher — mehr Titelbild sichtbar */
  display: flex;
  justify-content: center;
}
.hero-copy {
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(13, 13, 15, 0.55);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 10px rgba(230, 205, 122, 0.8);
}
.badge-new {
  font-family: var(--font-sans);
  color: #1a1a1a;
  background: var(--gold-grad);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 900;
  color: var(--white);
  font-size: clamp(2.5rem, 5.6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 22px 0 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.hero-title .hero-city {
  color: var(--gold-bright);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 30px;
}
.hero-sub strong { font-weight: 700; }
.hero-sub .gold strong { color: var(--gold-bright); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-actions .btn { padding: 17px 34px; font-size: 1.05rem; }
.btn-ghost {
  background: rgba(13, 13, 15, 0.45);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* Gold-Sterne (Kundenstimmen-Eyebrow) */
.stars {
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  font-size: 1.05em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(230, 205, 122, 0.55);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-inner { padding: 48px 22px 44px; }
  .hero-orb-1 { width: 360px; height: 360px; left: -140px; top: -100px; }
  .hero-orb-2 { width: 300px; height: 300px; right: -120px; }
  .hero-orb-3 { width: 260px; height: 260px; bottom: -120px; }
}
@media (max-width: 560px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none; will-change: auto; }
}

/* --------------------------------------------------------------------------
   24. Städte-Laufband (Marquee) — reines CSS, respektiert reduced-motion
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(13, 13, 15, 0.82);
  backdrop-filter: blur(6px);
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.marquee-list li {
  padding: 0 22px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee-list li::after { content: "·"; color: var(--gold); font-size: 1.3em; }
.marquee-list li.marquee-label {
  color: var(--gold-bright);
  font-family: var(--font-script);
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .marquee-track .marquee-list[aria-hidden="true"] { display: none; }
  .marquee-list { flex-wrap: wrap; justify-content: center; row-gap: 6px; }
}

/* --------------------------------------------------------------------------
   25. Produkt-Karten („Mehr als nur die Fotobox") — Coverflow, 5 Karten
       Markup: .coverflow[data-coverflow] > .strip-arrow.prev/.next
               + .coverflow-viewport > .coverflow-track > .product-card*
               + .coverflow-dots
       Alle Karten liegen im selben Grid-Feld übereinander (Höhe = höchste
       Karte); JS vergibt Positionsklassen cf-pos-0 (aktiv), -m1/-p1 (Nachbarn),
       -m2/-p2 (außen, angeschnitten), cf-pos-far (versteckt).
   -------------------------------------------------------------------------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head .kicker { margin-bottom: 8px; }
.section-head p { margin: 0.6em 0 0; color: var(--text); }

.coverflow {
  position: relative;
  --cf-w: 360px;          /* Breite der aktiven Karte */
  --cf-step1: 335px;      /* Versatz der direkten Nachbarn */
  --cf-step2: 600px;      /* Versatz der äußeren Karten */
  --cf-scale1: 0.84;
  --cf-scale2: 0.7;
  --cf-rot: 10deg;        /* leichte Drehung „nach hinten" (Coverflow) */
}
.coverflow-viewport {
  overflow: hidden;
  margin: 0 -22px;
  padding: 18px 22px 30px;
}
.coverflow-track {
  display: grid;
  perspective: 1400px;
  touch-action: pan-y;
}
.coverflow .product-card img { -webkit-user-drag: none; user-select: none; }
.coverflow .product-card {
  grid-area: 1 / 1;
  justify-self: center;
  align-self: stretch;
  width: var(--cf-w);
  max-width: 100%;
  flex: none;
  scroll-snap-align: none;
  transform: translateX(0) scale(1);
  opacity: 1;
  backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s ease,
              filter 0.5s ease, border-color 0.3s ease, box-shadow 0.5s ease;
}
.coverflow .product-card.cf-no-anim { transition: none !important; }
.coverflow .product-card.cf-pos-0 {
  z-index: 5;
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 168, 76, 0.35), 0 0 46px rgba(201, 168, 76, 0.16);
}
.coverflow .product-card.cf-pos-0:hover,
.coverflow .product-card.cf-pos-0:focus-within { transform: translateY(-4px) scale(1); }
.coverflow .product-card.cf-pos-m1,
.coverflow .product-card.cf-pos-p1 {
  z-index: 4;
  opacity: 0.8;
  filter: brightness(0.5) saturate(0.85);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.coverflow .product-card.cf-pos-m1 { transform: translateX(calc(-1 * var(--cf-step1))) scale(var(--cf-scale1)) rotateY(var(--cf-rot)); }
.coverflow .product-card.cf-pos-p1 { transform: translateX(var(--cf-step1)) scale(var(--cf-scale1)) rotateY(calc(-1 * var(--cf-rot))); }
.coverflow .product-card.cf-pos-m2,
.coverflow .product-card.cf-pos-p2 {
  z-index: 3;
  opacity: 0.45;
  filter: brightness(0.38) saturate(0.7);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: none;
  cursor: pointer;
}
.coverflow .product-card.cf-pos-m2 { transform: translateX(calc(-1 * var(--cf-step2))) scale(var(--cf-scale2)) rotateY(var(--cf-rot)); }
.coverflow .product-card.cf-pos-p2 { transform: translateX(var(--cf-step2)) scale(var(--cf-scale2)) rotateY(calc(-1 * var(--cf-rot))); }
.coverflow .product-card.cf-pos-far {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.6);
}
.coverflow .strip-arrow { top: 50%; margin-top: -23px; }

.coverflow-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 2px;
}
.coverflow-dots button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.coverflow-dots button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  background: transparent;
  transition: width 0.3s ease, background 0.3s ease;
}
.coverflow-dots button:hover::before { background: rgba(201, 168, 76, 0.45); }
.coverflow-dots button[aria-selected="true"]::before { width: 24px; background: var(--gold); }

@media (max-width: 1000px) {
  .coverflow { --cf-w: 300px; --cf-step1: 255px; --cf-step2: 470px; }
}
@media (max-width: 700px) {
  .coverflow { --cf-w: min(300px, 76vw); --cf-step1: calc(var(--cf-w) * 0.86); --cf-scale1: 0.8; --cf-rot: 8deg; }
  .coverflow-viewport { padding: 12px 22px 24px; }
  /* mobil: aktive Karte + kleine Peeks der Nachbarn, äußere Karten aus */
  .coverflow .product-card.cf-pos-m2,
  .coverflow .product-card.cf-pos-p2 { opacity: 0; pointer-events: none; }
  .coverflow .strip-arrow { margin-top: -19px; }
}
@media (prefers-reduced-motion: reduce) {
  .coverflow .product-card { transition: border-color 0.3s ease; }
}

.strip-arrow {
  position: absolute;
  top: 34%;
  z-index: 5;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.6);
  background: rgba(13, 13, 15, 0.82);
  color: var(--gold-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.strip-arrow svg { width: 24px; height: 24px; fill: currentColor; }
.strip-arrow.prev { left: -8px; }
.strip-arrow.next { right: -8px; }
.strip-arrow:hover { background: var(--gold-grad); color: #1a1a1a; transform: scale(1.06); }
.strip-arrow:disabled { opacity: 0.25; cursor: default; transform: none; }
.strip-arrow:disabled:hover { background: rgba(13, 13, 15, 0.82); color: var(--gold-light); }
@media (min-width: 1300px) {
  .strip-arrow.prev { left: -60px; }
  .strip-arrow.next { right: -60px; }
}
@media (max-width: 700px) {
  .strip-arrow { width: 38px; height: 38px; }
  .strip-arrow svg { width: 20px; height: 20px; }
}
.strip-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin: 4px 0 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(37, 34, 31, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.product-card .ph { aspect-ratio: 4 / 5; border: none; border-bottom: 1px solid rgba(201, 168, 76, 0.2); }
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1 1 auto; }
.product-eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.product-card .feature-list { margin: 0 0 16px; text-align: left; }
.product-card .feature-list li { font-size: 0.93rem; padding: 6px 0; }
.product-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-link::after { content: "→"; transition: transform 0.25s ease; }
.product-link:hover { color: var(--white); }
.product-link:hover::after { transform: translateX(4px); }


/* --------------------------------------------------------------------------
   26. Zahlen-Band (Stats) mit Hochzähl-Animation (JS: [data-count])
   -------------------------------------------------------------------------- */
.stats-band {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.03) 50%, rgba(201, 168, 76, 0.10) 100%), var(--bg-0);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 54px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.stat { position: relative; padding: 0 12px; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.5), transparent);
}
.stat-value {
  display: block;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1;
  color: var(--gold-bright);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.stat-note { display: block; color: var(--muted); font-size: 0.85rem; margin-top: 2px; }

@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .stat:nth-child(3)::before { display: none; }
  .stat-value { font-size: clamp(1.7rem, 7.5vw, 2.6rem); white-space: nowrap; }
}

/* --------------------------------------------------------------------------
   27. KI-Fotobox-Highlight (Style-Leiste mit Kategorie-Labels + Kennzahlen)
   -------------------------------------------------------------------------- */
.ki-highlight {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(201, 168, 76, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(44, 38, 30, 0.9) 0%, transparent 50%),
    var(--bg-1);
}
.ki-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 6px;
}
.ki-fact {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: rgba(13, 13, 15, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.ki-fact strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold-bright);
}
.ki-fact span { color: var(--text); font-size: 0.92rem; }

.style-strip .style-card { position: relative; }

/* --------------------------------------------------------------------------
   28. Feature-Grid „Alles inklusive"
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-tile {
  background: rgba(37, 34, 31, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-tile:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 14px;
}
.feature-tile h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
}
.feature-tile p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* 7 Kacheln: Desktop 4 + 3 (zweite Reihe mittig, via 8-Spalten-Raster),
   Tablet 3 + 3 + 1 (letzte mittig), Mobil 2 + 2 + 2 + 1 (letzte volle Breite) */
@media (min-width: 1001px) {
  .feature-grid-7 { grid-template-columns: repeat(8, 1fr); }
  .feature-grid-7 .feature-tile { grid-column: span 2; }
  .feature-grid-7 .feature-tile:nth-child(5) { grid-column: 2 / span 2; }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .feature-grid-7 .feature-tile:nth-child(7) { grid-column: 2; }
}
@media (max-width: 600px) {
  .feature-grid-7 .feature-tile:nth-child(7) { grid-column: 1 / -1; }
}

/* 8 Kacheln: Desktop 4 + 4, Tablet 3 + 3 + 2 (letzte beiden mittig via
   6-Spalten-Raster), Mobil 2 + 2 + 2 + 2 */
@media (min-width: 1001px) {
  .feature-grid.feature-grid-8 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .feature-grid.feature-grid-8 { grid-template-columns: repeat(6, 1fr); }
  .feature-grid-8 .feature-tile { grid-column: span 2; }
  .feature-grid-8 .feature-tile:nth-child(7) { grid-column: 2 / span 2; }
}

/* ehrlicher Hinweis unter den Kacheln: modell-/paketabhängige Extras */
.feature-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 720px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .feature-tile { padding: 18px 12px; } }

/* --------------------------------------------------------------------------
   29. USP QR-Code-Gästegalerie + Smartphone-Mockup (reines CSS, keine Bilder)
   -------------------------------------------------------------------------- */
.galerie-usp .split { gap: 60px; }
.galerie-usp .split-text .feature-list { text-align: left; }
.galerie-usp .split-text .lead { margin: 0 0 12px; }
/* USP-Überschrift „Eure eigene QR-Code-Gästegalerie." etwas kleiner als die
   Standard-Display-Größe, damit sie auf Desktop in EINER Zeile steht
   (mobil darf sie umbrechen). */
.galerie-usp .display-heading { font-size: clamp(1.7rem, 3.1vw, 2.3rem); }
@media (min-width: 1100px) {
  /* Textspalte etwas breiter (das Handy-Mockup ist nur 300 px breit),
     Heading fix 2.1rem ≈ 580 px → passt ab 1100 px Viewport in eine Zeile */
  .galerie-usp .split { grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr); }
  .galerie-usp .display-heading { font-size: 2.1rem; }
}
/* ehrlicher Verfügbarkeits-Hinweis (Fine & Smart inkl., Retro zubuchbar) */
.usp-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.07);
  color: var(--text);
  font-size: 0.88rem;
}
.usp-note::before { content: "✓"; color: var(--gold-bright); font-weight: 900; }

.phone-wrap { position: relative; width: 300px; max-width: 100%; margin: 0 auto; }
.phone-mock {
  position: relative;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(160deg, #2a2a28 0%, #121212 100%);
  border: 1px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone-mock::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #0d0d0f;
  z-index: 3;
}
.phone-screen {
  border-radius: 26px;
  background: var(--bg-0);
  overflow: hidden;
  padding: 34px 12px 16px;
}
.phone-head { text-align: center; margin-bottom: 12px; }
.phone-head .logo-script { font-size: 1.5rem; display: block; line-height: 1; }
.phone-head strong { display: block; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.phone-head small { color: var(--muted); font-size: 0.72rem; }
.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.phone-tile {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3a3126 0%, #1c1814 100%);
}
.phone-tile:nth-child(2) { background: linear-gradient(135deg, #5a4520 0%, #1a1a1a 100%); }
.phone-tile:nth-child(3) { background: linear-gradient(135deg, #3a2f22 0%, #12100e 100%); }
.phone-tile:nth-child(4) { background: linear-gradient(135deg, #4a3a2a 0%, #1c1814 100%); }
.phone-tile:nth-child(5) { background: linear-gradient(135deg, #6b5426 0%, #242424 100%); }
.phone-tile:nth-child(6) { background: linear-gradient(135deg, #31281f 0%, #1a1a1a 100%); }
.phone-tile::after {
  content: "♥";
  position: absolute;
  right: 6px;
  bottom: 4px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.phone-tile.tile-video::before {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}
.phone-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-size: 0.72rem;
  color: var(--text);
}
.phone-bar b { color: var(--gold-bright); }
.phone-comment {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  color: var(--text);
  line-height: 1.4;
}
.phone-comment b { color: var(--gold-light); }
.phone-cta {
  margin-top: 10px;
  text-align: center;
  padding: 9px;
  border-radius: 8px;
  background: var(--gold-grad);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.78rem;
}
.phone-qr {
  position: absolute;
  right: -34px;
  bottom: 30px;
  width: 96px;
  height: 96px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.phone-qr i { display: block; background: #0d0d0f; border-radius: 1px; }
.phone-qr i.w { background: #fff; }

@media (max-width: 820px) {
  .galerie-usp .split { gap: 36px; }
  .galerie-usp .split-media { order: 2; }
  .galerie-usp .split-text { order: 1; text-align: center; }
  .galerie-usp .split-text .feature-list { text-align: center; }
}
@media (max-width: 420px) { .phone-qr { display: none; } }

/* --------------------------------------------------------------------------
   30. „So läuft's ab" — 5 nummerierte Schritte (Variante der .steps)
   -------------------------------------------------------------------------- */
.steps-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.steps-5 .step {
  position: relative;
  padding: 34px 20px 26px;
  background: rgba(37, 34, 31, 0.55);
}
.steps-5 .step-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.05rem;
  width: 44px;
  height: 44px;
  line-height: 42px;
  border-radius: 50%;
  margin: 0 auto 14px;
  color: #1a1a1a;
  background: var(--gold-grad);
  box-shadow: 0 0 18px rgba(230, 205, 122, 0.35);
}
.steps-5 .step h3 { font-size: 1.05rem; }
.steps-5 .step p { font-size: 0.92rem; color: var(--muted); }

@media (max-width: 1000px) { .steps-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .steps-5 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   31. Konfigurator-CTA (Platzhalter — Konfigurator kommt separat)
   -------------------------------------------------------------------------- */
.konfig-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201, 168, 76, 0.22) 0%, transparent 60%),
    var(--bg-0);
}
.konfig-cta .container { position: relative; z-index: 2; }
.konfig-cta .display-heading { text-transform: none; letter-spacing: 0; }
.konfig-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  list-style: none;
  padding: 0;
  margin: 22px 0 32px;
  color: var(--text);
  font-size: 0.95rem;
}
.konfig-points li::before { content: "✓"; color: var(--gold-bright); font-weight: 900; margin-right: 8px; }
.konfig-cta .btn { padding: 18px 44px; font-size: 1.12rem; }
.konfig-note { color: var(--muted); font-size: 0.88rem; margin-top: 16px; }

/* --------------------------------------------------------------------------
   32. FAQ-Akkordeon (<details>/<summary> — echter Klick, kein confirm())
   -------------------------------------------------------------------------- */
.faq { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  background: rgba(37, 34, 31, 0.55);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--gold); color: #1a1a1a; }
.faq-item summary:hover { color: var(--gold-light); }
.faq-a { padding: 0 22px 20px; color: var(--text); }
.faq-a p { margin: 0 0 0.6em; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 0.4em 0 0; padding-left: 1.2em; }
.faq-a li { padding: 2px 0; }
.faq-more { text-align: center; margin-top: 28px; color: var(--muted); }

@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-a { animation: faqIn 0.28s ease; }
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   33. Footer-Städte-Zeile + Referenz-Hinweis
   -------------------------------------------------------------------------- */
.footer-cities {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 22px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.9;
}
.footer-cities strong { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; }
/* Trenner: im Markup stehen Leerzeichen um die Punkte → die Zeile kann
   umbrechen (ohne Leerzeichen war sie eine ~800 px lange, unumbrechbare
   Kette und verursachte horizontalen Überlauf auf schmalen Screens) */
.footer-cities .sep { color: rgba(201, 168, 76, 0.5); margin: 0 2px; }

.refs-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin: 22px 0 0; }

/* Kundenstimmen-Kopf: gesperrte Überschrift + echte Google-Gesamtwertung */
.refs-head { text-align: center; margin: 0 0 34px; }
.refs-head .spaced-heading { margin-bottom: 0.55em; }
.refs-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.07);
  color: var(--text);
  font-size: 0.95rem;
}
.refs-rating strong { color: var(--white); font-size: 1.05em; }
.refs-rating .sep { color: rgba(201, 168, 76, 0.6); }

/* --------------------------------------------------------------------------
   Modellseiten (Retro/Smart/Fine): Layout-Paar + Zubehör-Pillen + Abschluss-CTA
   -------------------------------------------------------------------------- */
/* Standard- und Individuelles Drucklayout NEBENEINANDER (Punkt M) */
.layout-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
  text-align: left;
}
.layout-pair .addon-card { display: flex; flex-direction: column; }
.layout-pair .addon-card .addon-foot { margin-top: auto; padding-top: 14px; }
.layout-pair .addon-card .addon-foot a { color: var(--gold-light); font-weight: 700; }
.layout-pair .addon-card .addon-foot a:hover { color: var(--gold-bright); }
.layout-pair .addon-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.08);
}
@media (max-width: 700px) {
  .layout-pair { grid-template-columns: 1fr; }
}

/* Zubehör-Pillen (Punkt K): kurzer Satz + Chip-Reihe; Chips verlinken auf
   die Zubehör-Unterseiten */
.addon-intro { max-width: 640px; margin: 34px auto 0; }
.addon-chips { margin: 16px 0 0; }
.addon-chips a.chip {
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.addon-chips a.chip:hover,
.addon-chips a.chip:focus-visible {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}
.addon-chips .chip { white-space: normal; text-align: center; }

/* Audio-Gästebuch als einzelne, schmale Karte unterhalb der Pillen */
.addon-single { max-width: 720px; margin: 30px auto 0; text-align: left; }
