/* ============================================================= */
/* DESIGN TOKENS — Eigene Marke "Ihre Schoene Küche"              */
/* Warme Handwerks-/Premium-Küchen-Ästhetik                     */
/* ============================================================= */
:root {
  /* Farben */
  --cream:        #F5EFE4;   /* warmes Off-White, Haupt-Hintergrund */
  --cream-deep:   #EBE2D2;   /* leicht dunklerer Sektions-Ton */
  --paper:        #FBF8F1;   /* Karten / helle Flächen */
  --espresso:     #211B14;   /* Warmes Fast-Schwarz, Text */
  --espresso-soft:#453B2E;   /* gedämpfter Text */
  --stone:        #7C7160;   /* Sekundär-Text, Labels */
  --green:        #009939;   /* Logo-Grün (exakt aus dem SVG) – Leitfarbe */
  --green-cta:    #0B7A33;   /* dunkler: Buttons & kleiner Text auf Hell (WCAG AA) */
  --green-deep:   #06611F;   /* Hover-States */
  --gold:         #FBBC04;   /* Google-Sterne-Gold */
  --terracotta:   #C0613A;   /* warmer Zweitakzent (Highlights, Zahlen) */
  --terracotta-dk:#A34E2C;   /* Terrakotta Hover */
  --brass:        #A9803F;   /* edler Gold-/Messing-Detailakzent */
  --olive:        #22402B;   /* tiefes Waldgrün (dunkle Marken-Sektion) */
  --line:         #DBCFBB;   /* Trennlinien auf Cream */

  /* Typo */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Struktur */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 18px 50px rgba(33, 27, 20, 0.10);
  --shadow-card: 0 30px 80px rgba(33, 27, 20, 0.14);
  --maxw: 1240px;
  --header-h: 76px;
}

/* ============================================================= */
/* RESET & BASE                                                  */
/* ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
  overflow-x: clip;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--green-cta); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-body); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 1.6rem + 4.4vw, 5rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
/* Highlight-Wort in der Zweitschrift (Fraunces), in Marken-Farbton */
h1 em, h2 em, h3 em, .hl { font-family: var(--font-display); font-weight: 500; font-style: italic; color: var(--terracotta); letter-spacing: -0.005em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.75rem); }
.section { padding-block: clamp(3.5rem, 7vw, 7.5rem); }
.eyebrow {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.8rem; color: var(--green-cta);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow { gap: 0; }
.lead { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: var(--espresso-soft); max-width: 60ch; }

/* Skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--espresso); color: var(--cream); padding: 0.75rem 1.25rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* ============================================================= */
/* BUTTONS                                                       */
/* ============================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.98rem; padding: 0.95rem 1.7rem; border-radius: 100px;
  min-height: 52px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center; letter-spacing: 0.01em; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--primary { background: var(--green-cta); color: #fff; box-shadow: 0 10px 26px rgba(23, 117, 59, 0.32); }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(15, 92, 45, 0.42); }
.btn--dark { background: var(--espresso); color: var(--cream); }
.btn--dark:hover { background: #100c07; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--espresso); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ============================================================= */
/* HEADER                                                        */
/* ============================================================= */
.header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(60px) saturate(140%); -webkit-backdrop-filter: blur(60px) saturate(140%);
  border-bottom: 1px solid rgba(219, 207, 187, 0.5); transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(255, 255, 255, 0.85); border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(33,27,20,0.08); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; line-height: 1; }
.brand__logo { height: 40px; width: auto; display: block; }
.footer .brand__logo { height: 46px; filter: brightness(0) invert(1); }
@media (max-width: 22.5em){ .brand__logo { height: 38px; } }
.brand__mark { width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--terracotta), var(--brass));
  display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-top: 2px; }

.nav { display: none; align-items: center; gap: clamp(1.05rem, 1.5vw, 1.9rem); }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--espresso-soft); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .25s ease; }
.nav a:hover { color: var(--espresso); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.lang { display: flex; align-items: center; gap: 2px; background: rgba(124,113,96,0.12); border-radius: 100px; padding: 3px; }
.lang button { font-weight: 700; font-size: 0.78rem; padding: 5px 10px; border-radius: 100px; color: var(--stone); min-height: 34px; }
.lang button.active { background: var(--paper); color: var(--espresso); box-shadow: 0 2px 8px rgba(33,27,20,0.10); }
.header__call { display: none; }
.header__cta { display: none; }

/* Burger */
.burger { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--espresso); }
.burger span { display: block; width: 20px; height: 2px; background: var(--cream); position: relative; transition: .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--cream); transition: .3s; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; background: var(--cream); z-index: 99;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); padding: 2rem clamp(1.15rem,5vw,2rem); display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link { font-family: var(--font-display); font-size: 1.7rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 1rem; }

