/* ==========================================================================
   AD-Repair — Design System
   Eigenständige Umsetzung im Stil eines luftigen, hellen Repair-Studios.
   ========================================================================== */

:root {
  /* Farben */
  --primary: #4d6c77;
  --primary-dark: #3a535c;
  --secondary: #c6e76c;
  --secondary-dark: #b2d654;
  --tertiary: #95c4d4;

  --ink: #14181a;
  --ink-2: #1c2225;
  --ink-3: #262e32;
  --paper: #ffffff;
  --paper-2: #f5f7f6;
  --line: rgba(20, 24, 26, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --muted: #5d6a6f;
  --muted-light: rgba(255, 255, 255, 0.68);

  /* Typo */
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.6vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.2rem + 4.6vw, 4.75rem);

  /* Abstände */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius: 14px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --section-y: clamp(3.5rem, 7vw, 7rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1, .hero .hero__title { font-size: var(--text-3xl); font-weight: 200; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-weight: 400; letter-spacing: -0.015em; line-height: 1.25; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-dark :focus-visible { outline-color: var(--secondary); }

/* ---------- Helfer ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
@media (max-width: 640px) { .container { width: min(100% - 2rem, var(--maxw)); } }

.section { padding-block: var(--section-y); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: var(--muted-light); }
.section-tint { background: var(--paper-2); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 999;
  background: var(--secondary); color: var(--ink);
  padding: var(--space-3) var(--space-5); border-radius: 999px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: var(--space-4); }

.kicker {
  display: inline-flex; align-items: center; gap: var(--space-3);
  line-height: 1.4;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary);
}
.kicker::before {
  content: ""; width: 42px; height: 1px; background: currentColor; opacity: .6;
}
.kicker--lime { color: var(--secondary); }
.section-dark .kicker { color: var(--secondary); }

.lead { font-size: var(--text-lg); font-weight: 300; color: var(--muted); line-height: 1.5; }
.section-dark .lead { color: var(--muted-light); }
.muted { color: var(--muted); }
.head-center { text-align: center; max-width: 44rem; margin-inline: auto; }
.head-center h2 { margin-top: var(--space-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.9rem 1.6rem; border-radius: 999px;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--lime { background: var(--secondary); color: var(--ink); }
.btn--lime:hover { background: var(--secondary-dark); }
.btn--outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--primary); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  font-size: var(--text-xs);
  position: relative; z-index: 60;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); min-height: 44px; padding-block: var(--space-2);
}
.topbar__facts { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.topbar__facts span { display: inline-flex; align-items: center; gap: var(--space-2); }
.topbar__facts svg { width: 14px; height: 14px; color: var(--secondary); flex: none; }
.topbar__cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--secondary); color: var(--ink);
  padding: 0.4rem 0.95rem; border-radius: 999px; font-weight: 700;
  white-space: nowrap; transition: background-color .2s;
}
.topbar__cta:hover { background: var(--secondary-dark); }
.topbar__cta svg { width: 15px; height: 15px; }
@media (max-width: 900px) {
  .topbar__facts span:nth-child(2) { display: none; }
}
@media (max-width: 560px) {
  .kicker { letter-spacing: 0.14em; font-size: 0.7rem; }
  .topbar__inner { gap: var(--space-3); }
  .topbar__facts span:first-child { font-size: 0.7rem; line-height: 1.35; }
  .topbar__cta { padding: 0.4rem 0.8rem; font-size: 0.72rem; }
}

/* ---------- Header ---------- */
.site-header {
  position: absolute; inset-inline: 0; top: 44px; z-index: 50;
  transition: background-color .3s, box-shadow .3s, top .3s;
}
.site-header.is-stuck {
  position: fixed; top: 0;
  background: rgba(20, 24, 26, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); min-height: 76px;
}
.brand-wordmark,
.brand-seal {
  display: block;
  color: #fff;
  line-height: 0;
}
.brand-wordmark svg,
.brand-seal svg {
  display: block;
  overflow: visible;
  max-width: none;
}
.brand-wordmark--header svg { height: 38px; width: auto; }
.brand-wordmark--mobile svg { height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  color: rgba(255,255,255,.86); font-size: var(--text-sm); font-weight: 500;
  position: relative; padding-block: var(--space-2);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0;
  background: var(--secondary); transition: width .3s;
}
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
.header__cta { display: inline-flex; gap: var(--space-3); align-items: center; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); align-items: center; justify-content: center;
}
.burger span {
  display: block; width: 20px; height: 1.5px; background: #fff; position: relative;
  transition: transform .3s, background-color .3s;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: #fff;
  transition: transform .3s, opacity .3s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile Panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ink); color: #fff;
  padding: var(--space-6) var(--space-6) var(--space-10);
  display: flex; flex-direction: column; gap: var(--space-6);
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__close { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display:flex; align-items:center; justify-content:center; }
.mobile-nav__close svg { width: 18px; height: 18px; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav ul a {
  display: block; padding: var(--space-4) 0; font-size: 1.5rem; font-weight: 200;
  letter-spacing: -0.03em; border-bottom: 1px solid var(--line-light);
}
.mobile-nav__foot { display: grid; gap: var(--space-3); }
.mobile-nav__foot .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; isolation: isolate; background: var(--ink); }
@media (max-width: 640px) { .hero { min-height: 92svh; } }
.hero__slide {
  grid-area: 1 / 1; position: relative; display: grid; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .9s ease;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero__slide.is-active .hero__bg img { animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active .hero__bg img { animation: none; }
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,19,21,.92) 0%, rgba(15,19,21,.75) 45%, rgba(15,19,21,.45) 100%);
}
/* Dekorative Partikel-Ebene: über dem Bild, unter Text und Buttons */
.hero__particles {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__particles.is-in { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__particles { transition: none; }
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(7rem, 16vh, 11rem) clamp(9rem, 18vh, 12rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: var(--space-10); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1, .hero .hero__title { color: #fff; margin-top: var(--space-5); max-width: 12ch; }
.hero__teaser { margin-top: var(--space-6); max-width: 42ch; color: rgba(255,255,255,.82); font-weight: 300; font-size: var(--text-lg); line-height: 1.55; }
.hero__actions { margin-top: var(--space-8); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__art { justify-self: center; width: min(100%, 380px); color: var(--secondary); }
@media (max-width: 900px) { .hero__art { display: none; } }
.hero__art svg { width: 100%; height: auto; }
.line-art path, .line-art circle, .line-art rect, .line-art line, .line-art polyline {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  animation: draw 2.6s ease forwards;
}
.hero__slide.is-active .line-art path,
.hero__slide.is-active .line-art circle,
.hero__slide.is-active .line-art rect,
.hero__slide.is-active .line-art line,
.hero__slide.is-active .line-art polyline { animation: draw 2.6s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .line-art * { animation: none !important; stroke-dashoffset: 0 !important; }
}

.hero__controls {
  position: absolute; z-index: 3; bottom: clamp(4.5rem, 12vh, 7rem); left: 0; right: 0;
}
.hero__controls .container { display: flex; align-items: center; gap: var(--space-4); }
.hero__dot {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: background-color .25s, color .25s, border-color .25s;
}
.hero__dot:hover { background: var(--secondary); color: var(--ink); border-color: var(--secondary); }
.hero__dot svg { width: 16px; height: 16px; }
.hero__count { color: rgba(255,255,255,.7); font-size: var(--text-xs); letter-spacing: .18em; }
.hero__count b { color: var(--secondary); font-weight: 700; }

/* ---------- Kategorien-Leiste ---------- */
.cats { position: relative; z-index: 5; margin-top: clamp(-5rem, -6vw, -3rem); }
.cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
@media (max-width: 900px) { .cats__grid { grid-template-columns: 1fr; } }
.cat {
  position: relative; background: var(--ink-2); color: #fff;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: var(--space-8);
  transition: transform .35s, background-color .35s;
  overflow: hidden;
}
.cat:hover { transform: translateY(-6px); background: var(--ink-3); }
.cat__num {
  position: absolute; top: var(--space-6); right: var(--space-6);
  font-size: 1.4rem; font-weight: 700; color: var(--secondary); opacity: .45;
}
.cat__icon { width: 56px; height: 56px; color: var(--secondary); margin-bottom: var(--space-5); }
.cat h3 { font-size: var(--text-lg); font-weight: 500; }
.cat p { margin-top: var(--space-3); color: var(--muted-light); font-size: var(--text-sm); }

/* ---------- Warum (Feature-Grid) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-10) var(--space-8); margin-top: var(--space-12); }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; gap: var(--space-8); } }
.feature { display: flex; gap: var(--space-5); }
.feature__icon {
  flex: none; width: 62px; height: 62px; border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--primary);
  transition: background-color .3s, border-color .3s, color .3s;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature:hover .feature__icon { background: var(--secondary); border-color: var(--secondary); color: var(--ink); }
.feature h3 { font-size: var(--text-lg); font-weight: 500; }
.feature p { margin-top: var(--space-2); color: var(--muted); font-size: var(--text-sm); }

/* ---------- Parallax-Zahlen ---------- */
.stats { position: relative; overflow: hidden; color: #fff; }
.stats__bg { position: absolute; inset: -12% 0; }
.stats__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.stats__bg::after { content: ""; position: absolute; inset: 0; background: rgba(12,15,17,.82); }
.stats__inner { position: relative; z-index: 2; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-12); }
@media (max-width: 860px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); } }
.stat { text-align: center; padding-inline: var(--space-2); }
.stat + .stat { border-left: 1px solid var(--line-light); }
@media (max-width: 860px) { .stat:nth-child(odd) { border-left: 0; } }
.stat__num {
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem); font-weight: 200; line-height: 1;
  letter-spacing: -0.04em; color: var(--secondary);
}
.stat__num small { font-size: 0.4em; font-weight: 500; letter-spacing: 0; margin-left: .15em; }
.stat__label { margin-top: var(--space-3); font-size: var(--text-sm); color: rgba(255,255,255,.75); }

/* ---------- Marquee ---------- */
.marquee { background: var(--secondary); color: var(--ink); overflow: hidden; padding-block: var(--space-4); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee__group { display: flex; align-items: center; }
.marquee__group span {
  display: inline-flex; align-items: center; gap: var(--space-6);
  padding-inline: var(--space-6);
  font-size: clamp(1rem, .8rem + .6vw, 1.5rem); font-weight: 300; letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee__group span::after { content: "◆"; font-size: .45em; opacity: .5; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-12); position: relative; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-10) var(--space-6); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--space-8); }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--line);
}
.step::after {
  content: ""; position: absolute; top: -4px; left: 0; width: 9px; height: 9px;
  border-radius: 50%; background: var(--secondary);
}
.step__num {
  font-size: clamp(2.25rem, 1.5rem + 2.4vw, 3.5rem); font-weight: 200; line-height: 1;
  letter-spacing: -0.05em; color: var(--primary); opacity: .35;
}
.step h3 { margin-top: var(--space-4); font-size: var(--text-lg); font-weight: 500; }
.step p { margin-top: var(--space-2); color: var(--muted); font-size: var(--text-sm); }

