/* ============================================================
   CARWASH BUXTEHUDE — „NACHTGLANZ" · Autopflege 1 (Demo)
   Palette-Flip 23.07. (Hamada): helles Logo-Mint = HINTERGRUND,
   dunkles Indigo = Schrift. Dunkle Video-Bühnen: Hero · Waschgang · Footer.
   ============================================================ */

@font-face {
  font-family: "Sora";
  src: url("fonts/sora-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("fonts/sora-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("fonts/albert-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("fonts/albert-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("fonts/albert-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Chivo Mono";
  src: url("fonts/chivo-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Chivo Mono";
  src: url("fonts/chivo-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  /* Hell: Logo-Mint als Fläche */
  --mint-bg: #d7ece8; /* Seiten-Hintergrund (Logo-Oval, leicht satter) */
  --mint-2: #e6f4f1; /* hellere Zone */
  --mint-deep: #c3e2dc; /* tiefere Mint-Bänder */
  --surface: #f2faf8; /* fast weiße Karten */
  /* Dunkel: Video-Bühnen + Schrift */
  --nacht: #070a1c;
  --tiefe: #0c1130;
  --ink: #14194a; /* Logo-Indigo dunkel — Schrift auf Mint */
  --ink-2: #46527e; /* Sekundärtext auf Mint */
  --indigo: #4a44a8; /* Logo-Schriftzug — Akzent/CTA auf hell */
  --indigo-h: #5d56c0;
  --aqua: #9fd9cf; /* nur noch auf DUNKLEN Bühnen als Licht */
  --aqua-h: #c8efe8;
  --foam: #f2f7f5; /* Text auf dunklen Bühnen */
  --silver: #a9b2c5; /* Sekundär auf dunkel */
  --line-1: rgba(20, 25, 74, 0.12);
  --line-2: rgba(20, 25, 74, 0.2);
  --line-3: rgba(20, 25, 74, 0.34);
  --dline-1: rgba(242, 247, 245, 0.1);
  --dline-2: rgba(242, 247, 245, 0.16);
  --dline-3: rgba(242, 247, 245, 0.26);
  --ease-cinema: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Albert Sans", system-ui, sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, monospace;
  --maxw: 1440px;
  --pad-x: clamp(1.25rem, 4.5vw, 4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--mint-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  --fab-space: 5.5rem;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto; /* width/height-Attribute nie verzerren lassen (Hamada 23.07.) */
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--indigo);
  color: var(--foam);
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- Blasen-Canvas (Signature, site-weit auf Mint) ---------- */
#bubbles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
main,
.site-footer {
  position: relative;
  z-index: 1;
}
.site-nav,
.fab {
  z-index: 50;
}

/* ---------- Navigation (hell) ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--pad-x);
  transition:
    background 0.24s var(--ease-cinema),
    box-shadow 0.24s var(--ease-cinema),
    padding 0.24s var(--ease-cinema);
}
.site-nav.is-solid {
  background: rgba(230, 244, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-1);
  padding-block: 0.6rem;
}
/* Auf dunklem Hero: Nav-Text hell, bis sie solid wird */
.site-nav {
  color: var(--foam);
}
.site-nav.is-solid {
  color: var(--ink);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand img {
  height: 88px; /* Hamada 24.07.: Logo groß */
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(7, 10, 28, 0.25));
  transition: height 0.24s var(--ease-cinema);
}
.site-nav.is-solid .nav-brand img {
  height: 64px;
}
@media (max-width: 860px) {
  .nav-brand img,
  .site-nav.is-solid .nav-brand img {
    height: 62px;
  }
}
.nav-brand span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--indigo);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease-cinema);
}
.site-nav:not(.is-solid) .nav-links a::after {
  background: var(--aqua);
}
@media (hover: hover) {
  .nav-links a:hover::after {
    transform: scaleX(1);
  }
}
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--foam);
  background: var(--indigo);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition:
    background 0.2s var(--ease-cinema),
    transform 0.14s var(--ease-cinema);
}
@media (hover: hover) {
  .nav-cta:hover {
    background: var(--indigo-h);
  }
}
.nav-cta:active {
  transform: scale(0.96);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(230, 244, 241, 0.97);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s var(--ease-cinema);
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
  }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }
}