/* ============================================================= */
/* HERO                                                          */
/* ============================================================= */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 6rem); overflow: hidden; }
.hero::before { /* atmosphärischer Verlauf */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(169,128,63,0.14), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(60,74,58,0.10), transparent 55%),
    var(--cream);
}
.hero__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.55rem; background: var(--paper); border: 1px solid var(--line);
  padding: 0.5rem 0.95rem 0.5rem 0.6rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: var(--espresso-soft); box-shadow: var(--shadow-soft); }
.hero__badge b { color: var(--green-cta); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #3fae6a; box-shadow: 0 0 0 4px rgba(63,174,106,0.18); }
.hero h1 { margin: 1.4rem 0 0; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__sub { margin-top: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero__trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; align-items: center; }
.hero__trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--espresso-soft); }
.hero__trust-item svg { width: 22px; height: 22px; color: var(--brass); flex: none; }

.hero__visual { position: relative; }
.hero__img { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); background: var(--cream-deep); }
.hero__float { position: absolute; background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 0.75rem; }
.hero__float--tl { top: 6%; left: 3%; }
.hero__float--br { bottom: 7%; right: 3%; flex-direction: column; align-items: flex-start; }
.hero__float .num { font-family: var(--font-display); font-size: 2rem; color: var(--terracotta); line-height: 1; }
.hero__float .lbl { font-size: 0.78rem; color: var(--stone); font-weight: 600; }
.hero__float .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }

/* ---------- Full-Bleed-Hero (Video-Hintergrund, zentriert) ---------- */
.hero.hero--full { position: relative; min-height: min(92vh, 880px); display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.hero.hero--full::before { display: none; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1); transform-origin: 50% 50%; will-change: transform; }
/* Linke Hälfte weichgezeichnet (nur Desktop); rechts bleibt scharf. Text sitzt auf der Blur-Seite. */
.hero__blur { position: absolute; inset: 0 50% 0 0; z-index: 1; display: none; pointer-events: none; background: linear-gradient(to right, rgba(20,14,9,0.72) 0%, rgba(20,14,9,0.5) 72%, rgba(20,14,9,0.22) 100%); }
/* Nur Bottom-Gradient: schwarz unten → transparent bis ~30% Höhe */
.hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 14%, transparent 30%), rgba(0,0,0,0.05); }
.hero__inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; max-width: 860px; padding-block: clamp(4rem, 10vw, 7rem) 1rem; color: var(--cream); }
.hero--full h1 { color: var(--cream); margin: 1.3rem 0 0; font-size: clamp(2rem, 1.3rem + 3.3vw, 3.85rem); text-shadow: 0 2px 22px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.45); }
.hero--full h1 em { color: #E58A5F; }
.hero--full .hero__sub { color: rgba(245,239,228,0.96); margin-top: 1.3rem; max-width: 60ch; font-weight: 500; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.hero--full .hero__badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.18); backdrop-filter: blur(120px); -webkit-backdrop-filter: blur(120px); }
.hero--full .hero__cta { justify-content: center; margin-top: 2rem; }
.hero--full .btn--ghost { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(0,0,0,0.18); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.hero--full .btn--ghost:hover { background: #fff; color: var(--espresso); }
/* Bottom-Bar: Trust + Rating unten mittig, über dem Gradient */
.hero__bottom { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; padding: 0 clamp(1.15rem,4vw,2.75rem) clamp(1.6rem,3.5vw,2.6rem); text-align: center; }
.hero__bottom .hero__trust { margin: 0; justify-content: center; gap: 1rem 1.8rem; }
.hero--full .hero__trust-item { color: var(--cream); text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.hero--full .hero__trust-item svg { color: var(--gold); }
/* Desktop: linke Hälfte blurred, gesamter Hero-Inhalt links */
@media (min-width: 64em) {
  .hero__blur { display: block; backdrop-filter: blur(13px) saturate(1.03); -webkit-backdrop-filter: blur(13px) saturate(1.03); }
  .hero--full .hero__inner { max-width: var(--maxw); align-items: flex-start; text-align: left; }
  .hero--full .hero__inner > * { max-width: min(32rem, 40vw); }
  .hero--full .hero__inner, .hero__bottom { padding-right: clamp(2rem, 7vw, 7rem); }
  .hero--full .hero__cta { justify-content: flex-start; }
  .hero__bottom { align-items: flex-start; text-align: left; }
  .hero__bottom .hero__trust { justify-content: flex-start; }
  .hero__rating { justify-content: flex-start; }
}
.hero__rating { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0.4rem 0.7rem; margin: 0; color: rgba(245,239,228,0.95); font-weight: 600; font-size: 0.92rem; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.hero__rating .stars { color: var(--gold); letter-spacing: 2px; }
.hero__rating strong { color: var(--cream); font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.hero__rating-sep { opacity: 0.45; }
@media (max-width: 64em) {
  .hero.hero--full { min-height: min(92vh, 720px); }
  /* Mobile: durchgehendes Overlay (Text ist hier zentriert und sitzt über der Bildmitte) */
  .hero__scrim { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.58) 30%, rgba(0,0,0,0.44) 62%, rgba(0,0,0,0.5) 100%); }
}

/* ============================================================= */
/* TRUST / USP BAR                                               */
/* ============================================================= */
.uspbar { background: var(--espresso); color: var(--cream); }
.uspbar .container { display: grid; grid-template-columns: 1fr; gap: 0.5rem 2rem; padding-block: clamp(1.6rem,3vw,2.2rem); }
.uspbar__item { display: flex; align-items: center; gap: 0.85rem; padding: 0.55rem 0; }
.uspbar__item svg { width: 30px; height: 30px; color: var(--brass); flex: none; }
.uspbar__item b { display: block; font-weight: 700; font-size: 0.98rem; }
.uspbar__item span { font-size: 0.84rem; color: rgba(245,239,228,0.66); }

/* ============================================================= */
/* SECTION HEAD                                                  */
/* ============================================================= */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.sec-head h2 { margin: 0.9rem 0 1rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
/* Referenzen: Headline auf Desktop in einer Zeile (Kopf-Div breiter, Fließtext bleibt schmal) */
@media (min-width: 64em) {
  .gallery .sec-head { max-width: min(54rem, 94%); }
  .gallery .sec-head h2 { white-space: nowrap; }
  .gallery .sec-head .lead { max-width: 58ch; margin-inline: auto; }
}

/* ============================================================= */
/* LEISTUNGEN — Bento                                            */
/* ============================================================= */
.services { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.service {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service__img { width: 100%; aspect-ratio: 16/10; background: var(--cream-deep); }
.service__body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.service__icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(32,163,81,0.12); color: var(--green-cta); display: grid; place-items: center; margin-bottom: 0.2rem; }
.service__icon svg { width: 26px; height: 26px; }
.service h3 { color: var(--espresso); }
.service ul { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.3rem; }
.service li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: var(--espresso-soft); }
.service li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--brass); }

/* ============================================================= */
/* WARUM / SPLIT                                                 */
/* ============================================================= */
.why { background: var(--cream-deep); }
.why__grid { display: grid; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.why__img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4/5; background: var(--cream); }
.why__img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform-origin: 50% 50%; }
.why__list { display: grid; gap: 1.35rem; margin-top: 1.8rem; }
.why__item { display: flex; gap: 1rem; }
.why__item .ico { width: 46px; height: 46px; border-radius: 12px; flex: none; background: var(--espresso); color: var(--brass); display: grid; place-items: center; }
.why__item .ico svg { width: 24px; height: 24px; }
.why__item h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.why__item p { font-size: 0.95rem; color: var(--espresso-soft); }

/* ============================================================= */
/* ABLAUF / PROZESS                                              */
/* ============================================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.1rem; counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.7rem 1.5rem; position: relative; }
.step__num { counter-increment: step; font-family: var(--font-display); font-size: 2.4rem; color: var(--brass); line-height: 1; }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.3rem; margin: 0.7rem 0 0.5rem; }
.step p { font-size: 0.94rem; color: var(--espresso-soft); }

/* ============================================================= */
/* MARKEN (Platzhalter)                                          */
/* ============================================================= */
.brands { background: var(--olive); color: var(--cream); }
.brands .sec-head h2 { color: var(--cream); }
.brands .lead { color: rgba(245,239,228,0.78); }
.marquee { overflow: hidden; margin-top: 2.2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; align-items: center; gap: clamp(2.5rem, 6vw, 5.5rem); width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.mlogo { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 1rem + 1.6vw, 2.15rem);
  color: #fff; opacity: 0.85; white-space: nowrap; letter-spacing: 0.01em; }
.mlogo img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }
.placeholder-note { display: inline-block; margin-top: 1.4rem; font-size: 0.82rem; background: rgba(245,239,228,0.12); color: var(--cream); padding: 0.4rem 0.85rem; border-radius: 100px; }

/* ============================================================= */
/* ÜBER UNS                                                      */
/* ============================================================= */
.about__grid { display: grid; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.about__img-wrap { position: relative; }
.about__img { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); background: var(--cream-deep); }
.about__sig { position: absolute; bottom: -18px; left: 24px; background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 0.9rem 1.2rem; }
.about__sig .name { font-family: var(--font-display); font-size: 1.25rem; }
.about__sig .role { font-size: 0.78rem; color: var(--stone); font-weight: 600; letter-spacing: 0.04em; }
.about__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.about__stat .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta); line-height: 1; }
.about__stat .t { font-size: 0.86rem; color: var(--espresso-soft); font-weight: 600; }