/* ---------- Leistungen ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: var(--space-12); }
@media (max-width: 1000px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } }
.service {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-6); background: #fff;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service:hover { transform: translateY(-6px); border-color: var(--ink); box-shadow: 0 18px 40px rgba(20,24,26,.08); }
.service__icon { width: 40px; height: 40px; color: var(--primary); }
.service:hover .service__icon { color: var(--ink); }
.service h3 { margin-top: var(--space-5); font-size: var(--text-base); font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.service p { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .8s; }
.split__media:hover img { transform: scale(1.04); }

/* ---------- Preise ---------- */
.price-list { margin-top: var(--space-12); border-top: 1px solid var(--line); }
.price-row {
  display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: baseline;
  gap: var(--space-4); padding-block: var(--space-5);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s, padding-inline .25s;
}
.price-row:hover { background: var(--paper-2); padding-inline: var(--space-4); }
.price-row__name { font-size: var(--text-lg); font-weight: 300; letter-spacing: -0.02em; }
.price-row__note { display: block; font-size: var(--text-xs); color: var(--muted); font-weight: 400; letter-spacing: 0; margin-top: 2px; }
.price-row__value { font-size: var(--text-lg); font-weight: 600; white-space: nowrap; }
.price-row__value em { font-style: normal; font-size: var(--text-xs); font-weight: 500; color: var(--muted); margin-right: .35em; }
.price-note {
  margin-top: var(--space-8); padding: var(--space-6);
  border: 1px solid var(--line); border-left: 3px solid var(--secondary);
  border-radius: var(--radius); background: var(--paper-2);
  font-size: var(--text-sm); color: var(--muted);
}
.price-note strong { color: var(--ink); }

