/* ==========================================================
   GLANZWERK — Zusätzliche Stile (Multipage, Chatbot, Slider)
   Erweitert glanzwerk.css (Tailwind-Build).
   Wir vermeiden hier neue Tailwind-Utilities und schreiben
   alles als reine Custom-CSS, damit nichts kompiliert werden muss.
========================================================== */

:root {
  --gw-cream: #f5f0e6;
  --gw-cream-warm: #ede4d3;
  --gw-cream-deep: #e6dcc6;
  --gw-taupe: #9a8b7a;
  --gw-taupe-mid: #7a6a58;
  --gw-taupe-dark: #5c4f40;
  --gw-taupe-deep: #2a2520;
  --gw-taupe-950: #18140f;
  --gw-gold: #c9a876;
  --gw-gold-bright: #d9b985;
  --gw-shadow-soft: 0 10px 40px -12px rgba(42, 37, 32, 0.18);
  --gw-shadow-deep: 0 25px 60px -25px rgba(42, 37, 32, 0.45);
  --gw-radius: 18px;
  --gw-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ===== Globale Verbesserungen ===== */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--gw-cream); overflow-x: hidden; }

img { max-width: 100%; height: auto; }

/* ===== Hero mit Bild im Hintergrund ===== */
.hero-photo {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(95deg, rgba(18,14,10,0.92) 0%, rgba(18,14,10,0.82) 28%, rgba(18,14,10,0.55) 50%, rgba(18,14,10,0.25) 75%, rgba(18,14,10,0.15) 100%),
    image-set(
      url('hero-porsche-wide.webp') type('image/webp'),
      url('hero-porsche-wide.jpg') type('image/jpeg')
    ) center/cover no-repeat;
  /* Fallback */
  background-image:
    linear-gradient(95deg, rgba(18,14,10,0.92) 0%, rgba(18,14,10,0.82) 28%, rgba(18,14,10,0.55) 50%, rgba(18,14,10,0.25) 75%, rgba(18,14,10,0.15) 100%),
    url('hero-porsche-wide.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--gw-cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 8% 22%, rgba(201, 168, 118, 0.22), transparent 60%),
    radial-gradient(700px 400px at 92% 88%, rgba(245, 240, 230, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-photo > * { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .hero-photo {
    background-image:
      linear-gradient(180deg, rgba(18,14,10,0.65) 0%, rgba(18,14,10,0.55) 30%, rgba(18,14,10,0.95) 100%),
      url('hero-porsche-mobile.jpg');
    background-size: cover;
    background-position: center;
    min-height: 88vh;
  }
}

/* ===== Video-Showcase (auf Startseite unter dem Hero) ===== */
.video-showcase {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--gw-taupe-deep) 0%, #1a1612 100%);
  color: var(--gw-cream);
  overflow: hidden;
}
.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(201, 168, 118, 0.08), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(245, 240, 230, 0.04), transparent 60%);
  pointer-events: none;
}
.video-showcase-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}
.video-showcase-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.video-showcase-head .eyebrow {
  color: var(--gw-gold);
}
.video-showcase-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  margin: 0.6rem 0 1rem;
  color: var(--gw-cream);
}
.video-showcase-head h2 em {
  font-style: italic;
  color: var(--gw-gold);
}
.video-showcase-head p {
  color: rgba(245, 240, 230, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.video-frame {
  position: relative;
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 118, 0.15);
  background: #000;
  aspect-ratio: 1280 / 864;
  /* Fallback: Poster-Bild als Hintergrund — wird angezeigt, falls .webm/.mp4 fehlen */
  background-image:
    image-set(
      url('glanzwerk-showcase-poster.webp') type('image/webp'),
      url('glanzwerk-showcase-poster.jpg') type('image/jpeg')
    );
  background-size: cover;
  background-position: center;
}
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Wenn das <video>-Element auf den <img>-Fallback zurückfällt: bildschirmfüllend */
.video-frame video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame::after {
  /* zarter Vignette-Frame über dem Video für premium-Look */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  border-radius: inherit;
}
.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.video-caption-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 240, 230, 0.65);
  font-size: 0.85rem;
}
.video-caption-info svg {
  color: var(--gw-gold);
  flex-shrink: 0;
}
.video-caption a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gw-cream);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(245, 240, 230, 0.25);
  border-radius: 999px;
  transition: all 0.3s var(--gw-ease);
}
.video-caption a:hover {
  background: var(--gw-gold);
  color: var(--gw-taupe-deep);
  border-color: var(--gw-gold);
}