/* ---------- Fixer Kontakt-FAB (§0e Nr. 12) ---------- */
.fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--indigo);
  color: var(--foam);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(20, 25, 74, 0.35);
  transition:
    background 0.2s var(--ease-cinema),
    transform 0.14s var(--ease-cinema);
}
.fab svg {
  width: 19px;
  height: 19px;
  flex: none;
}
@media (hover: hover) {
  .fab:hover {
    background: var(--indigo-h);
  }
}
.fab:active {
  transform: scale(0.95);
}

/* ---------- Typo ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.riesenzeile {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8.5vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--ink-2);
  max-width: 64ch;
}
.eyebrow {
  /* Hamada 23.07.: Mono-Uppercase wirkte unschön → klare Display-Zeile */
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--indigo);
  opacity: 0.6;
}
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--indigo);
  color: var(--foam);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  transition:
    background 0.2s var(--ease-cinema),
    transform 0.14s var(--ease-cinema);
}
@media (hover: hover) {
  .btn:hover {
    background: var(--indigo-h);
  }
}
.btn:active {
  transform: scale(0.96);
}
.btn--ghost {
  background: transparent;
  color: inherit;
  box-shadow: 0 0 0 1px currentColor inset;
}
@media (hover: hover) {
  .btn--ghost:hover {
    background: rgba(20, 25, 74, 0.06);
  }
}
/* Heller CTA auf dunkler Bühne (Hero) */
.hero .btn {
  background: var(--aqua);
  color: var(--nacht);
}
@media (hover: hover) {
  .hero .btn:hover {
    background: var(--aqua-h);
  }
}

/* ---------- HERO (dunkle Video-Bühne) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: clip;
  isolation: isolate;
  color: var(--foam);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media video {
  position: absolute;
  inset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero__media video {
    display: none;
  }
}
.hero__tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    var(--nacht) 4%,
    rgba(7, 10, 28, 0.55) 34%,
    rgba(7, 10, 28, 0.18) 62%,
    rgba(7, 10, 28, 0.42) 100%
  );
}
@media (max-width: 700px) {
  .hero__tint {
    background: linear-gradient(
      to top,
      var(--nacht) 6%,
      rgba(7, 10, 28, 0.72) 40%,
      rgba(7, 10, 28, 0.38) 70%,
      rgba(7, 10, 28, 0.5) 100%
    );
  }
}
.hero__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bubbles canvas {
  width: 100%;
  height: 100%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.5rem, 6vh, 5rem);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 3.2rem;
  align-items: flex-end;
  margin-top: 2.4rem;
}
/* Hero-Stats: Bewertung + Standorte groß (Hamada 23.07.) */
.hero__meta .stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--foam);
}
.hero__meta .stat--big b {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--aqua);
}
.hero__meta .stat b i {
  font-style: normal;
}
.hero__meta .stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--silver);
  margin-top: 0.35rem;
}
.hero .display {
  margin-left: -0.05em;
}
.hero .line-wrap {
  display: block;
  overflow: clip;
}
.hero .line {
  display: inline-block;
  will-change: transform;
}
.hero .display .aqua {
  color: var(--aqua);
}
.hero__sub {
  max-width: 56ch;
  color: var(--silver);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin-top: 1.4rem;
}
.hero__cta {
  margin-top: 2.2rem;
}
.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(2.5rem, 6vh, 5rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: var(--dline-3);
  animation: scrollpulse 2.2s var(--ease-io) infinite;
}
@keyframes scrollpulse {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@media (max-width: 860px) {
  .hero__scroll {
    display: none;
  }
}

/* ---------- Sektionen / Rhythmus ---------- */
.sec {
  position: relative;
}
.sec--band {
  padding-block: 5rem;
}
.sec--tafel {
  padding-block: 9rem;
}
.sec--wasch {
  padding-block: 14rem;
}
.sec--usp {
  padding-block: 7rem;
}
.sec--karte {
  padding-block: 4rem;
}
.sec--kontakt {
  padding-block: 10rem;
}
.sec--sub {
  padding-block: 6.5rem;
}

/* ---------- Standort-/Trust-Band (tieferes Mint) ---------- */
.band {
  border-block: 1px solid var(--line-1);
  background: var(--mint-deep);
}
.band__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-2);
}
.band__row b {
  color: var(--ink);
  font-weight: 500;
}
.band__claim {
  color: var(--indigo);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Programm-Preistafel ---------- */
.tafel {
  margin-top: 4.5rem;
  border-top: 1px solid var(--line-2);
}
.tafel__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem 2.4rem;
  align-items: baseline;
  padding-block: 2.1rem;
  border-bottom: 1px solid var(--line-2);
  position: relative;
  transition: padding-left 0.24s var(--ease-cinema);
}
.tafel__row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-cinema);
}
@media (hover: hover) {
  .tafel__row:hover {
    padding-left: 1.2rem;
  }
  .tafel__row:hover::before {
    transform: scaleX(1);
  }
}
.tafel__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--indigo);
}
.tafel__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tafel__detail {
  grid-column: 2;
  font-size: 0.98rem;
  color: var(--ink-2);
  max-width: 58ch;
}
.tafel__price {
  grid-row: 1 / span 2;
  grid-column: 3;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--indigo);
  margin-right: calc(var(--pad-x) * -0.35);
}
@media (max-width: 700px) {
  .tafel__row {
    grid-template-columns: auto 1fr;
  }
  .tafel__price {
    grid-row: auto;
    grid-column: 2;
    margin-right: 0;
    justify-self: start;
  }
}
.tafel__foot {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
}