/* ---------- Über mich ---------- */
.about__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand-seal--about {
  width: 76px;
  color: var(--ink);
  flex: none;
}
.brand-seal--about svg { width: 100%; height: auto; }
.about__facts { margin-top: var(--space-8); display: grid; gap: var(--space-4); }
.about__facts li { display: flex; gap: var(--space-3); font-size: var(--text-sm); color: var(--muted); }
.about__facts svg { width: 20px; height: 20px; flex: none; color: var(--secondary); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { margin-top: var(--space-10); border-top: 1px solid var(--line-light); }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  padding-block: var(--space-5); text-align: left;
  font-size: var(--text-lg); font-weight: 300; letter-spacing: -0.02em; color: #fff;
  transition: color .25s;
}
.faq__q:hover { color: var(--secondary); }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background-color .25s, color .25s, transform .35s; }
.faq__icon svg { width: 14px; height: 14px; }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--secondary); color: var(--ink); transform: rotate(45deg); }
.faq__a { overflow: hidden; height: 0; transition: height .35s ease; }
.faq__a p { padding-bottom: var(--space-5); max-width: 62ch; color: var(--muted-light); font-size: var(--text-sm); }

/* ---------- Kontakt ---------- */
.contact-panel {
  background: var(--ink-2); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 900px) { .contact-panel { grid-template-columns: 1fr; } }
