/* =========================================================================
   BH Autoservice Kirchrode — Design System (Multi-Page)
   Premium Slate + Werkstatt-Rot · Sora / Inter
   ========================================================================= */

:root {
  --red:        #D7282F;
  --red-600:    #C01F26;
  --red-700:    #A5171D;
  --red-soft:   rgba(215, 40, 47, 0.12);

  --ink-900:    #0C0F14;
  --ink-850:    #11151C;
  --ink-800:    #161B23;
  --ink-700:    #1E242E;

  --bg:         #F5F6F8;
  --surface:    #FFFFFF;
  --surface-2:  #F0F2F5;

  --text:       #14181F;
  --muted:      #58616F;
  --text-on-dark:  #ECEFF4;
  --muted-on-dark: #9AA5B4;

  --border:     #E4E7EC;
  --border-dark: rgba(255, 255, 255, 0.10);

  --shadow-sm:  0 1px 2px rgba(12, 15, 20, 0.06), 0 1px 3px rgba(12, 15, 20, 0.05);
  --shadow-md:  0 6px 16px rgba(12, 15, 20, 0.08), 0 2px 6px rgba(12, 15, 20, 0.05);
  --shadow-lg:  0 24px 48px -12px rgba(12, 15, 20, 0.18), 0 8px 20px -8px rgba(12, 15, 20, 0.12);
  --shadow-red: 0 12px 28px -8px rgba(215, 40, 47, 0.45);

  --radius:     14px;
  --radius-lg:  22px;
  --radius-sm:  10px;

  --container:  1180px;
  --header-h:   76px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --z-header: 100;
  --z-mobilebar: 90;
  --z-drawer: 200;
  --z-lightbox: 300;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 17px; line-height: 1.65;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin: 1rem 0 0.9rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  padding: 0.95rem 1.6rem; min-height: 52px; border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text-on-dark); border: 1px solid var(--border-dark); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink-900); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =========================================================================
   Header
   ========================================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  padding: 0.9rem 0;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled, .header--solid {
  background: rgba(252, 252, 253, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
  padding: 0.5rem 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Brand: logo image (light variant over dark hero, dark variant on solid header) */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--text-on-dark); transition: color 0.35s var(--ease); }
.header.scrolled .brand, .header--solid .brand { color: var(--text); }
.brand__logo { height: 40px; width: auto; }
.brand__logo--dark { display: none; }
.header.scrolled .brand__logo--light, .header--solid .brand__logo--light { display: none; }
.header.scrolled .brand__logo--dark, .header--solid .brand__logo--dark { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav a {
  font-size: 0.93rem; font-weight: 500; padding: 0.5rem 0.85rem; border-radius: 8px;
  color: var(--text-on-dark); transition: color 0.2s var(--ease);
  position: relative;
}
.header.scrolled .nav a, .header--solid .nav a { color: var(--text); }
.nav a:hover { color: var(--red); }
.nav a.active { color: var(--red); }
.nav a.active::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.25rem;
  height: 2px; background: var(--red); border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 0.6rem; }
.header__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--text-on-dark); transition: color 0.35s var(--ease);
}
.header.scrolled .header__phone, .header--solid .header__phone { color: var(--text); }
.header__phone:hover { color: var(--red); }
.header__phone svg { width: 18px; height: 18px; color: var(--red); }

/* Animated hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle__box { position: relative; width: 24px; height: 16px; }
.nav-toggle__box span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--text-on-dark);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background-color 0.35s var(--ease);
}
.header.scrolled .nav-toggle__box span, .header--solid .nav-toggle__box span { background: var(--text); }
.nav-toggle__box span:nth-child(1) { top: 0; }
.nav-toggle__box span:nth-child(2) { top: 7px; }
.nav-toggle__box span:nth-child(3) { top: 14px; }
.nav-toggle.open .nav-toggle__box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle__box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: rgba(8, 10, 14, 0.55); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: calc(var(--z-drawer) + 1);
  width: min(86vw, 360px); background: var(--ink-900); color: var(--text-on-dark);
  padding: 1.5rem 1.5rem 2rem; transform: translateX(100%);
  transition: transform 0.4s var(--ease); display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.8rem; }
.drawer__close { width: 44px; height: 44px; color: var(--text-on-dark); display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.drawer__close svg { width: 26px; height: 26px; }
.drawer nav { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer nav a { font-family: var(--font-head); font-weight: 500; font-size: 1.15rem; padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--border-dark); }
.drawer nav a:hover, .drawer nav a.active { color: var(--red); }
.drawer__actions { margin-top: auto; padding-top: 1.5rem; display: grid; gap: 0.7rem; }

/* =========================================================================
   Video Hero (scroll-scrubbing / cinematic) + entrance fly-in
   ========================================================================= */