/* ---------- ⭐ Waschgang (dunkle Pin/Scrub-Bühne) ---------- */
.wasch {
  position: relative;
}
.wasch__marginalie {
  /* Hamada 24.07.: waagerecht statt senkrecht */
  position: absolute;
  left: var(--pad-x);
  top: 4.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--indigo);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wasch__marginalie::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--indigo);
  opacity: 0.6;
}
.wasch__stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  color: var(--foam);
}
.wasch__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--nacht);
}
.wasch__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.wasch__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 10, 28, 0.88) 0%,
    rgba(7, 10, 28, 0.55) 46%,
    rgba(7, 10, 28, 0.22) 100%
  );
}
.wasch__copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}
.wasch__step {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.wasch__step.is-active {
  position: relative;
}
.wasch__step .mono-step {
  font-family: var(--font-mono);
  color: var(--aqua);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
.wasch__step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-block: 0.9rem 1rem;
}
.wasch__step p {
  color: var(--silver);
  max-width: 44ch;
}
.wasch__progress {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wasch__progress .track {
  flex: 1;
  height: 2px;
  background: var(--dline-2);
  border-radius: 2px;
  overflow: hidden;
}
.wasch__progress .fill {
  height: 100%;
  width: 100%;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
}
.wasch__progress .lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--silver);
  letter-spacing: 0.14em;
}