.contact__content { position: relative; padding-right: 96px; }
.brand-seal--contact {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  color: #fff;
}
.brand-seal--contact svg { width: 100%; height: auto; }
.contact-list { margin-top: var(--space-8); display: grid; gap: var(--space-5); }
.contact-list > a, .contact-list > div {
  display: flex; gap: var(--space-4); align-items: flex-start;
  color: #fff; font-size: var(--text-base);
}
.contact-list svg { width: 22px; height: 22px; flex: none; color: var(--secondary); margin-top: 3px; }
.contact-list span { display: block; font-size: var(--text-xs); color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }
.contact-list a:hover { color: var(--secondary); }
.contact__actions { margin-top: var(--space-8); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.12); min-height: 320px; height: 100%; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.25) contrast(1.02); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: var(--section-y); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--space-10); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  color: #fff;
}
.brand-seal--footer {
  width: 84px;
  flex: none;
}
.brand-seal--footer svg { width: 100%; height: auto; }
.brand-wordmark--footer {
  width: min(100%, 270px);
  flex: none;
}
.brand-wordmark--footer svg { width: 100%; height: auto; }
.site-footer h4 { color: #fff; font-size: var(--text-sm); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--space-5); }
.site-footer ul { display: grid; gap: var(--space-3); font-size: var(--text-sm); }
.site-footer a:hover { color: var(--secondary); }
.footer__note {
  margin-top: var(--space-6); font-size: var(--text-xs); color: rgba(255,255,255,.5);
  border: 1px dashed var(--line-light); border-radius: var(--radius); padding: var(--space-4);
}
.subfooter {
  margin-top: var(--space-12); border-top: 1px solid var(--line-light);
  padding-block: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: space-between; font-size: var(--text-xs);
}
.subfooter ul { display: flex; gap: var(--space-5); }

@media (max-width: 560px) {
  .brand-wordmark--header svg { height: 33px; }
  .brand-seal--about { width: 62px; }
  .contact__content { padding-right: 72px; }
  .brand-seal--contact { width: 58px; }
  .footer__brand { align-items: flex-start; }
  .brand-seal--footer { width: 68px; }
  .brand-wordmark--footer { width: min(100%, 240px); }
}

/* ---------- Floating ---------- */
.fab-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 70;
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--secondary); color: var(--ink);
  padding: 0.85rem 1.25rem; border-radius: 999px; font-weight: 700; font-size: var(--text-sm);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.fab-wa svg { width: 20px; height: 20px; }
@media (min-width: 901px) { .fab-wa { display: none; } }