@media (max-width: 600px) {
  .video-showcase { padding: 3.5rem 1rem; }
  .video-showcase-head { margin-bottom: 1.75rem; }
  .video-caption { flex-direction: column; align-items: flex-start; }
}

/* Sub-Hero (für Unterseiten) — heller, kompakter */
.subhero {
  position: relative;
  padding: 8.5rem 1.5rem 4.5rem;
  background: linear-gradient(180deg, var(--gw-taupe-deep) 0%, var(--gw-taupe-dark) 100%);
  color: var(--gw-cream);
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(201,168,118,0.20), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(245,240,230,0.06), transparent 60%);
  pointer-events: none;
}
.subhero-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}
.subhero h1 {
  font-family: 'Fraunces', Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 1rem 0 0.5rem;
}
.subhero h1 em {
  color: var(--gw-gold);
  font-style: italic;
}
.subhero .breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.65);
  margin-bottom: 0.5rem;
}
.subhero .breadcrumbs a {
  color: rgba(245, 240, 230, 0.85);
  text-decoration: none;
  transition: color 0.3s var(--gw-ease);
}
.subhero .breadcrumbs a:hover { color: var(--gw-gold); }
.subhero .breadcrumbs span { margin: 0 0.5rem; opacity: 0.5; }
.subhero .lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.85);
}

/* ===== Service-Tile (verwendet Bilder) ===== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow-soft);
  transition: transform 0.5s var(--gw-ease), box-shadow 0.5s var(--gw-ease);
  text-decoration: none;
  color: inherit;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--gw-shadow-deep); }
.tile-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gw-taupe-deep);
}
.tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--gw-ease), filter 0.7s var(--gw-ease);
}
.tile:hover .tile-img img { transform: scale(1.06); filter: brightness(1.05); }
.tile-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,20,15,0.6) 100%);
  pointer-events: none;
}
.tile-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(245, 240, 230, 0.95);
  color: var(--gw-taupe-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.tile-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tile-body h3 {
  font-family: 'Fraunces', Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gw-taupe-deep);
  margin: 0 0 0.5rem;
}
.tile-body p {
  color: var(--gw-taupe-dark);
  line-height: 1.6;
  font-size: 0.92rem;
  margin: 0 0 1rem;
  flex: 1;
}
.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gw-taupe-deep);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(154, 139, 122, 0.2);
  transition: color 0.3s var(--gw-ease), gap 0.3s var(--gw-ease);
}
.tile:hover .tile-cta { color: var(--gw-taupe-mid); gap: 0.7rem; }
.tile-cta svg { transition: transform 0.3s var(--gw-ease); }
.tile:hover .tile-cta svg { transform: translateX(3px); }

/* ===== Section: heller Inhaltsbereich ===== */
.bright-section {
  background: linear-gradient(180deg, var(--gw-cream) 0%, #fdfaf2 100%);
  padding: 5rem 1.5rem;
}
.bright-section.warm {
  background: linear-gradient(180deg, var(--gw-cream-warm) 0%, var(--gw-cream) 100%);
}
.dark-section {
  background: linear-gradient(180deg, var(--gw-taupe-deep) 0%, var(--gw-taupe-950) 100%);
  color: var(--gw-cream);
  padding: 5rem 1.5rem;
}
.section-inner { max-width: 80rem; margin: 0 auto; }

/* ===== Vorher-Nachher Slider (clip-path basiert, keine Bild-Verzerrung) ===== */
.ba-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow-deep);
  background: var(--gw-taupe-deep);
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y; /* erlaubt vertikales Scrollen, blockiert horizontales pan für drag */
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Schneidet das Vorher-Bild rechts ab — Vorher-Bild bleibt voll groß und unverzerrt */
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-slider .ba-before picture,
.ba-slider .ba-before img {
  /* Bild im Vorher-Wrapper bleibt full size, wird nur durch clip-path geschnitten */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-slider .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--gw-cream);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}