/* ---------- USP-Zeilen (hell) ---------- */
.usp-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.usp-row + .usp-row {
  margin-top: clamp(5rem, 9vw, 8rem);
}
.usp-row__media {
  grid-column: 1 / 8;
  position: relative;
}
.usp-row__copy {
  grid-column: 8 / 13;
}
.usp-row--flip .usp-row__media {
  grid-column: 6 / 13;
  order: 2;
}
.usp-row--flip .usp-row__copy {
  grid-column: 1 / 6;
  order: 1;
}
.usp-row__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(20, 25, 74, 0.28);
}
.usp-row__media .caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foam);
  background: rgba(7, 10, 28, 0.72);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  backdrop-filter: blur(6px);
}
.usp-row__copy .h2 {
  margin-block: 1rem 1.2rem;
}
.usp-row__copy p {
  color: var(--ink-2);
  max-width: 52ch;
}
.usp-row__copy .li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line-1);
  font-size: 0.98rem;
}
.usp-row__copy .li:first-of-type {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line-1);
}
.usp-row__copy .li .tick {
  color: var(--indigo);
  font-family: var(--font-mono);
  flex: none;
}
@media (max-width: 860px) {
  .usp-row__media,
  .usp-row__copy,
  .usp-row--flip .usp-row__media,
  .usp-row--flip .usp-row__copy {
    grid-column: 1 / -1;
    order: unset;
  }
}

/* ---------- Stimmen: echte Google-5★-Diashow (Hamada 24.07.) ---------- */
.sec--stimmen {
  padding-block: 8rem;
}
.stimmen__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3.5rem;
  margin-bottom: 3rem;
}
.stimmen__score {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stimmen__score > b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  color: var(--indigo);
  line-height: 1;
}
.stimmen__score .stars {
  display: block;
  color: #f5b301;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.stimmen__score .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-2);
  margin-top: 0.3rem;
}
/* Stimmen-Schiene: Karten nebeneinander, endlos durchlaufend */
.diashow {
  position: relative;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
.diashow__stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}
.diashow__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  /* JS setzt translateX; Fallback-CSS-Animation wenn JS langsam */
}
.dia {
  flex: 0 0 auto;
  width: min(22.5rem, 78vw);
  margin: 0;
  box-sizing: border-box;
  padding: 1.65rem 1.5rem 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 25, 74, 0.1);
  box-shadow: 0 10px 32px rgba(20, 25, 74, 0.08);
  display: flex;
  flex-direction: column;
}
.dia__stars {
  color: #f5b301;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.dia blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0;
  flex: 1;
  text-wrap: balance;
}
.dia figcaption {
  margin-top: 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-2);
}
.dia figcaption b {
  color: var(--ink);
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  .diashow__stage {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-type: x mandatory;
    padding-inline: 1rem;
  }
  .diashow__track {
    transform: none !important;
  }
  .dia {
    scroll-snap-align: start;
  }
}

/* ---------- Wertkarte-Band (dunkle Karte auf Mint) ---------- */
.karte {
  position: relative;
  border-radius: 6px;
  overflow: clip;
  isolation: isolate;
  min-height: 30rem;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #171d55, var(--tiefe) 55%, #0a0e26);
  box-shadow: 0 24px 60px rgba(20, 25, 74, 0.3);
  color: var(--foam);
}
.karte__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.karte__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.karte__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 10, 28, 0.92) 10%,
    rgba(12, 17, 48, 0.35) 70%
  );
}
.karte__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  width: 100%;
}
.karte__inner .h2 {
  max-width: 16ch;
}
.karte__bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.karte__bonus span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--dline-2) inset;
  color: var(--silver);
}
.karte__bonus span b {
  color: var(--aqua);
  font-weight: 500;
}

/* ---------- Aufbereitung-Anriss ---------- */
.anriss {
  position: relative;
}
.anriss__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.anriss__copy {
  grid-column: 1 / 7;
  padding-block: 6rem;
}
.anriss__media {
  grid-column: 7 / 13;
  margin-bottom: -7rem;
  position: relative;
  z-index: 2;
}
.anriss__media img {
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(20, 25, 74, 0.35);
}
@media (max-width: 860px) {
  .anriss__copy,
  .anriss__media {
    grid-column: 1 / -1;
  }
  .anriss__media {
    margin-bottom: -3.5rem;
  }
}

/* ---------- Zahlarten-Leiste (Original-Icons der Alt-Seite, Hamada 24.07.) ---------- */
.payrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.payrow img {
  height: 44px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  box-shadow:
    0 0 0 1px var(--line-1) inset,
    0 4px 12px rgba(20, 25, 74, 0.08);
}
.payrow--sm img {
  height: 34px;
}