.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 65;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background-color .25s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--primary); }
.to-top svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .to-top { left: 1rem; right: auto; bottom: 1rem; width: 44px; height: 44px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Kontaktzeilen-Text */
.cl-text { line-height: 1.35; }

/* ==========================================================================
   Preisrechner + Preisliste
   ========================================================================== */

/* ---------- Rechner ---------- */
.calc { margin-top: var(--space-12); }
.calc__controls {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-6) var(--space-8); align-items: end;
}
@media (max-width: 760px) { .calc__controls { grid-template-columns: 1fr; gap: var(--space-6); } }
.calc__field { min-width: 0; }
.calc__label {
  display: block; margin-bottom: var(--space-3);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}

.pill-tabs { display: inline-flex; gap: var(--space-3); flex-wrap: wrap; }
.pill-tab {
  padding: 0.7rem 1.5rem; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-size: var(--text-sm); font-weight: 500; letter-spacing: -0.01em;
  transition: background-color .25s, color .25s, border-color .25s;
}
.pill-tab:hover { border-color: var(--ink); }
.pill-tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; -webkit-appearance: none;
  width: 100%; font: inherit; font-weight: 300;
  font-size: var(--text-lg); letter-spacing: -0.02em; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.8rem 3.25rem 0.8rem 1.5rem;
  transition: border-color .25s;
  text-overflow: ellipsis;
}
.select-wrap select:hover { border-color: var(--ink); }
.select-wrap svg {
  position: absolute; right: 1.35rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted); pointer-events: none;
}

.calc__empty {
  margin-top: var(--space-8);
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm); color: var(--muted); max-width: 62ch;
}
.calc.has-selection .calc__empty { display: none; }

.calc__results {
  margin-top: var(--space-8);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4);
}
@media (max-width: 720px) { .calc__results { grid-template-columns: 1fr; } }
.calc-card {
  position: relative; overflow: hidden;
  background: var(--ink-2); color: #fff;
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: var(--space-8);
}
.calc-card__kicker {
  display: block; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.calc-card__price {
  margin-top: var(--space-4);
  font-size: clamp(2.5rem, 1.6rem + 3.2vw, 4rem); font-weight: 200; line-height: 1;
  letter-spacing: -0.05em; color: var(--secondary);
}
.calc-card__model {
  display: block; margin-top: var(--space-3);
  font-size: var(--text-sm); font-weight: 400; letter-spacing: -0.01em; color: rgba(255,255,255,.78);
}
.calc-card__meta { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--muted-light); }
.calc-card__cta { margin-top: var(--space-6); background: var(--secondary); color: var(--ink); }
.calc-card__cta:hover { background: var(--secondary-dark); }
.calc-card.is-live .calc-card__price,
.calc-card.is-live .calc-card__cta { animation: priceIn .5s cubic-bezier(.22,1,.36,1) both; }
@keyframes priceIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .calc-card.is-live .calc-card__price, .calc-card.is-live .calc-card__cta { animation: none; }
}
.calc .price-note { margin-top: var(--space-8); }

/* ---------- Preisliste ---------- */
.pl { margin-top: var(--space-12); }
.pl__search { max-width: 30rem; }
.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute; left: 1.3rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted); pointer-events: none;
}
.search-wrap input {
  width: 100%; font: inherit; font-size: var(--text-base); color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.8rem 1.5rem 0.8rem 3.25rem;
  transition: border-color .25s;
}
.search-wrap input::placeholder { color: var(--muted); opacity: .75; }
.search-wrap input:hover { border-color: var(--ink); }
.pl__hint { margin-top: var(--space-3); font-size: var(--text-xs); color: var(--muted); min-height: 1.2em; }