.ba-slider .ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gw-cream);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.4) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.15s var(--gw-ease);
}
.ba-slider:active .ba-handle {
  transform: translate(-50%, -50%) scale(1.08);
}
.ba-slider .ba-handle svg { color: var(--gw-taupe-deep); }
.ba-slider .ba-label {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 0.95rem;
  background: rgba(24, 20, 15, 0.78);
  color: var(--gw-cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 5;
  pointer-events: none;
}
.ba-slider .ba-label-before { left: 1rem; }
.ba-slider .ba-label-after { right: 1rem; }

/* ===== Pflegetipp / Info-Card ===== */
.info-card {
  background: #fff;
  border: 1px solid rgba(154, 139, 122, 0.2);
  border-radius: var(--gw-radius);
  padding: 2rem;
  transition: transform 0.4s var(--gw-ease), box-shadow 0.4s var(--gw-ease);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gw-shadow-soft);
  border-color: var(--gw-gold);
}
.info-card .ic-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gw-gold) 0%, #b89461 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gw-cream);
  margin-bottom: 1rem;
}
.info-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
  color: var(--gw-taupe-deep);
}
.info-card p {
  color: var(--gw-taupe-dark);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== Extra-Cards (Zusatzleistungen, zentriert mit Icons) ===== */
.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}
/* 3-Spalten-Variante für 6-Karten-Layouts (z.B. B2B-Vorteile) */
.extra-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 56rem;
}
@media (max-width: 1000px) {
  .extra-grid { grid-template-columns: repeat(3, 1fr); max-width: 48rem; }
}
@media (max-width: 720px) {
  .extra-grid { grid-template-columns: repeat(2, 1fr); max-width: 32rem; gap: 1rem; }
}
@media (max-width: 480px) {
  .extra-grid { grid-template-columns: 1fr; max-width: 22rem; }
}

.extra-card {
  position: relative;
  text-align: center;
  padding: 2.25rem 1.25rem 2rem;
  background: #fff;
  border: 1px solid rgba(154, 139, 122, 0.18);
  border-radius: 16px;
  transition:
    transform 0.45s var(--gw-ease),
    box-shadow 0.45s var(--gw-ease),
    border-color 0.45s var(--gw-ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
/* Subtile gold-Akzent-Linie unten — wächst beim Hover von links */
.extra-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gw-gold) 0%, #b89461 100%);
  transition: width 0.5s var(--gw-ease);
}
.extra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px -12px rgba(42, 37, 32, 0.18);
  border-color: rgba(201, 168, 118, 0.4);
}
.extra-card:hover::after {
  width: 100%;
}
.extra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gw-cream-warm) 0%, var(--gw-cream-deep) 100%);
  color: var(--gw-taupe-deep);
  transition:
    transform 0.5s var(--gw-ease),
    background 0.5s var(--gw-ease),
    color 0.5s var(--gw-ease),
    box-shadow 0.5s var(--gw-ease);
}
.extra-card:hover .extra-icon {
  background: linear-gradient(135deg, var(--gw-gold) 0%, #b89461 100%);
  color: var(--gw-cream);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 22px -8px rgba(201, 168, 118, 0.5);
}
.extra-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--gw-taupe-deep);
  line-height: 1.3;
  letter-spacing: 0.005em;
}
.extra-card p {
  font-size: 0.85rem;
  color: var(--gw-taupe-mid);
  margin: 0 0 1rem;
  line-height: 1.5;
  flex-grow: 1;
}
.extra-card .extra-price {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(154, 139, 122, 0.18);
  width: 100%;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gw-taupe-deep);
  letter-spacing: 0.01em;
  transition: color 0.4s var(--gw-ease);
}
.extra-card:hover .extra-price {
  color: var(--gw-gold);
}