.vhero { position: relative; height: 100svh; min-height: 600px; background: var(--ink-900); }
.vhero.is-scrub { height: 200vh; }
.vhero__sticky { position: sticky; top: 0; height: 100svh; min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.vhero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; background: var(--ink-900);
  /* Leichter Blur + Abdunklung: macht den im Video eingebrannten Text zu einem
     ruhigen Hintergrund, damit die Überschrift klar lesbar bleibt. */
  filter: brightness(0.6) blur(3px);
  transform: scale(1.06);
}
.vhero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,10,14,0.9) 0%, rgba(8,10,14,0.6) 45%, rgba(8,10,14,0.38) 100%),
    linear-gradient(0deg, rgba(8,10,14,0.82), transparent 52%),
    radial-gradient(1100px 520px at 80% 0%, rgba(215,40,47,0.20), transparent 60%);
}
.vhero__content { position: relative; z-index: 2; color: var(--text-on-dark); width: min(100% - 2.5rem, var(--container)); margin-inline: auto; padding-top: 4rem; }
.vhero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.03; letter-spacing: -0.03em; max-width: 17ch; }
.vhero h1 .accent { color: var(--red); }
.vhero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  color: var(--muted-on-dark); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: opacity 0.4s var(--ease);
}
.vhero__scroll svg { width: 22px; height: 22px; animation: scrollcue 1.8s var(--ease) infinite; }
.vhero.scrolled-cue .vhero__scroll { opacity: 0; pointer-events: none; }
@keyframes scrollcue { 0%, 100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(7px); opacity: 1; } }

/* Hero entrance fly-in (runs on page load) */
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.vhero__content .hero-anim { opacity: 0; animation: heroIn 0.85s var(--ease) both; animation-delay: calc(var(--i, 0) * 0.12s + 0.2s); }

/* Shared hero content helpers */
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border-dark);
  padding: 0.45rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 500;
  color: var(--text-on-dark); margin-bottom: 1.6rem; backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #28C76F; box-shadow: 0 0 0 4px rgba(40,199,111,0.18); }
.hero__lead { margin: 1.5rem 0 2.2rem; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-on-dark); opacity: 0.92; max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2.4rem; }
.hero__trust li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-on-dark); opacity: 0.9; }
.hero__trust svg { width: 20px; height: 20px; color: var(--red); flex: none; }

@media (prefers-reduced-motion: reduce) {
  .vhero__scroll svg { animation: none; }
  .vhero__content .hero-anim { animation: none; opacity: 1; }
}

/* =========================================================================
   Subpage hero band
   ========================================================================= */
.page-hero {
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.2rem)) 0 clamp(2.2rem, 5vw, 3.4rem);
  background:
    radial-gradient(800px 360px at 88% -20%, var(--red-soft), transparent 65%),
    linear-gradient(180deg, var(--surface), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero__crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.page-hero__crumbs a:hover { color: var(--red); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
.page-hero p { color: var(--muted); margin-top: 1rem; max-width: 62ch; font-size: 1.08rem; }

/* =========================================================================
   Glow / Spotlight cards (cursor-following red glow)
   ========================================================================= */
.glow-card { position: relative; isolation: isolate; }
.glow-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), var(--red-soft), transparent 45%);
}
.glow-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(215,40,47,0.75), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.glow-card:hover::after, .glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* =========================================================================
   Marquee trust bar
   ========================================================================= */
.marquee {
  background: var(--ink-900); color: var(--muted-on-dark); border-top: 1px solid var(--border-dark);
  padding: 1.1rem 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; white-space: nowrap; }
