/* ============================================================================
   LACKIEREREI EBEL — Premium Automotive Refinish Website
   Design: Dark "studio booth" base, orange clearcoat accents, glassmorphism,
           3D tilt, parallax, clearcoat sweep highlights.
   Corporate colours derived from logo: orange #E8861F, slate #4B535A, white.
   ========================================================================== */

/* ----- Design Tokens ----------------------------------------------------- */
:root {
  /* Brand */
  --orange:        #E8861F;   /* primary accent, from logo mark */
  --orange-bright: #FF9E33;   /* hover / glow */
  --orange-deep:   #B5630F;   /* shadows of accent */
  --slate:         #4B535A;   /* logo background grey */

  /* Surfaces — deep "spray booth" dark */
  --bg-0:    #0C0D10;         /* page base */
  --bg-1:    #121419;         /* sections */
  --bg-2:    #181B21;         /* cards */
  --bg-glass: rgba(28, 32, 39, 0.55);
  --stroke:  rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --ink:        #F4F5F7;
  --ink-soft:   #B7BCC4;
  --ink-faint:  #7C828C;

  /* Type */
  --font-display: "Clash Display", "Archivo", system-ui, sans-serif;
  --font-body:    "Satoshi", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --radius:    20px;
  --radius-sm: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Fonts (lokal gehostet — DSGVO: keine Drittübertragung) ------------ */
@font-face { font-family:'Clash Display'; src:url('../fonts/clash-display-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Clash Display'; src:url('../fonts/clash-display-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Clash Display'; src:url('../fonts/clash-display-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-400.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }

/* ----- 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; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 3px; border-radius: 4px; }

/* ----- Typography -------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ----- Layout helpers ---------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
section { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; }
.section-head { max-width: 620px; margin-bottom: 3.5rem; }
.section-head h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin: 1rem 0 0.6rem;
}
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* Grain + glow utility backdrops */
.glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.glow::after {
  content: ""; position: absolute; width: 60vw; height: 60vw;
  top: -20%; right: -15%;
  background: radial-gradient(circle, rgba(232,134,31,0.16), transparent 65%);
  filter: blur(20px);
}

/* ============================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
  overflow: hidden;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  color: #1a1205;
  box-shadow: 0 10px 30px -8px rgba(232,134,31,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--primary:hover { box-shadow: 0 16px 44px -8px rgba(232,134,31,0.75), inset 0 1px 0 rgba(255,255,255,0.5); }
/* clearcoat sweep */
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
}
.btn--primary:hover::after { animation: sweep 0.9s var(--ease); }
@keyframes sweep { to { left: 130%; } }

.btn--wa {
  background: linear-gradient(135deg, #25D366, #128C57);
  color: #04210f;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-bright); }

/* ============================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,13,16,0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--stroke);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav.scrolled .nav__inner { height: 70px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 38px; width: auto; transition: height .4s; }
.nav.scrolled .nav__logo img { height: 32px; }
@media (max-width: 480px){ .nav__logo img { height: 30px; } }

.nav__links { display: flex; gap: 2.2rem; align-items: center; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__social { display: flex; gap: 0.75rem; align-items: center; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  transition: transform .3s var(--ease), background .3s, border-color .3s, color .3s;
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange-bright); }
.icon-btn--wa:hover { color: #25D366; border-color: #25D366; }
.icon-btn--ig:hover { color: #E1306C; border-color: #E1306C; }

.nav__burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--stroke);
  position: relative;
}
.nav__burger span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__burger span:nth-child(1) { transform: translate(-50%, -7px); }
.nav__burger span:nth-child(3) { transform: translate(-50%, 5px); }
.nav.open .nav__burger span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 84px;
  position: relative;
  overflow: hidden;
}
/* Layered booth gradient mesh */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(232,134,31,0.22), transparent 50%),
    radial-gradient(90% 80% at 15% 90%, rgba(75,83,90,0.45), transparent 55%),
    linear-gradient(180deg, #0C0D10, #101217 60%, #0C0D10);
}
/* moving clearcoat reflection band */
.hero__bg::after {
  content: ""; position: absolute; inset: -50% -10%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.05) 50%, transparent 62%);
  animation: drift 11s linear infinite;
}
@keyframes drift { 0%{transform:translateX(-20%);} 100%{transform:translateX(20%);} }

/* fine grain overlay */
.grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.hero__copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.98;
  margin: 1.4rem 0 1.4rem;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--orange-bright), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 520px; }
.hero__cta { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 2.2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.hero__meta span { font-size: 0.85rem; color: var(--ink-faint); letter-spacing: 0.04em; }

/* Glass showcase panel (the "freshly painted panel") */
.hero__panel {
  position: relative; aspect-ratio: 4/5; border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.12);
  background: linear-gradient(160deg, #20242c, #0e1014);
}
.hero__panel img,
.hero__panel video { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.hero__panel::after { /* glossy clearcoat highlight */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 40%);
  mix-blend-mode: screen;
}
.hero__badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.1rem; border-radius: 14px;
  background: var(--bg-glass); backdrop-filter: blur(14px);
  border: 1px solid var(--stroke-strong);
  font-size: 0.85rem; font-weight: 600;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #25D366; box-shadow: 0 0 12px #25D366; }

/* scroll cue */
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-faint);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero__scroll .mouse {
  width: 22px; height: 36px; border: 2px solid var(--ink-faint); border-radius: 12px; position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; border-radius: 2px;
  background: var(--orange); transform: translateX(-50%); animation: scroll 1.6s var(--ease) infinite;
}
@keyframes scroll { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 100%{opacity:0;transform:translate(-50%,12px);} }

/* marquee logo strip / trust */
.marquee {
  border-block: 1px solid var(--stroke);
  background: var(--bg-1);
  padding: 1.4rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 3.5rem; animation: marquee 28s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-faint);
  letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.7rem;
}
.marquee__track span::before { content: "◆"; color: var(--orange); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--bg-1); }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(208px, 1fr)); gap: 1.25rem;
}
/* Editoriale Leistungskarte — kein Icon, keine Nummer; Akzentbalken + Pfeil */
.card {
  position: relative; padding: 2rem 1.7rem 1.7rem; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-2), #101217);
  border: 1px solid var(--stroke);
  transition: border-color .4s, box-shadow .4s, transform .15s var(--ease), background .4s;
  transform-style: preserve-3d; overflow: hidden;
  min-height: 188px; display: flex; flex-direction: column;
}
.card::before { /* clearcoat sheen, folgt dem Tilt */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(232,134,31,0.16), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.card:hover { border-color: rgba(232,134,31,0.45); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.8); }
.card:hover::before { opacity: 1; }
/* bare Monoline-Symbol (kein Kasten) + dünne Akzentlinie darunter */
.card__ico {
  color: var(--orange); display: block; margin-bottom: 1rem; transform: translateZ(34px);
  transition: transform .4s var(--ease), color .3s;
}
.card__ico svg { width: 30px; height: 30px; }
.card:hover .card__ico { color: var(--orange-bright); transform: translateZ(34px) translateY(-2px); }
.card h3 { position: relative; padding-bottom: 0.55rem; }
.card h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px;
  background: var(--orange); border-radius: 2px; opacity: .5; transition: width .4s var(--ease), opacity .3s;
}
.card:hover h3::after { width: 46px; opacity: 1; }
.card h3 {
  font-size: 1.2rem; margin-bottom: 0.55rem; transform: translateZ(26px);
  hyphens: auto; overflow-wrap: break-word; line-height: 1.12;
}
.card p { font-size: 0.95rem; color: var(--ink-soft); transform: translateZ(16px); }
.card__arrow {
  margin-top: auto; align-self: flex-end; color: var(--orange-bright);
  opacity: 0; transform: translate(-6px, 6px) translateZ(30px); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.card__arrow svg { width: 22px; height: 22px; }
.card:hover .card__arrow { opacity: 1; transform: translate(0,0) translateZ(30px); }

/* ============================================================================
   REVIEWS
   ========================================================================== */
.reviews__top {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.gscore {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--bg-2); border: 1px solid var(--stroke);
  padding: 1rem 1.4rem; border-radius: 16px;
}
.gscore__g { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.gscore__g .b{color:#4285F4} .gscore__g .r{color:#EA4335} .gscore__g .y{color:#FBBC05} .gscore__g .gr{color:#34A853}
.gscore b { font-size: 2rem; font-family: var(--font-display); }
.stars { display: inline-flex; gap: 2px; color: var(--orange); }
.stars svg { width: 18px; height: 18px; }
.gscore small { color: var(--ink-faint); display: block; }

/* --- durchschaltbarer Bewertungs-Slider --- */
.rev-slider {
  position: relative; display: flex; align-items: center; gap: 1rem;
  max-width: 860px; margin: 0 auto; outline: none;
}
.rev-viewport { overflow: hidden; flex: 1; border-radius: var(--radius); }
.rev-track { display: flex; transition: transform .6s var(--ease); will-change: transform; }
.rev-nav {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--stroke-strong); color: var(--ink);
  display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s var(--ease), color .3s;
}
.rev-nav svg { width: 22px; height: 22px; }
.rev-nav:hover { border-color: var(--orange); color: var(--orange-bright); transform: scale(1.08); }
.review {
  flex: 0 0 100%; box-sizing: border-box;
  background: linear-gradient(160deg, var(--bg-2), #101217);
  border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  position: relative;
}
.review .stars { margin-bottom: 1rem; }
.review p { color: var(--ink); font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.6; font-weight: 500; }
.review__who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.3rem; }
.review__av {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #1a1205;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
}
.review__who b { font-size: 0.95rem; }
.review__who span { font-size: 0.8rem; color: var(--ink-faint); }
.review__g { position: absolute; top: 1.4rem; right: 1.4rem; opacity: 0.5; }
.review__g svg { width: 20px; height: 20px; }

/* ============================================================================
   INSTAGRAM REELS
   ========================================================================== */
.reels { background: var(--bg-1); }
.reels__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.reel {
  position: relative; aspect-ratio: 9/16; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--stroke);
  background: #0a0b0e;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.reel:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.85); }
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; }
.reel__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%);
  opacity: 0; transition: opacity .4s; z-index: 2;
}
.reel:hover .reel__overlay { opacity: 1; }
.reel__overlay span { font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.reel__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(232,134,31,0.92); color: #1a1205;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5); transition: transform .4s var(--ease);
}
.reel:hover .reel__play { transform: translate(-50%,-50%) scale(1.12); }
.reel__tag {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 3;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 8px; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
}
.reels__cta { text-align: center; margin-top: 2.6rem; }