/* ============================================================= */
/* TESTIMONIALS (Platzhalter)                                    */
/* ============================================================= */
.testi { background: var(--cream-deep); }
.rating-badge { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.25rem 0.85rem; margin: 1.3rem auto 0.4rem; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); border-radius: 100px; padding: 0.7rem 1.4rem; }
.rating-badge__num { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--espresso); }
.rating-badge__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.rating-badge__meta { font-size: 0.9rem; font-weight: 600; color: var(--espresso-soft); }
.rating-badge img { height: 20px; width: auto; }
.testi__cta { display: flex; justify-content: center; margin-top: 2.2rem; }
.testi__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.testi__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.testi__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.testi__text { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--espresso); line-height: 1.5; }
.testi__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testi__ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--brass), var(--terracotta)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; }
.testi__name { font-weight: 700; font-size: 0.95rem; }
.testi__meta { font-size: 0.8rem; color: var(--stone); }

/* ============================================================= */
/* CTA BAND                                                      */
/* ============================================================= */
.ctaband { background: var(--espresso); color: var(--cream); position: relative; overflow: hidden; }
.ctaband::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(169,128,63,0.22), transparent 60%); }
.ctaband .container { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.ctaband h2 { color: var(--cream); max-width: min(92vw, 40ch); }
.ctaband .lead { color: rgba(245,239,228,0.8); margin-inline: auto; }
.ctaband__btns { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.ctaband__phone { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); color: var(--cream); display: inline-flex; align-items: center; gap: 0.7rem; margin: 1.2rem 0 1.5rem; letter-spacing: -0.01em; line-height: 1; transition: color .2s ease; }
.ctaband__phone:hover { color: #fff; }
.ctaband__phone svg { width: 0.82em; height: 0.82em; color: var(--gold); }
.ctaband__phone-label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 0.4rem; }

/* Kontaktdaten + Öffnungszeiten im dunklen Kontakt-Hub */
.ctaband__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; margin-top: 2.4rem; }
.ctaband__contact-item { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); text-align: left; }
.ctaband__contact-item .ico { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(245,239,228,0.08); border: 1px solid rgba(245,239,228,0.16); color: var(--gold); }
.ctaband__contact-item .ico svg { width: 20px; height: 20px; }
.ctaband__contact-item .k { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(245,239,228,0.6); font-weight: 600; }
.ctaband__contact-item .v { display: block; font-weight: 600; font-size: 0.95rem; color: var(--cream); }
a.ctaband__contact-item:hover .v { color: var(--gold); }