/* ---------- Standorte-Zeilen (alle 4, mit Facebook — Hamada 23.07.) ---------- */
.standorte {
  margin-top: 3rem;
  border-top: 1px solid var(--line-2);
}
.standort {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 2.5rem;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--line-2);
}
.standort__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
}
.standort__name em {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--mint-deep);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 0.6rem;
}
.standort__adr {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}
.standort__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pillbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--indigo);
  color: var(--foam);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.2s var(--ease-cinema),
    transform 0.14s var(--ease-cinema);
}
@media (hover: hover) {
  .pillbtn:hover {
    background: var(--indigo-h);
  }
}
.pillbtn:active {
  transform: scale(0.96);
}
.pillbtn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line-3) inset;
}
@media (hover: hover) {
  .pillbtn--ghost:hover {
    background: rgba(20, 25, 74, 0.07);
  }
}
.pillbtn--route {
  background: var(--mint-deep);
  color: var(--ink);
}
@media (hover: hover) {
  .pillbtn--route:hover {
    background: var(--aqua);
  }
}
.pillbtn i {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--foam);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1;
}
@media (max-width: 760px) {
  .standort {
    grid-template-columns: 1fr;
  }
}

/* ---------- Kontakt (hell) ---------- */
.kontakt__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}
.kontakt__info {
  grid-column: 1 / 6;
}
.kontakt__map {
  grid-column: 6 / 13;
}
.kontakt__info .row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.2rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-1);
  font-size: 0.98rem;
}
.kontakt__info .row .k {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-top: 0.25rem;
}
.kontakt__info .row a {
  color: var(--indigo);
}
@media (hover: hover) {
  .kontakt__info .row a:hover {
    color: var(--indigo-h);
  }
}
.map-consent {
  position: relative;
  min-height: 26rem;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--line-1) inset;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.map-consent p {
  color: var(--ink-2);
  font-size: 0.92rem;
  max-width: 40ch;
  margin-bottom: 1.4rem;
}
.map-consent iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 860px) {
  .kontakt__info,
  .kontakt__map {
    grid-column: 1 / -1;
  }
}

/* ---------- Footer (dunkles Bookend) ---------- */
.site-footer {
  border-top: 1px solid var(--line-1);
  background: var(--tiefe);
  color: var(--foam);
  padding: 4rem 0 calc(2rem + var(--fab-space));
}
.site-footer .cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
.site-footer .col-brand {
  grid-column: 1 / 5;
}
.site-footer .col-brand img {
  height: 100px;
  width: auto; /* Logo nie stauchen — width-Attribut im HTML sonst wirksam */
  margin-bottom: 1rem;
}
/* Sicherheitsnetz: das Logo behält IMMER sein Seitenverhältnis */
img[src*="logo_carwash"] {
  aspect-ratio: 220 / 120;
  width: auto;
  object-fit: contain;
}
.site-footer .col-brand p {
  color: var(--silver);
  font-size: 0.9rem;
  max-width: 34ch;
}
.site-footer .col {
  grid-column: span 2;
}
.site-footer .col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}
.site-footer .col a,
.site-footer .col span {
  display: block;
  font-size: 0.92rem;
  padding-block: 0.32rem;
  color: var(--foam);
}
@media (hover: hover) {
  .site-footer .col a:hover {
    color: var(--aqua);
  }
}
.site-footer .legalrow {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dline-1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: baseline;
  font-size: 0.82rem;
  color: var(--silver);
}
.site-footer .legalrow a {
  color: var(--silver);
}
@media (hover: hover) {
  .site-footer .legalrow a:hover {
    color: var(--aqua);
  }
}
@media (max-width: 860px) {
  .site-footer .col-brand {
    grid-column: 1 / -1;
  }
  .site-footer .col {
    grid-column: span 6;
  }
}