/* ============================================================================
   CONTACT
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.contact__info h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 1rem 0 1.2rem; }
.contact__info p { color: var(--ink-soft); margin-bottom: 2rem; }
.contact__list { display: grid; gap: 1rem; }
.contact__item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 1.2rem; border-radius: 14px;
  background: var(--bg-2); border: 1px solid var(--stroke);
  transition: border-color .3s, transform .3s var(--ease);
}
.contact__item:hover { border-color: rgba(232,134,31,0.4); transform: translateX(4px); }
.contact__item .ci-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(232,134,31,0.12); color: var(--orange-bright); border: 1px solid rgba(232,134,31,0.25);
}
.contact__item small { color: var(--ink-faint); display: block; font-size: 0.8rem; }
.contact__item b { font-size: 1.02rem; }

/* Form (glass card) */
.form {
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--stroke-strong); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.9);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; position: relative; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--stroke);
  color: var(--ink); font: inherit; font-size: 0.98rem;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  background: rgba(232,134,31,0.06);
  box-shadow: 0 0 0 4px rgba(232,134,31,0.12);
}
.form__consent { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0.4rem 0 1.3rem; }
.form__consent input { margin-top: 0.25rem; accent-color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }
.form__consent label { font-size: 0.82rem; color: var(--ink-faint); line-height: 1.5; }
.form__consent a { color: var(--orange); text-decoration: underline; }
.form .btn--primary { width: 100%; justify-content: center; }
.form__status { margin-top: 1rem; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form__status.ok { color: #34d27b; }
.form__status.err { color: #ff6b6b; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--bg-1); border-top: 1px solid var(--stroke); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__logo img { height: 48px; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--ink-soft); font-size: 0.95rem; max-width: 280px; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer h4 { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.2rem; font-family: var(--font-body); font-weight: 700; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a, .footer__hours li { color: var(--ink-soft); font-size: 0.95rem; transition: color .25s; }
.footer ul a:hover { color: var(--orange-bright); }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer__hours span { color: var(--ink-faint); }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--stroke);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--ink-faint);
}
.footer__bottom a { color: var(--ink-faint); }
.footer__bottom a:hover { color: var(--orange-bright); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C57);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6);
  transition: transform .35s var(--ease);
  animation: pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