.ctaband__hours { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; margin: 2.2rem auto 0; background: rgba(245,239,228,0.06); border: 1px solid rgba(245,239,228,0.14); border-radius: 100px; padding: 0.5rem 0.4rem; max-width: min(96vw, 720px); }
.ctaband__hours-title { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 1.1rem; color: var(--cream); font-weight: 600; font-size: 0.9rem; }
.ctaband__hours-title svg { color: var(--gold); }
.ctaband__oh { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.35rem 1.15rem; border-left: 1px solid rgba(245,239,228,0.16); }
.ctaband__oh .d { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; }
.ctaband__oh .t { font-size: 0.92rem; font-weight: 600; color: var(--cream); }
@media (max-width: 40em) { .ctaband__hours { border-radius: var(--radius-md); } .ctaband__oh { border-left: none; } .ctaband__hours-title { width: 100%; justify-content: center; border-bottom: 1px solid rgba(245,239,228,0.14); padding-bottom: 0.6rem; } }

/* Helle Formularkarte + Karte im dunklen Hub */
.ctaband .form-card { width: 100%; margin: 0; text-align: left; }
.ctaband .map { width: 100%; margin-top: 2.4rem; }

/* Kontakt: 2 Spalten – links Infos, rechts Formular */
.ctaband__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 2.6rem); width: 100%; text-align: left; align-items: start; margin-top: 0.4rem; }
.ctaband__info { display: flex; flex-direction: column; gap: 2.6rem; }
.ctaband__phone-block .ctaband__phone-label { margin-top: 0; }
.ctaband__phone-block .ctaband__phone { margin: 0.35rem 0 0; }
.ctaband__info .ctaband__contact { flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; align-items: stretch; gap: 1.35rem; margin-top: 0; }
.ctaband__info .ctaband__hours { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; margin: 0; max-width: none; width: 100%; border-radius: var(--radius-md); }
.ctaband__info .ctaband__hours-title { width: 100%; justify-content: flex-start; border-bottom: 1px solid rgba(245,239,228,0.14); padding: 0.4rem 1.1rem 0.7rem; }
.ctaband__info .ctaband__oh { flex-direction: row; align-items: center; justify-content: space-between; border-left: none; padding: 0.62rem 1.1rem; }
@media (min-width: 62em) { .ctaband__grid { grid-template-columns: 1fr 1fr; gap: clamp(2.2rem, 4vw, 3.5rem); } }

/* Contact Form 7 an das Design angleichen */
.form-card .wpcf7 { margin: 0; }
.form-card .wpcf7-form p { margin: 0; }
.form-card .wpcf7-form-control-wrap { display: block; }
.form-card .field .wpcf7-form-control-wrap { margin: 0; }
.form-card .wpcf7-not-valid { border-color: var(--terracotta) !important; box-shadow: 0 0 0 3px rgba(192,97,58,0.14) !important; }
.form-card .wpcf7-not-valid-tip { color: var(--terracotta-dk); font-size: 0.78rem; font-weight: 600; margin-top: 0.35rem; }
.form-card .field--consent { display: block; margin: 0.1rem 0 1rem; }
.form-card .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.form-card .wpcf7-acceptance label { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.82rem; color: var(--espresso-soft); font-weight: 400; margin: 0; cursor: pointer; }
.form-card .wpcf7-acceptance input[type="checkbox"] { width: 20px; height: 20px; flex: none; margin: 2px 0 0; accent-color: var(--green-cta); }
.form-card .wpcf7-submit { width: 100%; margin-top: 0.2rem; }
.form-card .wpcf7-spinner { margin: 0.6rem auto 0; display: block; }
.form-card .wpcf7-response-output { margin: 1.1rem 0 0 !important; padding: 0.85rem 1.1rem !important; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; border: 1.5px solid var(--line) !important; }
.form-card .wpcf7-form.invalid .wpcf7-response-output,
.form-card .wpcf7-form.unaccepted .wpcf7-response-output,
.form-card .wpcf7-form.payment-required .wpcf7-response-output,
.form-card .wpcf7-form.failed .wpcf7-response-output { color: var(--terracotta-dk); border-color: var(--terracotta) !important; background: rgba(192,97,58,0.10); }
.form-card .wpcf7-form.sent .wpcf7-response-output { color: var(--green-cta); border-color: var(--green-cta) !important; background: rgba(11,122,51,0.09); }

/* Eigenes Formular: Honeypot (unsichtbar) + Status-Meldungen (kein Plugin) */
.form-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-card .opt { color: var(--stone); font-weight: 500; }
.form-status { margin: 0 0 1.3rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 600; border: 1.5px solid; }
.form-status--ok { color: var(--green-cta); background: rgba(11,122,51,0.09); border-color: var(--green-cta); }
.form-status--err { color: var(--terracotta-dk); background: rgba(192,97,58,0.10); border-color: var(--terracotta); }