/* Stagger-Animation: jede Karte erscheint mit kleinem Delay */
.extra-card.reveal-up.in {
  /* Keyframe-Animation überschreibt die globale reveal-up transition,
     damit der Stagger-Delay den Hover-Effekt nicht beeinträchtigt */
  animation: gw-extra-reveal 0.7s var(--gw-ease) calc(var(--i, 0) * 70ms) both;
}
@keyframes gw-extra-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FAQ Accordion ===== */
.faq-list { max-width: 56rem; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(154, 139, 122, 0.2);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s var(--gw-ease), box-shadow 0.3s var(--gw-ease);
}
.faq-item[open] {
  border-color: var(--gw-gold);
  box-shadow: var(--gw-shadow-soft);
}
.faq-q {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: var(--gw-taupe-deep);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--gw-taupe-mid);
  border-bottom: 2px solid var(--gw-taupe-mid);
  transform: rotate(45deg);
  transition: transform 0.3s var(--gw-ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  padding: 0 1.5rem 1.25rem;
  color: var(--gw-taupe-dark);
  line-height: 1.7;
  font-size: 0.96rem;
}
.faq-a p { margin: 0 0 0.7rem; }
.faq-a p:last-child { margin: 0; }

/* ===== Process Steps mit Verbindung ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process-step {
  background: #fff;
  border-radius: var(--gw-radius);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(154, 139, 122, 0.15);
  transition: transform 0.4s var(--gw-ease);
}
.process-step:hover { transform: translateY(-4px); }
.process-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gw-gold);
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  color: var(--gw-taupe-deep);
  margin: 0 0 0.6rem;
}
.process-step p {
  color: var(--gw-taupe-dark);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== CTA-Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gw-taupe-deep) 0%, var(--gw-taupe-dark) 100%);
  border-radius: var(--gw-radius);
  padding: 3rem 2rem;
  color: var(--gw-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 80% 20%, rgba(201,168,118,0.25), transparent 60%),
    radial-gradient(400px 200px at 20% 80%, rgba(245,240,230,0.10), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}
.cta-banner h2 em {
  color: var(--gw-gold);
  font-style: italic;
}
.cta-banner p {
  max-width: 38rem;
  margin: 0 auto 1.8rem;
  color: rgba(245, 240, 230, 0.85);
  line-height: 1.65;
}
.cta-buttons {
  display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
}
.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.9rem;
  background: var(--gw-cream);
  color: var(--gw-taupe-deep);
  border: 1.5px solid var(--gw-cream);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 6px 18px -4px rgba(0, 0, 0, 0.25),
    0 2px 6px -1px rgba(0, 0, 0, 0.15);
  transition:
    background 0.35s var(--gw-ease),
    color 0.35s var(--gw-ease),
    border-color 0.35s var(--gw-ease),
    transform 0.35s var(--gw-ease),
    box-shadow 0.35s var(--gw-ease);
}
.btn-cream:hover,
.btn-cream:focus-visible {
  background: var(--gw-gold);
  color: var(--gw-cream);
  border-color: var(--gw-gold);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px -6px rgba(201, 168, 118, 0.55),
    0 0 0 5px rgba(201, 168, 118, 0.18);
  outline: none;
}
.btn-cream:active {
  transform: translateY(0);
  box-shadow:
    0 4px 12px -2px rgba(201, 168, 118, 0.4),
    0 0 0 5px rgba(201, 168, 118, 0.18);
}
.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.9rem;
  background: rgba(18, 14, 10, 0.35);
  color: var(--gw-cream);
  border: 1.5px solid rgba(245, 240, 230, 0.55);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.35s var(--gw-ease);
}
.btn-outline-cream:hover,
.btn-outline-cream:focus-visible {
  background: rgba(245, 240, 230, 0.12);
  border-color: var(--gw-cream);
  color: var(--gw-cream);
  transform: translateY(-2px);
  outline: none;
}

/* ===== Reviews / Google-Bewertungen ===== */
.reviews-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--gw-cream-warm) 0%, var(--gw-cream) 100%);
}
.reviews-section[data-placeholder="true"]::before {
  content: "⚠ DEMO-Bewertungen — bitte vor dem Live-Gang durch echte Google-Reviews ersetzen (siehe README)";
  display: block;
  max-width: 56rem;
  margin: 0 auto 2rem;
  padding: 0.85rem 1.25rem;
  background: #fff8e1;
  border: 1px solid #f0c000;
  border-radius: 8px;
  color: #6b4f00;
  font-size: 0.82rem;
  text-align: center;
  font-weight: 500;
}
.reviews-inner {
  max-width: 64rem;
  margin: 0 auto;
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid rgba(154, 139, 122, 0.18);
  border-radius: 16px;
  max-width: 38rem;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.05);
}
.reviews-google-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.reviews-google-logo span:nth-child(1) { color: #4285F4; }
.reviews-google-logo span:nth-child(2) { color: #EA4335; }
.reviews-google-logo span:nth-child(3) { color: #FBBC05; }
.reviews-google-logo span:nth-child(4) { color: #4285F4; }
.reviews-google-logo span:nth-child(5) { color: #34A853; }
.reviews-google-logo span:nth-child(6) { color: #EA4335; }
.reviews-aggregate-stars {
  color: #f4b400;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.reviews-aggregate-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.reviews-aggregate-score {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gw-taupe-deep);
  line-height: 1;
}
.reviews-aggregate-count {
  font-size: 0.78rem;
  color: var(--gw-taupe-mid);
  letter-spacing: 0.02em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Single-Featured-Layout: nur eine prominente Karte, zentriert */
.reviews-grid.reviews-grid-featured {
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .reviews-grid.reviews-grid-featured { grid-template-columns: 1fr; }
}
.reviews-grid-featured .review-card {
  padding: 2rem 2.25rem;
}
.reviews-grid-featured .review-text {
  font-size: 1.02rem;
  line-height: 1.7;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(154, 139, 122, 0.18);
  border-radius: 14px;
  padding: 1.5rem;
  transition:
    transform 0.4s var(--gw-ease),
    box-shadow 0.4s var(--gw-ease),
    border-color 0.4s var(--gw-ease);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 118, 0.35);
  box-shadow: 0 14px 28px -10px rgba(42, 37, 32, 0.12);
}
.review-stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.review-text {
  color: var(--gw-taupe-dark);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
.review-text::before { content: "\201E"; color: var(--gw-gold); margin-right: 0.1rem; }
.review-text::after { content: "\201C"; color: var(--gw-gold); margin-left: 0.1rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(154, 139, 122, 0.14);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gw-gold) 0%, #b89461 100%);
  color: var(--gw-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}
.review-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.review-author-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--gw-taupe-deep);
}
.review-author-meta {
  font-size: 0.75rem;
  color: var(--gw-taupe-mid);
}
.reviews-cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.reviews-cta-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.35s var(--gw-ease);
}
.reviews-cta-primary {
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
  border: 1.5px solid var(--gw-taupe-deep);
}
.reviews-cta-primary:hover {
  background: var(--gw-gold);
  color: var(--gw-cream);
  border-color: var(--gw-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(201, 168, 118, 0.5);
}
.reviews-cta-secondary {
  background: transparent;
  color: var(--gw-taupe-deep);
  border: 1.5px solid rgba(154, 139, 122, 0.35);
}
.reviews-cta-secondary:hover {
  background: var(--gw-cream-warm);
  border-color: var(--gw-taupe-deep);
}

/* ===== Kontakt-Karte (OpenStreetMap-Embed, DSGVO-konform) ===== */
.contact-map {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(154, 139, 122, 0.2);
  box-shadow: 0 12px 28px -10px rgba(42, 37, 32, 0.15);
  background: #f0e9d8;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
@media (max-width: 600px) {
  .contact-map iframe { height: 300px; }
}

/* ===== Frühlings-Special-Banner ===== */
.spring-section {
  padding: 4rem 1.5rem;
  background: var(--gw-cream);
}
.spring-banner {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #c9a876 0%, #a88557 60%, #927447 100%);
  color: var(--gw-cream);
  box-shadow:
    0 10px 30px -10px rgba(146, 116, 71, 0.3),
    0 4px 10px -4px rgba(146, 116, 71, 0.2);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(245, 240, 230, 0.18);
}
.spring-banner:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 50px -10px rgba(146, 116, 71, 0.4),
    0 8px 20px -6px rgba(146, 116, 71, 0.25);
}
@media (min-width: 768px) {
  .spring-banner { grid-template-columns: 1.55fr 1fr; }
}
.spring-banner-text {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .spring-banner-text { padding: 3rem 3rem 3rem 3.5rem; }
}
.spring-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.4rem 0.85rem;
  background: rgba(245, 240, 230, 0.18);
  border: 1px solid rgba(245, 240, 230, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gw-cream);
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.spring-flag::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gw-cream);
  animation: spring-pulse 2s ease-in-out infinite;
}
@keyframes spring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.spring-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: var(--gw-cream);
  letter-spacing: -0.01em;
}
.spring-title em {
  font-style: italic;
  color: #fff5e0;
  display: block;
}
.spring-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.92);
  margin: 0 0 1.5rem;
  max-width: 32rem;
}
.spring-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}
.spring-price-current {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gw-cream);
  line-height: 1;
}
.spring-price-old {
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.65);
  text-decoration: line-through;
}
.spring-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.85rem 1.5rem;
  background: var(--gw-cream);
  color: var(--gw-taupe-deep);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.35s ease;
  pointer-events: none;
}
.spring-banner:hover .spring-cta {
  background: #fff;
  transform: translateX(3px);
}
.spring-banner-image {
  position: relative;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .spring-banner-image { min-height: 100%; }
}
.spring-banner-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168, 133, 87, 0.35) 0%, rgba(168, 133, 87, 0) 60%);
}
@media (min-width: 768px) {
  .spring-banner-image::before {
    background: linear-gradient(90deg, rgba(168, 133, 87, 0.5) 0%, rgba(168, 133, 87, 0) 30%);
  }
}
/* Dekorative Wave als Spring-Akzent */
.spring-banner::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 224, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ===== Modal-Lightbox für Frühlings-Special ===== */
.spring-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.spring-modal.is-open {
  display: flex;
  opacity: 1;
  animation: spring-modal-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes spring-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.spring-modal-card {
  position: relative;
  max-width: 36rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--gw-cream);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  animation: spring-modal-card-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 600px) {
  .spring-modal-card { padding: 3rem 3rem 2.5rem; }
}
@keyframes spring-modal-card-in {
  0% { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.spring-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(154, 139, 122, 0.25);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gw-taupe-mid);
  transition: all 0.3s ease;
}
.spring-modal-close:hover {
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
  border-color: var(--gw-taupe-deep);
  transform: rotate(90deg);
}
.spring-modal-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  background: rgba(201, 168, 118, 0.15);
  border: 1px solid rgba(201, 168, 118, 0.35);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #927447;
  margin-bottom: 1rem;
}
.spring-modal-flag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gw-gold);
}
.spring-modal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--gw-taupe-deep);
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.spring-modal-title em {
  font-style: italic;
  color: var(--gw-gold);
}
.spring-modal-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gw-taupe-dark);
  margin: 0 0 1.75rem;
}
.spring-modal-image {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin: 0 0 1.75rem;
  border: 1px solid rgba(154, 139, 122, 0.15);
}
.spring-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.spring-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--gw-taupe-dark);
  line-height: 1.55;
}
.spring-features li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--gw-gold) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/14px no-repeat;
}
.spring-modal-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(201, 168, 118, 0.1);
  border: 1px solid rgba(201, 168, 118, 0.25);
  border-radius: 14px;
  margin: 0 0 1.5rem;
}
.spring-modal-price-label {
  font-size: 0.85rem;
  color: var(--gw-taupe-mid);
  letter-spacing: 0.04em;
}
.spring-modal-price-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--gw-taupe-deep);
  line-height: 1;
}
.spring-modal-price-old {
  font-size: 0.92rem;
  color: var(--gw-taupe-mid);
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.spring-modal-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media (min-width: 480px) {
  .spring-modal-cta-row { flex-direction: row; }
}
.spring-modal-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.35s ease;
}
.spring-modal-cta-primary {
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
}
.spring-modal-cta-primary:hover {
  background: var(--gw-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(201, 168, 118, 0.5);
}
.spring-modal-cta-secondary {
  background: transparent;
  color: var(--gw-taupe-deep);
  border: 1.5px solid rgba(154, 139, 122, 0.3);
}
.spring-modal-cta-secondary:hover {
  background: var(--gw-cream-warm);
  border-color: var(--gw-taupe-deep);
}
.spring-modal-fineprint {
  font-size: 0.74rem;
  color: var(--gw-taupe-mid);
  margin: 1.25rem 0 0;
  text-align: center;
  line-height: 1.5;
}

/* Stagger-Animation für die Review-Karten */
.review-card.reveal-up.in {
  animation: gw-extra-reveal 0.7s var(--gw-ease) calc(var(--i, 0) * 90ms) both;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--gw-ease), transform 0.8s var(--gw-ease);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* ===== Chatbot ===== */
.gw-chat-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gw-gold) 0%, #b89461 100%);
  color: var(--gw-taupe-deep);
  border: none;
  box-shadow: 0 10px 30px -8px rgba(201,168,118,0.5), 0 4px 12px rgba(42,37,32,0.25);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  transition: transform 0.4s var(--gw-ease), box-shadow 0.4s var(--gw-ease);
  animation: gw-pulse 3s ease-in-out infinite;
}
.gw-chat-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 35px -8px rgba(201,168,118,0.65), 0 6px 16px rgba(42,37,32,0.3);
}
@keyframes gw-pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(201,168,118,0.5), 0 4px 12px rgba(42,37,32,0.25), 0 0 0 0 rgba(201,168,118,0.5); }
  50% { box-shadow: 0 10px 30px -8px rgba(201,168,118,0.5), 0 4px 12px rgba(42,37,32,0.25), 0 0 0 12px rgba(201,168,118,0); }
}
.gw-chat-fab .gw-fab-close { display: none; }
.gw-chat-open .gw-chat-fab .gw-fab-open { display: none; }
.gw-chat-open .gw-chat-fab .gw-fab-close { display: block; }