[data-reveal][data-delay="6"] { transition-delay: .48s; }
[data-reveal][data-delay="7"] { transition-delay: .56s; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .reels__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { display: none; }       /* keep hero clean & fast on tablet */
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__social { display: none; }
  .nav__burger { display: block; }
  /* mobile slide-in menu */
  .nav__mobile {
    position: fixed; inset: 70px 0 auto 0; z-index: 99;
    background: rgba(12,13,16,0.97); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
    padding: 1.5rem 1.25rem 2rem;
    transform: translateY(-130%); transition: transform .45s var(--ease);
    display: flex; flex-direction: column; gap: 0.4rem;
  }
  .nav.open .nav__mobile { transform: translateY(0); }
  .nav__mobile a { padding: 0.9rem 0.4rem; font-size: 1.1rem; border-bottom: 1px solid var(--stroke); }
  .nav__mobile .nav__social { display: flex; margin-top: 1.2rem; gap: 0.8rem; }

  .reels__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.4rem; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
}
.nav__mobile { display: none; }
@media (max-width: 760px) { .nav__mobile { display: flex; } }

/* ============================================================================
   ADD-ONS: review dots, honeypot, map
   ========================================================================== */
.rev-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1.8rem; }
.rev-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,0.18); border: none; cursor: pointer;
  transition: background .3s, transform .3s var(--ease), width .3s;
}
.rev-dot:hover { background: rgba(255,255,255,0.4); }
.rev-dot.on { background: var(--orange); width: 26px; border-radius: 6px; }