/* ============================================================= */
/* FAQ (Accordion, SEO/GEO)                                      */
/* ============================================================= */
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .3s ease; }
.faq__item[open] { box-shadow: var(--shadow-soft); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--espresso); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.7rem; line-height: 1; color: var(--green-cta); transition: transform .3s ease; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--espresso-soft); font-size: 0.98rem; line-height: 1.6; }
.faq__a a { color: var(--green-cta); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================= */
/* KONTAKT                                                       */
/* ============================================================= */
.contact__grid { display: grid; gap: clamp(2rem,4vw,3rem); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 1.4rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row .ico { width: 46px; height: 46px; border-radius: 12px; flex: none; background: var(--paper); border: 1px solid var(--line); color: var(--green-cta); display: grid; place-items: center; }
.info-row .ico svg { width: 22px; height: 22px; }
.info-row .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); font-weight: 600; }
.info-row .v { font-weight: 600; font-size: 1.02rem; }
.info-row .v a:hover { color: var(--green-cta); }
.hours { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.4rem 1.5rem; margin-top: 0.4rem; }
.hours h3 { font-size: 1.1rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.hours__row { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.hours__row:last-child { border-bottom: none; }
.hours__row span:last-child { font-weight: 600; }
.hours .ph { color: var(--stone); font-style: italic; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3.2vw, 2rem); box-shadow: var(--shadow-soft); color: var(--espresso); text-align: left; }
.form-card h3 { margin-bottom: 0.4rem; }
.form-card p.sub { color: var(--espresso-soft); font-size: 0.95rem; margin-bottom: 1.05rem; }
.field { margin-bottom: 0.8rem; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 0.3rem; }
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 0.68rem 0.95rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--cream); color: var(--espresso); transition: border-color .2s, box-shadow .2s; min-height: 46px; }
.field textarea { min-height: 82px; height: 82px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(32,163,81,0.15); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.82rem; color: var(--espresso-soft); margin: 0.1rem 0 1rem; }
.form-consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--green-cta); }
.form-note { font-size: 0.8rem; color: var(--stone); margin-top: 0.6rem; text-align: center; }