.gw-chat-panel {
  position: fixed;
  bottom: 6.5rem;
  right: 1.5rem;
  width: 360px;
  max-width: calc(100vw - 2rem);
  max-height: 70vh;
  background: var(--gw-cream);
  border-radius: 18px;
  box-shadow: 0 25px 60px -15px rgba(42, 37, 32, 0.45), 0 0 0 1px rgba(154,139,122,0.15);
  z-index: 59;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--gw-ease), opacity 0.4s var(--gw-ease);
}
.gw-chat-open .gw-chat-panel {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.gw-chat-header {
  background: linear-gradient(135deg, var(--gw-taupe-deep) 0%, var(--gw-taupe-dark) 100%);
  color: var(--gw-cream);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gw-chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gw-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gw-taupe-deep);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  flex-shrink: 0;
}
.gw-chat-title { flex: 1; }
.gw-chat-title strong { display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 1rem; }
.gw-chat-title span { font-size: 0.72rem; opacity: 0.7; display: flex; align-items: center; gap: 0.35rem; }
.gw-chat-title span::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%; background: #4ade80;
  display: inline-block;
}
.gw-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gw-taupe) transparent;
}
.gw-chat-body::-webkit-scrollbar { width: 6px; }
.gw-chat-body::-webkit-scrollbar-thumb { background: rgba(154,139,122,0.5); border-radius: 3px; }
.gw-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: gw-msg-in 0.4s var(--gw-ease);
}
@keyframes gw-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.gw-msg-bot {
  background: #fff;
  border: 1px solid rgba(154,139,122,0.2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--gw-taupe-deep);
}
.gw-msg-bot a { color: var(--gw-taupe-mid); text-decoration: underline; }
.gw-msg-user {
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.gw-chat-quick {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0 0.5rem;
}
.gw-quick-btn {
  padding: 0.45rem 0.85rem;
  background: rgba(154,139,122,0.1);
  border: 1px solid rgba(154,139,122,0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--gw-taupe-deep);
  cursor: pointer;
  transition: all 0.25s var(--gw-ease);
}
.gw-quick-btn:hover {
  background: var(--gw-gold);
  border-color: var(--gw-gold);
  color: var(--gw-taupe-deep);
}
.gw-chat-input {
  display: flex;
  padding: 0.75rem;
  gap: 0.5rem;
  border-top: 1px solid rgba(154,139,122,0.2);
  background: #fff;
}
.gw-chat-input input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(154,139,122,0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  background: var(--gw-cream);
  outline: none;
  transition: border-color 0.3s var(--gw-ease);
}
.gw-chat-input input:focus { border-color: var(--gw-taupe-deep); }
.gw-chat-input button {
  padding: 0.65rem 1rem;
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex; align-items: center;
  transition: background 0.3s var(--gw-ease);
}
.gw-chat-input button:hover { background: var(--gw-gold); color: var(--gw-taupe-deep); }
.gw-chat-footer {
  font-size: 0.68rem;
  color: var(--gw-taupe-mid);
  text-align: center;
  padding: 0.4rem;
  border-top: 1px solid rgba(154,139,122,0.15);
  background: var(--gw-cream-warm);
}
.gw-chat-footer a { color: var(--gw-taupe-dark); }

/* ===== Cookie / Datenschutz Hinweis ===== */
.gw-privacy-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 70;
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
  padding: 1rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: calc(100vw - 2rem);
  width: 480px;
  font-size: 0.85rem;
  transition: transform 0.6s var(--gw-ease);
}
.gw-privacy-banner.show { transform: translateX(-50%) translateY(0); }
.gw-privacy-banner p { margin: 0; flex: 1; line-height: 1.5; }
.gw-privacy-banner p strong { color: var(--gw-gold); }
.gw-privacy-banner a { color: var(--gw-cream); text-decoration: underline; }
.gw-privacy-banner button {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: var(--gw-gold);
  color: var(--gw-taupe-deep);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s var(--gw-ease);
}
.gw-privacy-banner button:hover { background: var(--gw-cream); }
@media (max-width: 600px) {
  .gw-privacy-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ===== Mobile Sticky CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(154,139,122,0.25);
  padding: 0.6rem 0.8rem;
  z-index: 50;
  gap: 0.5rem;
  box-shadow: 0 -10px 25px -10px rgba(42,37,32,0.15);
}
.mobile-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s var(--gw-ease);
}
.mobile-sticky-cta .msc-call {
  background: var(--gw-gold);
  color: var(--gw-taupe-deep);
}
.mobile-sticky-cta .msc-form {
  background: var(--gw-taupe-deep);
  color: var(--gw-cream);
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 4rem; }
  .gw-chat-fab { bottom: 5rem; }
  .gw-chat-panel { bottom: 10rem; }
}