/* honeypot — visually hidden, off-screen */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* contact map */
.contact__map {
  margin-top: 2rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stroke); height: 240px;
  filter: grayscale(0.3) contrast(1.05);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 760px) {
  .rev-nav { width: 42px; height: 42px; }
}

/* ============================================================================
   v2 ADD-ONS — Conversion, neue Sektionen, Politur
   ========================================================================== */

/* Lenis Smooth-Scroll (offizielle Klassen — wichtig gegen Ruckeln) */
html.lenis, html.lenis body { height: auto; }
/* natives CSS-smooth deaktivieren, sobald Lenis aktiv ist (sonst doppeltes,
   ruckeliges Scrollen). Greift auf .lenis allein, nicht nur .lenis-smooth. */
html.lenis { scroll-behavior: auto !important; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Scroll-Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 12px rgba(232,134,31,0.6);
}

/* Button-Größen + Call-Button */
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn--call {
  background: rgba(255,255,255,0.05); border: 1px solid var(--stroke-strong);
  color: var(--ink); backdrop-filter: blur(8px); font-variant-numeric: tabular-nums;
}
.btn--call:hover { border-color: var(--orange); color: var(--orange-bright); }

/* Hero parallax layers */
.hero__bg, #heroPanel { will-change: transform; }

/* ---- TRUST-BAR ---- */
.trustbar { background: var(--bg-1); border-block: 1px solid var(--stroke); }
.trustbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap; padding: 1.1rem 0;
}
.trustbar__google {
  display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1rem; white-space: nowrap;
}
.trustbar__g { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.trustbar__g .b{color:#4285F4}.trustbar__g .r{color:#EA4335}.trustbar__g .y{color:#FBBC05}.trustbar__g .gr{color:#34A853}
.trustbar__google .stars { color: var(--orange); }
.trustbar__google .stars svg { width: 16px; height: 16px; }
.trustbar__google b { font-family: var(--font-display); font-size: 1.15rem; }
.trustbar__google small { color: var(--ink-faint); }
.trustbar__points { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.trustbar__points li { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
@media (max-width: 760px){
  .trustbar__points { gap: 0.5rem 1.2rem; }
  .trustbar__points li { font-size: 0.85rem; }
}

/* ---- VORHER/NACHHER (Before/After) ---- */
.results { background: var(--bg-1); }
.ba {
  position: relative; max-width: 920px; margin: 0 auto; aspect-ratio: 64/30;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stroke-strong);
  box-shadow: 0 40px 80px -36px rgba(0,0,0,0.85); user-select: none; touch-action: pan-y;
  cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__base { z-index: 0; }
/* Clip per clip-path: das Vorher-Bild bleibt deckungsgleich mit dem Nachher-Bild,
   nur der rechte Teil wird abgeschnitten (responsive-sicher). */
.ba__clip {
  position: absolute; inset: 0; z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.ba__clip img { width: 100%; height: 100%; }
.ba__tag {
  position: absolute; top: 14px; z-index: 4; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 8px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); color: #fff;
}
.ba__tag--before { left: 14px; }
.ba__tag--after  { right: 14px; color: var(--orange-bright); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
  z-index: 5; display: grid; place-items: center; cursor: ew-resize; outline: none;
}
.ba__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: rgba(255,255,255,0.85); }
.ba__grip {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: #1a1205; box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: transform .25s var(--ease);
}
.ba__handle:hover .ba__grip, .ba__handle:focus-visible .ba__grip { transform: scale(1.12); }
.ba__grip svg { width: 22px; height: 22px; }
.results__cta { text-align: center; margin-top: 2rem; }

/* ---- PROZESS / ABLAUF ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.step {
  position: relative; padding: 2rem 1.6rem 1.8rem; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-2), #101217); border: 1px solid var(--stroke);
}
.step::after {
  content: ""; position: absolute; top: 2.7rem; right: -0.9rem; width: 1.8rem; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent); z-index: 2;
}
.steps .step:last-child::after { display: none; }
.step__num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px rgba(232,134,31,0.55); display: block; margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---- ÜBER UNS / TEAM ---- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about__media { position: relative; height: 460px; }
.about__img {
  position: absolute; border-radius: var(--radius); object-fit: cover;
  border: 1px solid var(--stroke-strong); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.about__img--main { width: 70%; height: 64%; top: 0; left: 0; z-index: 1; }
.about__img--sm1  { width: 46%; height: 40%; bottom: 0; left: 8%; z-index: 3; }
.about__img--sm2  { width: 44%; height: 70%; top: 12%; right: 0; z-index: 2; }
.about__copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 1rem 0 1rem; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__list { display: flex; gap: 1.4rem; margin-top: 1.6rem; flex-wrap: wrap; }
.about__list li { display: flex; flex-direction: column; }
.about__list b { font-family: var(--font-display); color: var(--orange-bright); font-size: 1.05rem; }
.about__list span { font-size: 0.85rem; color: var(--ink-faint); }

/* ---- FAQ ---- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.faq__head { position: sticky; top: 100px; }
.faq__list { display: grid; gap: 0.8rem; }
.faq__item {
  border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: var(--bg-2);
  padding: 0 1.4rem; transition: border-color .3s;
}
.faq__item[open] { border-color: rgba(232,134,31,0.4); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0; font-weight: 600; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ic { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__ic::before, .faq__ic::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  top: 50%; left: 50%; transition: transform .3s var(--ease);
}
.faq__ic::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq__ic::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq__item[open] .faq__ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__item p { color: var(--ink-soft); padding: 0 0 1.2rem; font-size: 0.98rem; }

/* ---- Mobile Floating Contact-Bar ---- */
.mobilebar { display: none; }
@media (max-width: 760px) {
  .mobilebar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--stroke); border-top: 1px solid var(--stroke-strong);
    padding-bottom: env(safe-area-inset-bottom, 0); backdrop-filter: blur(10px);
  }
  .mobilebar__btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 0.5rem; font-weight: 700; font-size: 0.98rem;
  }
  .mobilebar__btn svg { width: 20px; height: 20px; }
  .mobilebar__call { background: #15171c; color: var(--ink); }
  .mobilebar__wa { background: linear-gradient(135deg, #25D366, #128C57); color: #04210f; }
  .wa-float { display: none; }
  body { padding-bottom: 58px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__media { height: 360px; }
  .faq__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .faq__head { position: static; }
  .ba { aspect-ratio: 4/3; }
}
@media (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
}

/* ============================================================================
   DSGVO: Consent-Banner, Maps-Platzhalter (Click-to-load), Route-Buttons
   ========================================================================== */
.btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }

/* Schnellkontakt-Panel (WhatsApp-first, ersetzt das Formular) */
.ctapanel {
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--stroke-strong); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.9);
}
.ctapanel h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.6rem; }
.ctapanel > p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.ctapanel__main { width: 100%; justify-content: center; font-size: 1.1rem; }
.ctapanel__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.8rem; }
.ctapanel__row .btn { justify-content: center; }
.ctapanel__hint { margin-top: 1.3rem; text-align: center; font-size: 0.85rem; color: var(--ink-faint); }
@media (max-width: 420px) { .ctapanel__row { grid-template-columns: 1fr; } }