/* ---------- Sub-Heads Unterseiten (dunkle Video-Bühne) ---------- */
.subhead {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  isolation: isolate;
  padding-bottom: 3rem;
  color: var(--foam);
  background: var(--nacht);
}
.subhead__img {
  position: absolute;
  inset: 0;
  z-index: -4;
}
.subhead__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.subhead__video {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.subhead__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .subhead__video {
    display: none;
  }
}
.subhead__canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.subhead__canvas canvas {
  width: 100%;
  height: 100%;
}
.subhead__tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    var(--nacht) 2%,
    rgba(7, 10, 28, 0.35) 45%,
    rgba(7, 10, 28, 0.5) 100%
  );
}
.subhead h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8.5vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.subhead .lead {
  margin-top: 1.2rem;
  color: var(--silver);
}
.subhead .crumb {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--aqua);
  margin-bottom: 1.2rem;
  display: block;
}

/* ---------- Zusatzleistungen-Grid (das EINE Grid, hell) ---------- */
.zusatz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--line-1);
  border-block: 1px solid var(--line-1);
  margin-top: 3rem;
}
.zusatz-grid > div {
  background: var(--surface);
  padding: 1.6rem 1.4rem;
}
.zusatz-grid .z-name {
  font-weight: 700;
  font-size: 1.02rem;
}
.zusatz-grid .z-price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--mint-deep);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-top: 0.6rem;
}

/* ---------- Ablauf-Zeilen ---------- */
.ablauf {
  counter-reset: schritt;
  margin-top: 3.5rem;
}
.ablauf__row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line-2);
  align-items: baseline;
}
.ablauf__row:last-child {
  border-bottom: 1px solid var(--line-2);
}
.ablauf__row::before {
  counter-increment: schritt;
  content: "0" counter(schritt);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--indigo);
}
.ablauf__row h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.ablauf__row p {
  color: var(--ink-2);
  max-width: 58ch;
  margin-top: 0.4rem;
}

/* ---------- Preisliste Unterseiten ---------- */
.pricelist {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-2);
}
.pricelist__row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line-1);
}
.pricelist__row .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.pricelist__row .d {
  color: var(--ink-2);
  font-size: 0.9rem;
  max-width: 46ch;
  margin-top: 0.25rem;
}
/* Preis als Indigo-Pill (Hamada 23.07.: Preise waren zu langweilig) */
.pricelist__row .p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--foam);
  background: var(--indigo);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
  flex: none;
  box-shadow: 0 6px 18px rgba(74, 68, 168, 0.28);
}

/* ---------- Reveals ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
}
.rv.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.76s var(--ease-cinema),
    transform 0.76s var(--ease-cinema);
}
.rv-mask {
  /* 2% Sichtstreifen statt 100%-Clip — sonst 0 Fläche, IO feuert nie */
  clip-path: inset(0 0 98% 0);
}
.rv-mask.is-in {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.9s var(--ease-cinema);
}
.rv-wipe {
  position: relative;
  overflow: clip;
}
.rv-wipe::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(74, 68, 168, 0.14),
    var(--mint-deep) 30%,
    var(--mint-bg) 60%
  );
  transform: translateY(0);
  transition: transform 1.05s var(--ease-cinema);
}
.rv-wipe.is-in::after {
  transform: translateY(-101%);
}

@media (prefers-reduced-motion: reduce) {
  .rv,
  .rv-mask,
  .rv-wipe {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .rv-wipe::after {
    display: none;
  }
  .hero__scroll::after {
    animation: none;
  }
}

/* ---------- Legal-Seiten (hell) ---------- */
.legal {
  padding: 10rem 0 6rem;
  max-width: 46rem;
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}
.legal p,
.legal li {
  color: var(--ink-2);
  font-size: 0.97rem;
}
.legal ul {
  list-style: disc;
  padding-left: 1.2rem;
}
.legal a {
  color: var(--indigo);
}

.demo-note {
  font-size: 0.74rem;
  opacity: 0.6;
}