/* ============================================================= */
/* MAP                                                           */
/* ============================================================= */
.map { position: relative; margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); display: flex; flex-direction: column; }
.map iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.15) contrast(1.02); }
.map__overlay { background: var(--paper); padding: 1.4rem 1.5rem; order: -1; color: var(--espresso); }
.map__overlay h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); margin: 0.35rem 0 0.6rem; color: var(--espresso); }
.map__overlay p { font-size: 0.95rem; color: var(--espresso-soft); font-weight: 600; margin-bottom: 1rem; }
.map__overlay .btn { width: 100%; }
@media (min-width: 48em) {
  .map__overlay { position: absolute; z-index: 2; top: clamp(1.2rem, 3vw, 2rem); right: clamp(1.2rem, 3vw, 2rem);
    max-width: 340px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
  .map__overlay .btn { width: auto; }
}

/* ============================================================= */
/* FOOTER                                                        */
/* ============================================================= */
.footer { background: var(--espresso); color: rgba(245,239,228,0.72); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(245,239,228,0.14); }
.footer .brand__name, .footer h4 { color: var(--cream); }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer p { font-size: 0.92rem; margin-top: 1rem; max-width: 40ch; }
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a:hover, .footer address a:hover { color: var(--green); }
.footer address { font-style: normal; font-size: 0.92rem; line-height: 1.9; }
.footer address b { color: var(--cream); }
.footer__bottom { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.8rem; font-size: 0.82rem; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ============================================================= */
/* STICKY MOBILE CALL BAR                                        */
/* ============================================================= */
.callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(245,239,228,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(33,27,20,0.10); }
.callbar .btn { min-height: 50px; padding: 0.7rem 1rem; font-size: 0.92rem; }

/* ============================================================= */
/* COOKIE-BANNER (klein, unten links)                            */
/* ============================================================= */
.cookie { position: fixed; left: clamp(0.9rem, 3vw, 1.5rem); bottom: clamp(0.9rem, 3vw, 1.5rem); z-index: 95;
  width: min(92vw, 340px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 1.1rem 1.2rem 1.2rem; animation: cookieIn .4s ease both; }
.cookie[hidden] { display: none; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cookie__text { font-size: 0.85rem; color: var(--espresso-soft); margin-bottom: 0.9rem; line-height: 1.5; }
.cookie__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie__actions .btn { min-height: 44px; padding: 0.55rem 1rem; font-size: 0.85rem; flex: 1 1 auto; }
.cookie__link { display: inline-block; margin-top: 0.75rem; font-size: 0.78rem; color: var(--green-cta); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 63.99em) { .cookie { bottom: 84px; } }

/* ============================================================= */
/* LEGAL PAGES (Impressum / Datenschutz Modal-Sektionen)        */
/* ============================================================= */
.legal { display: none; }
.legal:target { display: block; }
.legal__box { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,3rem); box-shadow: var(--shadow-card); }
.legal h2 { margin-bottom: 1.4rem; }
.legal h3 { font-size: 1.2rem; margin: 1.6rem 0 0.6rem; }
.legal p { font-size: 0.94rem; color: var(--espresso-soft); margin-bottom: 0.7rem; }
.legal a.close-legal { display: inline-block; margin-top: 1.8rem; }

/* ============================================================= */
/* REFERENZEN / GALERIE + LIGHTBOX                               */
/* ============================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.7rem, 1.4vw, 1.1rem);
  grid-auto-rows: clamp(140px, 36vw, 200px); grid-auto-flow: dense; }
.gallery__item { padding: 0; border: none; margin: 0; background: var(--cream-deep); border-radius: var(--radius-md);
  overflow: hidden; cursor: zoom-in; position: relative; display: block; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.gallery__item::after { content: "\002B"; position: absolute; top: 0.6rem; right: 0.6rem; width: 30px; height: 30px;
  border-radius: 50%; background: rgba(33,27,20,0.55); color: #fff; display: grid; place-items: center; font-size: 1.1rem;
  opacity: 0; transform: scale(.8); transition: opacity .3s ease, transform .3s ease; }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; transform: scale(1); }
/* Bento-Spans für lebendiges, größeres Raster */
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--big  { grid-column: span 2; grid-row: span 2; }
@media (min-width: 48em) { .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(180px, 21vw, 240px); } }
@media (min-width: 64em) { .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; } }

/* ---------- Full-Bleed-Bildbänder (großflächige Fotos) ---------- */
.imgband { position: relative; min-height: min(78vh, 720px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.imgband__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.15); transform-origin: 50% 50%; will-change: transform; }
.imgband__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.imgband--dark .imgband__scrim { background: linear-gradient(to top, rgba(15,11,7,0.86) 0%, rgba(15,11,7,0.45) 42%, rgba(15,11,7,0.28) 100%); }
.imgband__inner { position: relative; z-index: 2; color: var(--cream); padding-block: clamp(2.75rem, 6vw, 5.5rem); }
.imgband__inner .eyebrow { color: var(--gold); }
.imgband__inner h2 { color: var(--cream); text-shadow: 0 2px 22px rgba(0,0,0,0.5); max-width: 18ch; }
.imgband__inner p { margin-top: 1.1rem; max-width: 56ch; color: rgba(245,239,228,0.96); font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem); text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
.imgband__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.imgband .btn--ghost { border-color: rgba(255,255,255,0.65); color: #fff; background: rgba(0,0,0,0.2); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.imgband .btn--ghost:hover { background: #fff; color: var(--espresso); border-color: #fff; }
.imgband__inner em { color: #E58A5F; } /* helleres Terracotta für Kontrast auf dunklem Bild */
.imgband__brands { margin-top: clamp(2rem, 4vw, 3.25rem); }
.imgband__brands-label { display: block; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; color: rgba(245,239,228,0.7); margin-bottom: 0.9rem; }
.imgband .marquee { margin-top: 0; }

/* ---------- Impressionen (Bento, großflächig) ---------- */
.impressions__grid { display: grid; grid-template-columns: 1fr; gap: clamp(0.85rem, 1.5vw, 1.15rem); }
.impressions__item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--cream-deep); box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3; }
.impressions__item--tall { aspect-ratio: 3 / 4; }
.impressions__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.impressions__item:hover img, .impressions__item:focus-within img { transform: scale(1.05); }
@media (min-width: 48em) {
  .impressions__grid { grid-template-columns: 1.05fr 1fr; grid-template-rows: repeat(2, 1fr); height: clamp(460px, 48vw, 660px); }
  .impressions__item { aspect-ratio: auto; height: 100%; }
  .impressions__item--tall { grid-column: 1; grid-row: 1 / span 2; }
  .impressions__item--wide { grid-column: 2; grid-row: 1; }
  .impressions__item--last { grid-column: 2; grid-row: 2; }
}
/* Marken-Karussell unter dem Bento (heller Grund) */
.impressions__brands { margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.impressions__brands-label { font-family: var(--font-body); font-weight: 600; color: var(--stone); font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem); margin-bottom: clamp(1.2rem, 2.5vw, 1.9rem); padding-bottom: 2rem; }
.impressions__brands .mlogo { color: var(--espresso-soft); opacity: 0.72; }
/* Echte SVG-Logos auf hellem Grund: dunkle, einheitlich hohe Silhouette (überschreibt den weißen .mlogo-img-Filter) */
.impressions__brands .mlogo img { display: block; height: clamp(22px, 2.6vw, 30px); width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) saturate(0); opacity: 1; }
.impressions__brands .marquee { margin-top: 0; }