.contact__routes { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 1.6rem 0 0; }

/* Maps-Platzhalter — lädt erst nach Einwilligung */
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem; text-align: center;
  padding: 1.5rem; background:
    linear-gradient(160deg, rgba(28,32,39,0.9), rgba(12,13,16,0.92));
}
.map-consent p { color: var(--ink-soft); font-size: 0.9rem; max-width: 340px; }
.map-consent__dp { color: var(--orange); font-size: 0.8rem; text-decoration: underline; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Consent-Banner unten */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: rgba(12,13,16,0.96); backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--stroke-strong);
  box-shadow: 0 -20px 50px -20px rgba(0,0,0,0.8);
}
.consent[hidden] { display: none; }
.consent__inner {
  width: min(100% - 2.5rem, var(--container)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.1rem 0; flex-wrap: wrap;
}
.consent__inner p { color: var(--ink-soft); font-size: 0.9rem; max-width: 720px; }
.consent__inner a { color: var(--orange); text-decoration: underline; }
.consent__btns { display: flex; gap: 0.7rem; flex-shrink: 0; }
.consent .btn { padding: 0.7rem 1.3rem; font-size: 0.92rem; }
@media (max-width: 760px) {
  .consent { bottom: 58px; }        /* über der Mobile-Contact-Bar */
  .consent__inner { padding: 0.9rem 0; gap: 0.8rem; }
  .consent__btns { width: 100%; }
  .consent__btns .btn { flex: 1; justify-content: center; }
}