.marquee__track span svg { width: 18px; height: 18px; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* =========================================================================
   Services
   ========================================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card {
  display: block; color: inherit;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.9rem; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--red-soft); color: var(--red); margin-bottom: 1.4rem;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card:hover .service-card__icon { background: var(--red); color: #fff; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.service-card h3 .arrow { color: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.service-card h3 .arrow svg { width: 20px; height: 20px; }
.service-card:hover h3 .arrow { opacity: 1; transform: translateX(0); }
.service-card p { color: var(--muted); font-size: 0.98rem; }
.service-card ul { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.service-card li { font-size: 0.78rem; font-weight: 500; background: var(--surface-2); color: var(--muted); padding: 0.28rem 0.65rem; border-radius: 999px; }

/* =========================================================================
   About / Werkstatt
   ========================================================================= */
.about { background: var(--surface); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; }
.about__media-main img { width: 100%; height: 100%; object-fit: cover; }
.about__media-deco { position: absolute; left: -22px; top: -22px; z-index: -1; width: 130px; height: 130px; border-radius: 18px; background: var(--red-soft); }
.about p { color: var(--muted); margin-top: 1.1rem; }
.about__list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.about__list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text); font-size: 1rem; }
.about__list svg { width: 24px; height: 24px; color: var(--red); flex: none; margin-top: 1px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.4rem; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); color: var(--ink-900); line-height: 1; letter-spacing: -0.03em; }
.stat__num .text-red { color: var(--red); }
.stat__label { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

/* =========================================================================
   Why / Features
   ========================================================================= */
.why { background: var(--ink-900); color: var(--text-on-dark); }
.why .section-sub { color: var(--muted-on-dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.feature { background: rgba(255,255,255,0.035); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; transition: transform 0.35s var(--ease), background-color 0.35s var(--ease); }
.feature:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.feature__icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature p { color: var(--muted-on-dark); font-size: 0.93rem; }

/* =========================================================================
   Gallery
   ========================================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--ink-700); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,15,20,0.5), transparent 55%); opacity: 0; transition: opacity 0.35s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item__zoom { position: absolute; right: 0.8rem; bottom: 0.8rem; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: rgba(252,252,253,0.92); color: var(--ink-900); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(6px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translateY(0); }
.gallery-item__zoom svg { width: 18px; height: 18px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(8,10,14,0.92); display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; width: 48px; height: 48px; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
.lightbox__close svg { width: 26px; height: 26px; }

/* =========================================================================
   Process steps
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step { position: relative; padding-top: 1rem; }
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--surface-2); line-height: 1; letter-spacing: -0.04em; -webkit-text-stroke: 1.5px var(--border); }
.step h3 { font-size: 1.18rem; margin: 0.6rem 0 0.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; }
.step::before { content: ""; position: absolute; top: 1.6rem; left: 4.2rem; right: -1.3rem; height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px); }
.step:last-child::before { display: none; }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews { background: var(--surface); }
.reviews__top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.6rem; }
.rating-badge { display: flex; align-items: center; gap: 1rem; background: var(--surface-2); border-radius: var(--radius); padding: 1rem 1.3rem; }
.rating-badge .score { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--ink-900); }
.rating-badge .stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.rating-badge .meta { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card .stars { color: #FBBF24; letter-spacing: 2px; font-size: 0.95rem; }
.review-card p { color: var(--text); font-size: 1rem; }
.review-card__author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.review-card__name { font-weight: 600; font-size: 0.95rem; }
.review-card__loc { font-size: 0.8rem; color: var(--muted); }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band { background: linear-gradient(120deg, var(--ink-900), var(--ink-800)); color: var(--text-on-dark); border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 320px at 80% 0%, rgba(215,40,47,0.25), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.cta-band p { color: var(--muted-on-dark); margin: 0.8rem auto 1.8rem; max-width: 52ch; }
.cta-band .hero__actions { justify-content: center; }

/* =========================================================================
   Contact
   ========================================================================= */
.contact { background: var(--ink-900); color: var(--text-on-dark); }
.contact .section-sub { color: var(--muted-on-dark); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info { display: grid; gap: 1rem; }
.info-card { display: flex; gap: 1rem; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 1.2rem 1.3rem; transition: background-color 0.3s var(--ease); }
.info-card:hover { background: rgba(255,255,255,0.07); }
.info-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.info-card__icon svg { width: 23px; height: 23px; }
.info-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-on-dark); font-family: var(--font-body); font-weight: 600; margin-bottom: 0.2rem; }
.info-card a, .info-card p { color: var(--text-on-dark); font-size: 1.05rem; font-weight: 500; }
.info-card a:hover { color: var(--red); }
.info-card .hours-line { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; font-weight: 400; }
.info-card .hours-line span:last-child { color: var(--muted-on-dark); }
.map-embed { margin-top: 0.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-dark); height: 220px; position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }
.map-facade { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-on-dark); background: radial-gradient(120% 120% at 30% 20%, rgba(215,40,47,0.18), transparent 55%), repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 14px, transparent 14px 28px), var(--ink-800); transition: background-color 0.3s var(--ease); }
.map-facade:hover { background-color: var(--ink-700); }
.map-facade svg { width: 34px; height: 34px; color: var(--red); }
.map-facade__title { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }
.map-facade__hint { font-size: 0.82rem; color: var(--muted-on-dark); display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--border-dark); border-radius: 999px; padding: 0.3rem 0.8rem; }

