/* ==========================================================================
   MESSECONTENT BY MADLYX — Onepager
   CI: #212121 Anthrazit · #7C2022 MADLYX Rot · #FFFFFF Weiß
   Type: Red Hat Text (System) · Archivo Expanded Black (Statement, SIL OFL 1.1)
   ========================================================================== */

@font-face { font-family: "Red Hat Text"; src: url("../fonts/RedHatText-Light.ttf") format("truetype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Red Hat Text"; src: url("../fonts/RedHatText-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Red Hat Text"; src: url("../fonts/RedHatText-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Red Hat Text"; src: url("../fonts/RedHatText-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Red Hat Text"; src: url("../fonts/RedHatText-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face {
  font-family: "Archivo Expanded"; font-weight: 900; font-display: swap;
  src: url("../fonts/Archivo-ExpandedBlack-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo Expanded"; font-weight: 900; font-display: swap;
  src: url("../fonts/Archivo-ExpandedBlack-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #212121;
  --red: #7C2022;
  --white: #FFFFFF;

  /* Tints of the three brand colours only */
  --w-80: rgba(255, 255, 255, .8);
  --w-60: rgba(255, 255, 255, .6);
  --w-40: rgba(255, 255, 255, .4);
  --w-15: rgba(255, 255, 255, .15);
  --w-08: rgba(255, 255, 255, .08);
  --i-70: rgba(33, 33, 33, .7);
  --i-50: rgba(33, 33, 33, .5);
  --i-12: rgba(33, 33, 33, .12);

  --sans: "Red Hat Text", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Archivo Expanded", "Red Hat Text", sans-serif;

  --gutter: clamp(20px, 4.5vw, 72px);
  --max: 1440px;
  --nav-h: 60px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.light :focus-visible { outline-color: var(--ink); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { position: relative; padding: clamp(72px, 8.5vw, 124px) 0; }
.light { background: var(--white); color: var(--ink); }

/* ---------- Type ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--w-60);
  margin: 0 0 24px;
}
.light .eyebrow { color: var(--i-50); }
.eyebrow .idx { order: 0; font-size: 22px; font-weight: 700; letter-spacing: .02em; line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; }
.light .eyebrow .idx { color: var(--ink); }
.eyebrow::before { content: ""; order: 1; width: 32px; height: 2px; background: var(--red); }
.eyebrow .lbl { order: 2; }

.h-display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.005em;
  margin: 0;
}
.h-xl {
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.028em;
  margin: 0;
}
.h-l {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
}
.muted { color: var(--w-40); }
.light .muted { color: var(--i-50); }
.nowrap-d { white-space: nowrap; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--w-80); max-width: 36em; font-weight: 400; }
.light .lead { color: var(--i-70); }
.body { color: var(--w-60); max-width: 34em; }

/* ---------- Buttons (alle CTAs rot, ohne Pfeil) ---------- */
.btn {
  --bg: var(--red); --fg: var(--white); --bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 30px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 2px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2;
  text-align: center; text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { --bg: var(--white); --fg: var(--ink); --bd: var(--white); }
.light .btn:hover { --bg: var(--ink); --fg: var(--white); --bd: var(--ink); }
.btn--sm { padding: 11px 18px; font-size: 11.5px; }
.btn--line { --bg: transparent; --fg: var(--white); --bd: var(--w-40); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(33, 33, 33, .94); border-bottom-color: var(--w-08); backdrop-filter: saturate(1.2) blur(8px); -webkit-backdrop-filter: saturate(1.2) blur(8px); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap;
}
.nav__brand img { height: 30px; width: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--ink) url("../img/hero-poster.jpg") center / cover no-repeat; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__media video.is-ready { opacity: 1; }
.hero::before { /* legibility overlay */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(33,33,33,.55) 0%, rgba(33,33,33,.25) 30%, rgba(33,33,33,.45) 62%, rgba(33,33,33,.96) 100%),
    rgba(33,33,33,.22);
}
.hero__content { padding-top: calc(var(--nav-h) + 110px); padding-bottom: clamp(64px, 11vh, 120px); }
.hero__title { font-size: clamp(28px, 5vw, 84px); max-width: 21ch; text-wrap: balance; }
.hero__question {
  margin: clamp(16px, 2vw, 26px) 0 0;
  font-size: clamp(22px, 2.6vw, 40px);
  font-weight: 300; line-height: 1.15; letter-spacing: -.02em;
}
.hero__question strong { font-weight: 700; }
.hero__row {
  margin-top: clamp(24px, 2.8vw, 40px);
  display: grid; grid-template-columns: auto auto; gap: 24px 64px; align-items: end; justify-content: space-between;
}
.hero__sub { margin: 0; color: var(--w-80); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.55; }
.hero__cta { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.price {
  display: flex; align-items: baseline; gap: 10px; white-space: nowrap;
  font-size: 16px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--w-80);
}
.price b { font-size: 28px; letter-spacing: -.01em; color: var(--white); font-weight: 700; text-transform: none; }

/* ---------- 01 Positionierung ---------- */
.pos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 120px); align-items: stretch; }
.pos__text .lead { margin: 28px 0 0; }
.pos__honest { margin-top: clamp(40px, 4vw, 60px); padding-top: 32px; border-top: 1px solid var(--w-15); }
.pos__honest .h-l { margin-bottom: 16px; }
.pos__honest .body { margin: 0 0 32px; }
.pos__media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr 1fr; gap: 16px; height: 0; min-height: 100%; } /* Höhe folgt der Textspalte */
.pos__media figure { margin: 0; overflow: hidden; background: #2a2a2a; }
.pos__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pos__media figure:hover img { transform: scale(1.04); }
.pos__media .m1 { grid-column: 1 / -1; }

/* ---------- 02 Leistungen (hell) ---------- */
.svc__head { margin-bottom: clamp(48px, 6vw, 80px); }
.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.svc__item { text-align: center; }
.svc__icon { width: 64px; height: 64px; margin: 0 auto 32px; color: var(--red); display: block; }
.svc__item h3 { margin: 0 0 14px; font-size: clamp(21px, 1.8vw, 26px); font-weight: 700; letter-spacing: -.015em; line-height: 1.2; white-space: nowrap; }
.svc__item p { margin: 0 auto; max-width: 21em; color: var(--i-70); font-size: 16px; }
/* Aufbau beim Scrollen: Icon zeichnet sich, danach Titel und Text */
.js .svc__item.rv { opacity: 1; transform: none; }
.js .svc__icon * { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.3s var(--ease) var(--d, 0s); }
.js .svc__item.in .svc__icon * { stroke-dashoffset: 0; }
.js .svc__item h3, .js .svc__item p { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .svc__item h3 { transition-delay: calc(var(--d, 0s) + .45s); }
.js .svc__item p { transition-delay: calc(var(--d, 0s) + .6s); }
.js .svc__item.in h3, .js .svc__item.in p { opacity: 1; transform: none; }
.svc__foot { margin-top: clamp(40px, 5vw, 64px); display: flex; justify-content: center; }

/* ---------- 03 Referenzen ---------- */
.ref__head { margin-bottom: clamp(40px, 5vw, 72px); }
.ref__head .lead { margin: 24px 0 0; max-width: none; }
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.reel, .gallery button {
  position: relative; display: block; width: 100%; overflow: hidden; background: #2a2a2a;
  transition: transform .6s var(--ease);
}
.reel { aspect-ratio: 2 / 3; }
.reel img, .gallery img { width: 100%; height: 100%; object-fit: cover; }
.reel img { opacity: .9; transition: opacity .6s var(--ease); }
.reel:hover, .gallery button:hover { transform: scale(1.025); z-index: 2; }
.reel:hover img { opacity: 1; }
.reel__play {
  position: absolute; z-index: 2; left: 50%; top: 50%; translate: -50% -50%;
  width: 76px; height: 76px; border-radius: 50%;
  border: 1.5px solid var(--w-80);
  display: grid; place-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.reel__play svg { width: 20px; height: 20px; margin-left: 3px; }
.reel:hover .reel__play { background: var(--red); border-color: var(--red); }

.gallery { margin-top: clamp(16px, 1.6vw, 24px); display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.gallery button { aspect-ratio: 4 / 5; cursor: zoom-in; }

/* logos */
.logos { margin-top: clamp(56px, 6vw, 88px); border-top: 1px solid var(--w-08); border-bottom: 1px solid var(--w-08); padding: 36px 0; overflow: hidden; position: relative; }
.logos::before, .logos::after { content: ""; position: absolute; top: 0; bottom: 0; width: 12vw; z-index: 2; pointer-events: none; }
.logos::before { left: 0; background: linear-gradient(90deg, var(--ink), rgba(33,33,33,0)); }
.logos::after { right: 0; background: linear-gradient(270deg, var(--ink), rgba(33,33,33,0)); }
.logos__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos__set { display: flex; align-items: center; gap: clamp(56px, 6vw, 96px); padding-right: clamp(56px, 6vw, 96px); }
.logos img { height: var(--h); width: auto; opacity: .62; transition: opacity .4s var(--ease); }
.logos img:hover { opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 04 Kundenstimmen ---------- */
.quotes-title { margin-bottom: clamp(40px, 5vw, 64px); }
.quotes { display: grid; grid-template-columns: clamp(220px, 22vw, 320px) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: stretch; }
.quotes__photos { position: relative; overflow: hidden; background: #2a2a2a; height: 100%; min-height: 280px; }
.quotes__photos img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  filter: grayscale(1) contrast(1.05);
  opacity: 0; scale: 1.04; transition: opacity .9s var(--ease), scale 1.6s var(--ease);
}
.quotes__photos img.is-active { opacity: 1; scale: 1; }
.quotes__main { display: flex; flex-direction: column; justify-content: space-between; }
.quotes__stage { display: grid; }
.quote { grid-area: 1 / 1; margin: 0; visibility: hidden; opacity: 0; transition: opacity .7s var(--ease), visibility 0s linear .7s; }
.quote.is-active { visibility: visible; opacity: 1; transition: opacity .7s var(--ease) .1s, visibility 0s; }
.quote__mark { width: 40px; height: 30px; color: var(--red); margin-bottom: 24px; display: block; }
.quote blockquote { margin: 0; font-size: clamp(21px, 2.1vw, 32px); line-height: 1.32; font-weight: 400; letter-spacing: -.018em; text-wrap: pretty; }
.quote figcaption { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
.quote figcaption b { font-size: 17px; font-weight: 700; }
.quote figcaption span { font-size: 15px; color: var(--w-60); }
.quotes__ctrl { margin-top: 36px; display: flex; align-items: center; gap: 24px; }
.quotes__arrows { display: flex; gap: 8px; }
.quotes__arrows button {
  width: 48px; height: 48px; border: 1px solid var(--w-15); border-radius: 2px; display: grid; place-items: center;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.quotes__arrows button:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.quotes__arrows svg { width: 16px; height: 16px; }
.quotes__count { font-size: 13px; font-weight: 600; letter-spacing: .16em; font-variant-numeric: tabular-nums; color: var(--w-60); min-width: 64px; }
.quotes__count b { color: var(--white); }
.quotes__bar { flex: 1; max-width: 240px; height: 2px; background: var(--w-15); position: relative; overflow: hidden; }
.quotes__bar i { position: absolute; inset: 0; background: var(--red); transform-origin: left; transform: scaleX(0); }
.quotes__bar i.run { animation: bar 7s linear forwards; }
.quotes.is-paused .quotes__bar i.run { animation-play-state: paused; }
@keyframes bar { to { transform: scaleX(1); } }

/* ---------- 05 Abschluss + Leitfaden ---------- */
.close__statement { margin: 0; font-weight: 400; }
.close__statement .h-display { display: block; font-size: clamp(24px, 3.2vw, 52px); text-wrap: balance; }
.close__sub { display: block; margin-top: .3em; font-size: clamp(22px, 2.6vw, 40px); font-weight: 300; line-height: 1.15; letter-spacing: -.02em; }
.close__lead { margin: clamp(24px, 3vw, 40px) 0 0; }
.flow__label { margin: clamp(56px, 6vw, 88px) 0 28px; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--w-60); }
.flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.flow li { position: relative; padding-right: 24px; }
.flow li:not(:last-child)::after, .flow li:not(:last-child)::before { /* Verbindungslinie zum nächsten Schritt */
  content: ""; position: absolute; top: 28px; left: 72px; right: 0; height: 1px;
  background: repeating-linear-gradient(90deg, var(--w-40) 0 6px, transparent 6px 12px);
}
.flow li:not(:last-child)::before { /* rote Füllung, läuft von Schritt zu Schritt */
  z-index: 1; height: 2px; margin-top: -.5px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 3s linear;
}
.flow li.is-filled::before { transform: scaleX(1); }
.flow.is-reset li::before, .flow.is-reset .flow__n { transition: none !important; }
.flow__n {
  width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--w-40);
  display: grid; place-items: center; margin-bottom: 24px;
  font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; background: var(--ink);
  position: relative; z-index: 2; transition: background .4s var(--ease), border-color .4s var(--ease);
}
.flow li.is-on .flow__n { background: var(--red); border-color: var(--red); }
.flow__btn { margin-top: 2px; }
.flow li:first-child .flow__n { background: var(--red); border-color: var(--red); }
.flow__k { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--w-40); margin-bottom: 8px; }
.flow__t { display: block; font-size: clamp(19px, 1.7vw, 24px); font-weight: 700; line-height: 1.25; letter-spacing: -.012em; max-width: 14em; }
.close__cta { margin-top: clamp(48px, 5vw, 72px); }

/* ---------- 06 Termin (hell) ---------- */
.book { padding: clamp(72px, 8.5vw, 124px) 0; }
.book__head { margin-bottom: 36px; }
.book__frame { position: relative; min-height: 700px; background: var(--white); }
.calendly-inline-widget { min-width: 320px; height: 760px; }
.consent {
  position: absolute; inset: 0; display: grid; place-items: center; padding: 32px; text-align: center;
  background: var(--white);
}
.consent__box { max-width: 520px; padding: 40px 32px; }
.consent__icon { width: 40px; height: 40px; margin: 0 auto 20px; color: var(--ink); }
.consent h3 { margin: 0 0 12px; font-size: 24px; font-weight: 700; letter-spacing: -.015em; line-height: 1.2; }
.consent p { margin: 0 0 28px; font-size: 14px; color: var(--i-70); line-height: 1.55; }
.consent p a { color: var(--ink); }
.book__foot { margin-top: clamp(32px, 4vw, 48px); }
.book__mail { font-size: 17px; color: var(--i-70); margin: 0; }
.book__mail a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--red); padding-bottom: 1px; }
.book__mail a:hover { color: var(--red); }

/* ---------- Footer ---------- */
.footer { padding: 32px 0; border-top: 1px solid var(--w-08); font-size: 13px; color: var(--w-60); }
.footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a, .footer button { text-decoration: none; color: var(--w-80); font-size: 13px; }
.footer a:hover, .footer button:hover { color: var(--white); }
.footer nav { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Datenschutzeinstellungen (kompakte Karte) ---------- */
.cc {
  position: fixed; z-index: 90; left: 20px; bottom: 20px; width: min(400px, calc(100% - 40px));
  max-height: calc(100svh - 40px); overflow-y: auto;
  background: rgba(33,33,33,.97); color: var(--w-80); border: 1px solid var(--w-15); border-radius: 4px;
  padding: 22px 22px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  font-size: 13px; line-height: 1.55;
  transform: translateY(12px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cc.is-open { transform: none; opacity: 1; }
.cc[hidden], .cc__panel[hidden] { display: none; }
.cc__title { margin: 0 28px 6px 0; font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .01em; }
.cc__text { margin: 0 0 16px; }
.cc a { color: var(--white); }
.cc__x { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; display: grid; place-items: center; color: var(--w-60); }
.cc__x svg { width: 11px; height: 11px; }
.cc__x:hover { color: var(--white); }

.cc__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cc__btn { /* beide Hauptbuttons bewusst gleich gestaltet (Ablehnen so einfach wie Zustimmen) */
  padding: 12px 10px; border-radius: 2px;
  background: var(--red); color: var(--white); border: 1px solid var(--red);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.2;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease);
}
.cc__btn:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.cc__btn--save { width: 100%; margin-top: 12px; background: transparent; border-color: var(--w-40); }
.cc__btn--save:disabled { opacity: .35; cursor: default; }
.cc__btn--save:disabled:hover { background: transparent; color: var(--white); border-color: var(--w-40); }

.cc__links { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 12px; font-size: 12px; }
.cc__links button { font-size: 12px; color: var(--w-80); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--w-40); }
.cc__links button:hover { color: var(--white); }
.cc__links a { color: var(--w-60); text-decoration: none; }
.cc__links a:hover { color: var(--white); }

.cc__panel { margin: 0 0 16px; padding-top: 4px; border-top: 1px solid var(--w-15); }
.cc__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--w-08); }
.cc__label { display: flex; flex-direction: column; gap: 2px; }
.cc__label b { color: var(--white); font-size: 13px; }
.cc__label span { font-size: 12px; color: var(--w-60); line-height: 1.45; }
.cc__switch { position: relative; flex: none; width: 36px; height: 20px; margin-top: 2px; cursor: pointer; }
.cc__switch input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.cc__switch i { position: absolute; inset: 0; border-radius: 20px; background: var(--w-15); transition: background .3s var(--ease); }
.cc__switch i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--white); transition: transform .3s var(--ease); }
.cc__switch input:checked + i { background: var(--red); }
.cc__switch input:checked + i::after { transform: translateX(16px); }
.cc__switch input:disabled + i { opacity: .55; cursor: default; }
.cc__switch input:focus-visible + i { outline: 2px solid var(--white); outline-offset: 2px; }

/* ---------- Lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: rgba(33,33,33,.97);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility 0s linear .4s;
  padding: 72px 16px 32px;
}
.lb.is-open { opacity: 1; visibility: visible; transition: opacity .4s var(--ease), visibility 0s; }
.lb__stage { max-width: 100%; max-height: 100%; display: grid; place-items: center; }
.lb__stage img { max-height: calc(100svh - 120px); max-width: min(100%, 1400px); width: auto; height: auto; background: #111; }
.lb__stage video { aspect-ratio: 9 / 16; height: calc(100svh - 120px); max-height: 1100px; max-width: 100%; background: #111; }
.lb__close, .lb__nav { position: absolute; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--w-15); border-radius: 2px; transition: background .3s var(--ease), color .3s var(--ease); }
.lb__close:hover, .lb__nav:hover { background: var(--white); color: var(--ink); }
.lb__close { top: 12px; right: 16px; }
.lb__close svg, .lb__nav svg { width: 18px; height: 18px; }
.lb__nav { top: 50%; translate: 0 -50%; }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: 16px; }
.lb__count { position: absolute; top: 26px; left: 20px; font-size: 12px; font-weight: 600; letter-spacing: .2em; color: var(--w-60); }
.lb:not(.is-gallery) .lb__nav, .lb:not(.is-gallery) .lb__count { display: none; }

/* ---------- Karussell (nur Mobile aktiv) ---------- */
.carousel { position: relative; }
.carousel__nav { display: none; }

/* ---------- Reveal ---------- */
.js .rv { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; }
.js .reel.rv.in:hover, .js .gallery button.rv.in:hover { transform: scale(1.025); transition-delay: 0s; transition-duration: .6s; }

/* ---------- Rechtliches ---------- */
.legal { padding: calc(var(--nav-h) + 80px) 0 120px; }
.legal .wrap { max-width: 860px; }
.legal h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 700; letter-spacing: -.028em; line-height: 1.05; margin: 0 0 48px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 48px 0 12px; letter-spacing: -.01em; }
.legal p { color: var(--w-80); margin: 0 0 14px; }
.legal a { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nowrap-d { white-space: normal; }
  .pos { grid-template-columns: 1fr; }
  .pos__media { height: auto; min-height: 0; grid-template-rows: auto auto; }
  .pos__media .m1 { aspect-ratio: 4 / 3.2; }
  .pos__media .m2, .pos__media .m3 { aspect-ratio: 4 / 5; }
  .br-d { display: none; }
  .hero__row { grid-template-columns: 1fr; }
  .hero__cta { align-items: flex-start; }
  .price { font-size: 13px; }
  .price b { font-size: 22px; }
  .svc { grid-template-columns: 1fr; }
  .svc { gap: 56px; }
  .svc__item h3 { white-space: normal; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery button:nth-child(n+4) { display: none; }
  .quotes { grid-template-columns: 220px minmax(0, 1fr); }
}
@media (min-width: 900px) {
  .hero__question { white-space: nowrap; }
}
@media (max-width: 760px) {
  :root { --nav-h: 56px; }
  body { font-size: 16px; }
  .nav .wrap { gap: 10px; }
  .nav__brand { font-size: 10px; letter-spacing: .12em; gap: 8px; }
  .nav__brand img { height: 24px; }
  .nav .btn--sm { padding: 9px 10px; font-size: 9.5px; letter-spacing: .05em; white-space: nowrap; }
  .hero__row { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 56px; }
  .btn { padding: 16px 22px; font-size: 12px; letter-spacing: .1em; }
  .eyebrow { gap: 12px; letter-spacing: .16em; }
  .eyebrow .idx { font-size: 18px; }
  .eyebrow .lbl { white-space: nowrap; }
  .eyebrow::before { width: 24px; }
  /* Karussell: ein Element mittig, Pfeile links/rechts, wischen möglich */
  .carousel__track {
    display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 100%; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain;
  }
  .carousel__track::-webkit-scrollbar { display: none; }
  .carousel__track > * { scroll-snap-align: center; }
  .reel { aspect-ratio: 4 / 5; }
  .gallery button:nth-child(n) { display: block; }
  .carousel__nav {
    display: grid; place-items: center; position: absolute; z-index: 3; top: 50%; translate: 0 -50%;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(33,33,33,.72); border: 1px solid var(--w-40); color: var(--white);
    transition: opacity .3s var(--ease);
  }
  .carousel__nav svg { width: 16px; height: 16px; }
  .carousel__nav--prev { left: 10px; }
  .carousel__nav--next { right: 10px; }
  .carousel__nav[disabled] { opacity: 0; pointer-events: none; }
  .gallery { margin-top: 0; }
  .carousel--gallery { margin-top: 12px; }
  .reel:hover, .gallery button:hover, .js .reel.rv.in:hover, .js .gallery button.rv.in:hover { transform: none; }
  .pos__media { gap: 10px; }
  .quotes { grid-template-columns: 1fr; gap: 28px; }
  .quotes__photos { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .quotes__ctrl { margin-top: 28px; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow li { display: grid; grid-template-columns: 56px 1fr; gap: 0 20px; padding: 0 0 32px; }
  .flow li:last-child { padding-bottom: 0; }
  .flow__n { margin-bottom: 0; grid-row: span 2; }
  .flow li:not(:last-child)::after, .flow li:not(:last-child)::before {
    top: 64px; bottom: 8px; left: 28px; right: auto; width: 1px; height: auto; margin: 0;
    background: repeating-linear-gradient(180deg, var(--w-40) 0 6px, transparent 6px 12px);
  }
  .flow li:not(:last-child)::before { width: 2px; margin-left: -.5px; background: var(--red); transform: scaleY(0); transform-origin: top; }
  .flow li.is-filled::before { transform: scaleY(1); }
  .flow__btn { justify-self: start; margin-top: 4px; }
  .flow__k { margin: 6px 0 4px; }
  .book__frame { margin: 0 calc(var(--gutter) * -1); }
  .calendly-inline-widget { height: 1000px; }
  .cc { left: 10px; right: 10px; bottom: 10px; width: auto; }
  .lb__nav { top: auto; bottom: 16px; translate: none; }
  .lb__stage video { height: auto; width: 100%; max-height: calc(100svh - 110px); }
  /* kompakter */
  .section, .book { padding: 60px 0; }
  .eyebrow { margin-bottom: 16px; }
  .pos { gap: 36px; }
  .pos__text .lead { margin-top: 20px; }
  .pos__honest { margin-top: 32px; padding-top: 24px; }
  .svc__head, .ref__head { margin-bottom: 32px; }
  .quotes-title { margin-bottom: 28px; }
  .svc { gap: 40px; }
  .svc__icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .svc__foot { margin-top: 40px; }
  .logos { margin-top: 48px; padding: 28px 0; }
  .flow__label { margin: 40px 0 20px; }
  .close__lead { margin-top: 20px; }
  .book__head { margin-bottom: 24px; }
  .hero__question strong { display: block; white-space: nowrap; }
  /* Leitfaden: gleich lange Verbindungslinien */
  .flow li, .flow li:last-child { min-height: 128px; padding-bottom: 0; align-content: start; }
  .flow li:last-child { min-height: 0; }
}
@media (max-width: 340px) {
  .nav__brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .logos__track { animation: none; flex-wrap: wrap; }
  .js .rv { opacity: 1; transform: none; }
}