/* ---------- Reduced Motion: keine Zoom-/Parallax-Transforms ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__bg, .why__img { transform: none !important; }
}

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,16,12,0.93); display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3vw); cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox__stage { position: relative; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; cursor: default; }
.lightbox img { max-width: 78vw; max-height: 84vh; border-radius: var(--radius-md); box-shadow: 0 30px 90px rgba(0,0,0,0.55); }
.lightbox__count { color: rgba(245,239,228,0.85); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; }
.lightbox__close { position: fixed; top: 1.1rem; right: 1.3rem; width: 48px; height: 48px;
  background: none; border: 0; color: #fff; display: grid; place-items: center; cursor: pointer; z-index: 2; }
.lightbox__close:hover { transform: scale(1.12); }
.lightbox__nav { flex: none; width: 52px; height: 52px; background: none; border: 0; color: #fff;
  display: grid; place-items: center; cursor: pointer; margin: 0 clamp(0.4rem, 2vw, 1.5rem);
  transition: transform .2s ease; }
.lightbox__nav:hover { transform: scale(1.15); }
.lightbox__close svg { display: block; width: 26px; height: 26px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55)); }
.lightbox__nav svg { display: block; width: 32px; height: 32px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55)); }
@media (max-width: 47.99em) {
  .lightbox img { max-width: 88vw; }
  .lightbox__nav { position: fixed; top: 50%; transform: translateY(-50%); margin: 0; background: none; }
  .lightbox__nav--prev { left: 0.6rem; }
  .lightbox__nav--next { right: 0.6rem; }
  .lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================= */
/* RESPONSIVE                                                    */
/* ============================================================= */
@media (min-width: 40em) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 48em) {
  .uspbar .container { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64em) {
  .nav { display: flex; }
  .burger { display: none; }
  .header__call { display: inline-flex; }
  .header__cta { display: inline-flex; }
  .callbar { display: none; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero__float--tl { left: -6%; }
  .hero__float--br { right: -5%; }
  .uspbar .container { grid-template-columns: repeat(4, 1fr); }
  .why__grid { grid-template-columns: 1.2fr 0.8fr; }

  /* Ablauf: alle 5 in einer Reihe, Hover verbreitert + zeigt Text */
  .steps { display: flex; flex-wrap: nowrap; gap: 0.9rem; align-items: stretch; }
  .step { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column;
    transition: flex-grow .55s cubic-bezier(.4,0,.2,1), background .3s ease, box-shadow .3s ease; }
  .step h3 { transition: color .3s ease; }
  .step p { opacity: 0; max-height: 0; margin-top: 0; overflow: hidden;
    transform: translateY(6px);
    transition: opacity .35s ease, max-height .55s ease, transform .35s ease, margin-top .35s ease; }
  .steps:hover .step:not(:hover) { flex-grow: 0.7; }
  .step:hover { flex-grow: 2.6; background: var(--paper); box-shadow: var(--shadow-card); }
  .step:hover p { opacity: 1; max-height: 240px; margin-top: 0.55rem; transform: none; }
  .step:hover h3 { color: var(--green-cta); }
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
  .testi__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .services { grid-template-columns: repeat(3, 1fr); }
  body { padding-bottom: 0; }
}
@media (max-width: 63.99em) {
  body { padding-bottom: 74px; } /* Platz für Callbar */
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