/* ===== Galerie Grid — 4 große Kacheln in 2x2 ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.gallery-item {
  background: #fff;
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow-soft);
}
.gallery-item-info {
  padding: 1.25rem 1.5rem 1.5rem;
  background: #fff;
}
.gallery-item-info h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
  color: var(--gw-taupe-deep);
}
.gallery-item-info p {
  font-size: 0.92rem;
  color: var(--gw-taupe-mid);
  margin: 0;
  line-height: 1.55;
}

/* ===== Counter / Stat ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(154,139,122,0.2);
}
.stat .stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 2.6rem;
  color: var(--gw-taupe-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.stat .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gw-taupe-mid);
}

/* ===== Page Header Helpers ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gw-taupe-mid);
  margin-bottom: 1rem;
}
.dark-section .eyebrow { color: var(--gw-gold); }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--gw-taupe-deep);
  margin: 0 0 1.2rem;
}
.dark-section .section-title { color: var(--gw-cream); }
.section-title em {
  color: var(--gw-taupe-mid);
  font-style: italic;
}
.dark-section .section-title em { color: var(--gw-gold); }
.section-lead {
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gw-taupe-dark);
}
.dark-section .section-lead { color: rgba(245,240,230,0.78); }

/* ===== Image Service Card (gross) ===== */
.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.service-feature.reverse { grid-template-columns: 1fr 1.1fr; }
.service-feature.reverse .sf-img { order: 2; }
.service-feature.reverse .sf-text { order: 1; }
.sf-img {
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow-deep);
  position: relative;
}
.sf-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--gw-ease);
}
.sf-img:hover img { transform: scale(1.04); }
.sf-text h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--gw-taupe-deep);
  margin: 0.6rem 0 1rem;
}
.sf-text h3 em {
  color: var(--gw-taupe-mid);
  font-style: italic;
}
.sf-text p {
  color: var(--gw-taupe-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sf-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.sf-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gw-taupe-dark);
  border-bottom: 1px solid rgba(154,139,122,0.15);
}
.sf-list li:last-child { border-bottom: none; }
.sf-list li::before {
  content: "✓";
  color: var(--gw-gold);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service-feature, .service-feature.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-feature.reverse .sf-img { order: 0; }
  .service-feature.reverse .sf-text { order: 1; }
}

/* ===== Print-Friendly ===== */
@media print {
  .gw-chat-fab, .gw-chat-panel, .gw-privacy-banner, .mobile-sticky-cta { display: none !important; }
}