.pl-brand { margin-top: var(--space-12); }
.pl-brand__head { display: flex; align-items: baseline; gap: var(--space-4); }
.pl-brand__num {
  font-size: clamp(2.25rem, 1.6rem + 2.2vw, 3.25rem); font-weight: 200; line-height: 1;
  letter-spacing: -0.05em; color: var(--primary); opacity: .3;
}
.pl-brand__name { font-size: var(--text-xl); font-weight: 400; letter-spacing: -0.03em; }
.pl-brand__count { font-size: var(--text-xs); color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.pl-series { border-top: 1px solid var(--line); }
.pl-brand .pl-series:last-of-type { border-bottom: 1px solid var(--line); }
.pl-series > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  padding-block: var(--space-5);
  font-size: var(--text-lg); font-weight: 300; letter-spacing: -0.02em;
  transition: color .25s;
}
.pl-series > summary::-webkit-details-marker { display: none; }
.pl-series > summary:hover { color: var(--primary); }
.pl-series__meta { display: inline-flex; align-items: center; gap: var(--space-4); flex: none; }
.pl-series__count { font-size: var(--text-xs); color: var(--muted); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pl-series__icon {
  width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: background-color .25s, color .25s, transform .35s, border-color .25s;
}
.pl-series__icon svg { width: 14px; height: 14px; }
.pl-series[open] > summary .pl-series__icon { background: var(--secondary); border-color: var(--secondary); color: var(--ink); transform: rotate(45deg); }

.pl-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-6); }
.pl-table th, .pl-table td { text-align: left; padding: var(--space-3) var(--space-4); }
.pl-table th {
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--line);
}
.pl-table th:not(:first-child), .pl-table td:not(:first-child) { text-align: right; white-space: nowrap; width: 1%; }
.pl-table td { border-bottom: 1px solid var(--line); font-size: var(--text-sm); }
.pl-table tbody tr:last-child td { border-bottom: 0; }
.pl-table tbody tr { transition: background-color .2s; }
.pl-table tbody tr:hover { background: rgba(20,24,26,.035); }
.pl-table .pl-model { font-size: var(--text-base); font-weight: 400; letter-spacing: -0.01em; }
.pl-table td[data-label]:not(:first-child) { font-weight: 600; }
tr[hidden] { display: none; }

/* Mobil: gestapelte Karten statt Tabelle */
@media (max-width: 700px) {
  .pl-table, .pl-table tbody, .pl-table tr, .pl-table td { display: block; width: 100%; }
  .pl-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .pl-table tr {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; padding: var(--space-4); margin-bottom: var(--space-3);
  }
  .pl-table tr:hover { background: #fff; }
  .pl-table td { border-bottom: 0; padding: 0; }
  .pl-table td:first-child { font-size: var(--text-base); font-weight: 500; letter-spacing: -0.01em; margin-bottom: var(--space-3); }
  .pl-table td[data-label]:not(:first-child) {
    display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4);
    width: auto; text-align: left; white-space: normal;
    padding-top: var(--space-2); border-top: 1px solid var(--line);
    font-size: var(--text-sm);
  }
  .pl-table td[data-label]:not(:first-child)::before {
    content: attr(data-label);
    font-size: var(--text-xs); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  }
}

.pl__none {
  margin-top: var(--space-8); padding: var(--space-6);
  border: 1px dashed var(--line); border-radius: var(--radius);
  font-size: var(--text-sm); color: var(--muted);
}
.pl__none a { text-decoration: underline; }

/* ---------- Weitere Leistungen ---------- */
.extra { margin-top: var(--space-16); }
.extra__title { font-size: var(--text-xl); font-weight: 300; letter-spacing: -0.03em; }
.extra__sub { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--muted); max-width: 56ch; }
.extra .price-list { margin-top: var(--space-6); }
.extra .price-row:hover { background: rgba(20,24,26,.035); }

tr[hidden], .pl-series[hidden], .pl-brand[hidden] { display: none !important; }

.calc-card__cta[hidden] { display: none; }

/* ==========================================================================
   Karten-Einwilligung (additiv, 2026-08) — OSM laedt erst nach Klick
   ========================================================================== */
.map--loaded { display: block; }
.mapask {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(149,196,212,.16), transparent 58%),
    radial-gradient(circle at 78% 78%, rgba(198,231,108,.12), transparent 55%),
    var(--ink-2);
}
.mapask__ico { width: 30px; height: 30px; color: var(--secondary); opacity: .9; }
.mapask__h {
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.mapask__t {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--muted-light);
  max-width: 34ch;
}
.mapask__btn { margin-top: var(--space-2); }
.mapask__f {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
}
.mapask__f a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mapask__f a:hover { color: var(--secondary); }
@media (max-width: 560px) {
  .mapask { padding: var(--space-6) var(--space-4); }
  .mapask__t { max-width: 30ch; }
}