/* Form */
.form-wrap { background: var(--surface); color: var(--text); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); }
.form-wrap h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.form-wrap > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 0.98rem; padding: 0.85rem 1rem; min-height: 52px; background: var(--surface-2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: var(--surface); box-shadow: 0 0 0 4px var(--red-soft); }
.field input::placeholder, .field textarea::placeholder { color: #9aa3b0; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.82rem; color: var(--muted); margin: 0.4rem 0 1.2rem; }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); flex: none; }
.form-consent a { color: var(--red); text-decoration: underline; }
.form-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--muted); text-align: center; }
.form-status { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 500; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(40,199,111,0.12); color: #15803d; border: 1px solid rgba(40,199,111,0.3); }
.form-status.error { background: var(--red-soft); color: var(--red-700); border: 1px solid rgba(215,40,47,0.3); }

/* =========================================================================
   Detail pages (Leistungen)
   ========================================================================= */
.detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.prose p { color: var(--muted); }
.prose ul.checks { display: grid; gap: 0.7rem; }
.prose ul.checks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text); }
.prose ul.checks svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 1px; }
.detail__aside { position: sticky; top: calc(var(--header-h) + 1rem); display: grid; gap: 1.2rem; }
.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.aside-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.1rem; }
.aside-card .btn { width: 100%; margin-bottom: 0.6rem; }
.aside-card .other-services { margin-top: 0.5rem; display: grid; gap: 0.2rem; }
.aside-card .other-services a { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-top: 1px solid var(--border); font-size: 0.93rem; font-weight: 500; transition: color 0.2s var(--ease); }
.aside-card .other-services a:hover { color: var(--red); }
.aside-card .other-services a svg { width: 16px; height: 16px; color: var(--red); }

/* FAQ */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0 1.3rem; transition: box-shadow 0.3s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 0; font-family: var(--font-head); font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { width: 22px; height: 22px; flex: none; color: var(--red); transition: transform 0.3s var(--ease); }
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 1.2rem; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--ink-850); color: var(--muted-on-dark); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 1px solid var(--border-dark); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer .brand { color: var(--text-on-dark); margin-bottom: 1.2rem; }
.footer .brand__logo--light { display: block; }
.footer .brand__logo--dark { display: none; }
.footer__about p { font-size: 0.92rem; }
.footer__col h4 { color: var(--text-on-dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-body); margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; font-size: 0.93rem; padding: 0.28rem 0; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--red); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border-dark); display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer__bottom a:hover { color: var(--red); }
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* =========================================================================
   Mobile sticky action bar
   ========================================================================= */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-mobilebar);
  display: none; gap: 0.6rem; padding: 0.6rem 0.8rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(252,252,253,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(12,15,20,0.08);
}
.mobilebar .btn { flex: 1; min-height: 50px; padding-inline: 0.8rem; font-size: 0.92rem; }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .detail { grid-template-columns: 1fr; }
  .detail__aside { position: static; }
}
@media (max-width: 880px) {
  .nav, .header__phone { display: none; }
  /* Termin-Button im Header ausblenden (steckt bereits in Menue + Sticky-Leiste) */
  .header .header__cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 540px; margin-bottom: 2rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 1; }
  .mobilebar { display: flex; }
  body { padding-bottom: 72px; }
  .vhero__overlay { background: linear-gradient(0deg, rgba(8,10,14,0.9) 6%, rgba(8,10,14,0.4) 55%, rgba(8,10,14,0.55) 100%), radial-gradient(800px 400px at 80% 0%, rgba(215,40,47,0.18), transparent 60%); }
  .vhero__content { padding-top: 5rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services-grid, .why-grid, .stats, .footer__grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 1.2rem; }
  .stat { display: flex; align-items: baseline; gap: 0.8rem; }
  .stat__num { font-size: 2rem; }
  .stat__label { margin-top: 0; }
  .gallery-grid { grid-auto-rows: 150px; }
}
