/* Kevin Sarbach · Webdesign — Produktions-Stylesheet */

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url('../fonts/bricolage-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
}

:root {
  --papier: oklch(0.97 0.008 110);
  --weiss: oklch(1 0 0);
  --tinte: oklch(0.16 0.015 110);
  --tinte-2: oklch(0.20 0.018 110);
  --hell: oklch(0.96 0.005 110);
  --moos: oklch(0.45 0.09 110);
  --blatt: oklch(0.85 0.16 110);
  --grau: oklch(0.45 0.02 110);
  --grau-hell: oklch(0.65 0.02 110);
  --linie: oklch(0.89 0.012 110);
  --linie-dunkel: oklch(0.30 0.02 110);
  --knochen: oklch(0.38 0.025 110);
  --rand: clamp(20px, 5vw, 60px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: no-preference) {
  html.hat-gsap { scroll-behavior: auto; }
}
body {
  background: var(--papier);
  color: var(--tinte);
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--blatt); color: var(--tinte); }
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { line-height: 1.05; }
.display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ---------- Intro-Vorhang ---------- */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--tinte);
  display: flex; align-items: center; justify-content: center;
}
.intro .wort {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 6rem); color: var(--hell);
  text-transform: uppercase; overflow: hidden;
}
.intro .wort em { color: var(--blatt); }
.intro .wort span { display: inline-block; }

/* ---------- Korn & Cursor ---------- */
.korn {
  position: fixed; inset: 0; z-index: 150; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.7'/></svg>");
}
.zeiger, .zeiger-ring {
  position: fixed; top: 0; left: 0; z-index: 300;
  pointer-events: none; border-radius: 50%; display: none;
  mix-blend-mode: difference;
}
.zeiger { width: 8px; height: 8px; background: var(--blatt); }
.zeiger-ring { width: 38px; height: 38px; border: 1px solid var(--blatt); opacity: 0.6; }
body.hat-zeiger, body.hat-zeiger a, body.hat-zeiger button, body.hat-zeiger input, body.hat-zeiger textarea { cursor: none; }
body.hat-zeiger .zeiger, body.hat-zeiger .zeiger-ring { display: block; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px var(--rand);
  mix-blend-mode: difference;
}
.nav .marke {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: 18px; color: oklch(1 0 0); text-decoration: none;
}
.nav .links { display: flex; gap: 26px; align-items: center; }
.nav .links a { color: oklch(1 0 0); text-decoration: none; font-size: 14.5px; }
.nav .links a.cta-link { font-weight: 500; }
@media (max-width: 700px) {
  .nav .links a:not(.cta-link) { display: none; }
}

/* ---------- Hero ---------- */
.held { min-height: 160vh; position: relative; }
.held .buehne {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--rand);
  overflow: hidden;
}
.glanz {
  position: absolute; width: 65vw; height: 65vw; border-radius: 50%;
  top: -18vw; right: -20vw; pointer-events: none;
  background: radial-gradient(circle, oklch(0.85 0.16 110 / 0.35), transparent 65%);
  filter: blur(40px);
}
.held h1 {
  position: relative;
  font-size: clamp(2.9rem, 10.5vw, 9rem);
  line-height: 0.92;
}
.held h1 .zeile { display: block; overflow: hidden; padding: 0.04em 0; }
.held h1 .zeile span { display: inline-block; }
.held h1 .mark { position: relative; z-index: 1; white-space: nowrap; }
.held h1 .mark i {
  position: absolute; inset: 0.02em -0.1em; z-index: -1;
  background: var(--blatt); transform: scaleX(0); transform-origin: left;
}
.held .unter {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 5vh; gap: 24px; flex-wrap: wrap;
}
.held .unter .text { max-width: 46ch; }
.held .unter p { font-size: clamp(15px, 1.4vw, 18px); color: var(--grau); margin-bottom: 26px; }
.scroll-hinweis { font-size: 13px; color: var(--grau); display: flex; align-items: center; gap: 10px; }
.scroll-hinweis .strich { width: 1px; height: 44px; background: var(--moos); transform-origin: top; animation: puls 1.8s ease-in-out infinite; }
@keyframes puls { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

.knopf {
  display: inline-block; text-decoration: none;
  background: var(--tinte); color: var(--hell);
  font-weight: 500; font-size: 16px; padding: 16px 32px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.knopf:hover { transform: translateY(-2px); }
.knopf-nebenan { margin-left: 20px; font-size: 15px; color: var(--tinte); text-decoration: underline; text-underline-offset: 5px; }

/* ---------- Verwandlung (dunkler Akt) ---------- */
.verwandlung { background: var(--tinte); color: var(--hell); }
.verwandlung .buehne {
  height: 100vh; display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px); align-items: center;
  padding: 0 var(--rand);
  max-width: 1400px; margin: 0 auto;
}
.mock { background: var(--tinte-2); border: 1px solid var(--linie-dunkel); width: 100%; will-change: transform; }
.mock-kopf { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--linie-dunkel); }
.mock-kopf i { width: 9px; height: 9px; border-radius: 50%; background: var(--linie-dunkel); }
.mock-kopf .url { font-size: 11px; color: var(--grau-hell); margin-left: 10px; }
.mock-body { padding: clamp(16px, 2.5vw, 32px); position: relative; }
.mock-grid {
  position: absolute; inset: clamp(16px, 2.5vw, 32px); z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(oklch(0.62 0.03 110 / 0.09) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.62 0.03 110 / 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
}
.mock-body > div { position: relative; z-index: 1; }
.mb-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.mb-logo { width: 90px; height: 12px; position: relative; }
.mb-links { width: 140px; height: 12px; position: relative; }
.mb-logo .echt { display: block; font-size: 12px; line-height: 12px; text-transform: uppercase; white-space: nowrap; }
.mb-links .echt { display: block; font-family: 'Archivo', sans-serif; font-weight: 400; font-size: 11px; line-height: 12px; color: var(--grau-hell); text-align: right; white-space: nowrap; }
.mb-head { width: 75%; height: 30px; margin-bottom: 12px; position: relative; }
.mb-head2 { width: 50%; height: 30px; margin-bottom: 22px; position: relative; }
.mb-bild { width: 100%; aspect-ratio: 16/6; margin-bottom: 22px; position: relative; overflow: hidden; }
.mb-bild .flut { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, oklch(0.46 0.09 110), oklch(0.26 0.05 110)); transform: scaleX(0); transform-origin: left; }
.mb-bild .bild-text { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 clamp(14px, 2vw, 26px); }
.mb-bild .bild-text .gross { font-size: clamp(15px, 1.7vw, 22px); text-transform: uppercase; line-height: 1.1; }
.mb-bild .bild-text .klein { font-family: 'Archivo', sans-serif; font-weight: 400; font-size: 12px; color: oklch(0.88 0.03 110); }
.mb-cta { width: 150px; height: 34px; position: relative; background: transparent; }
.mock .echt { color: var(--hell); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; opacity: 0; }
.mb-head .echt, .mb-head2 .echt { font-size: clamp(16px, 1.8vw, 24px); line-height: 30px; padding-left: 10px; text-transform: uppercase; }
.mb-cta .echt { font-family: 'Archivo', sans-serif; font-size: 13px; line-height: 34px; padding-left: 14px; font-weight: 500; color: var(--tinte); }
/* Blueprint-Draht: annotierte Wireframe-Skin, weicht beim Scrollen dem echten Inhalt */
.draht {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px dashed oklch(0.62 0.03 110 / 0.5);
  background: oklch(0.62 0.03 110 / 0.06);
  font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: oklch(0.7 0.03 110); white-space: nowrap;
}
.draht-bild { flex-direction: column; }
.draht-bild svg { width: clamp(22px, 3vw, 30px); height: auto; stroke: currentColor; opacity: 0.85; }
.steps { display: flex; flex-direction: column; gap: 8px; position: relative; min-height: 300px; justify-content: center; }
.step { position: absolute; opacity: 0; }
.step h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.6rem); text-transform: uppercase; margin-bottom: 14px; }
.step p { color: var(--grau-hell); font-size: 16px; max-width: 38ch; }

/* ---------- Laufband ---------- */
.band { padding: 9vh 0; overflow: hidden; }
.band .spur { display: flex; white-space: nowrap; will-change: transform; }
.band span {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem); text-transform: uppercase; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px oklch(0.60 0.05 110);
  padding-right: 0.6em;
}
.band span.voll { color: var(--moos); -webkit-text-stroke: 0; }

/* ---------- Sektionen (hell) ---------- */
.sektion { padding: 14vh var(--rand); max-width: 1400px; margin: 0 auto; }
.sektion .titel { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; line-height: 1; margin-bottom: 3vh; }
.sektion .titel em { font-style: normal; color: var(--moos); }
.sektion .unterzeile { color: var(--grau); font-size: 16.5px; max-width: 56ch; margin-bottom: clamp(30px, 5vh, 56px); }

/* ---------- Vorher/Nachher ---------- */
.vn { margin-bottom: 10vh; }
.vn-kopf { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; }
.vn-kopf h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(1.15rem, 2.2vw, 1.6rem); margin-bottom: 4px; }
.vn-kopf p { color: var(--grau); font-size: 15px; }
.vn-live { font-size: 14px; color: var(--moos); border-bottom: 1px solid var(--moos); padding-bottom: 2px; white-space: nowrap; }
.vn-rahmen {
  position: relative; overflow: hidden; --pos: 28%;
  border: 1px solid var(--linie); aspect-ratio: 16/10;
  background: var(--weiss);
}
.vn-seite { position: absolute; inset: 0; }
.vn-bild { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.vn-alt { background: oklch(0.99 0 0); }
.vn-neu { background: var(--tinte); clip-path: inset(0 0 0 var(--pos)); }
.vn-label { position: absolute; top: 12px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.02em; padding: 4px 10px; }
.vn-alt .vn-label { left: 12px; background: oklch(0.93 0 0); color: oklch(0.5 0 0); }
.vn-neu .vn-label { right: 12px; background: var(--blatt); color: var(--tinte); }
.vn-griff { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--moos); pointer-events: none; }
.vn-griff span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--moos); color: var(--hell);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.vn-regler { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ---------- Projekt-Karten ---------- */
.karten { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: start; }
.karte { background: var(--weiss); border: 1px solid var(--linie); padding: clamp(24px, 3vw, 44px); will-change: transform; }
.karte:nth-child(2) { margin-top: 10vh; }
.karte .zahl { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 4.2rem); color: var(--moos); line-height: 1; }
.karte h4 { font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.5rem); margin: 18px 0 8px; }
.karte p { color: var(--grau); font-size: 15px; }
.karte .balken { height: 1px; background: var(--linie); margin: 22px 0; position: relative; }
.karte .balken i { position: absolute; inset: 0; background: var(--moos); transform: scaleX(0); transform-origin: left; }

/* ---------- Stil-Wechsler ---------- */
.stil-knoepfe { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.stil-knopf {
  font-family: 'Archivo', sans-serif; font-size: 15px; padding: 11px 22px;
  background: transparent; border: 1px solid var(--linie); color: var(--tinte); cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.stil-knopf.aktiv { background: var(--tinte); color: var(--hell); border-color: var(--tinte); }
.stil-mock { border: 1px solid var(--linie); padding: clamp(28px, 5vw, 72px) clamp(20px, 4vw, 56px); transition: background-color 0.5s ease, color 0.5s ease; }
.sm-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; margin-bottom: clamp(30px, 5vw, 70px); }
.sm-logo { font-weight: 700; }
.sm-titel { line-height: 1.05; margin-bottom: 16px; }
.sm-text { font-size: 15px; opacity: 0.75; margin-bottom: 26px; max-width: 48ch; }
.sm-cta { display: inline-block; font-size: 14px; padding: 12px 26px; }
.stil-ruhig { background: oklch(0.975 0.008 240); color: oklch(0.28 0.03 250); }
.stil-ruhig .sm-titel { font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 3rem); letter-spacing: -0.01em; }
.stil-ruhig .sm-cta { background: oklch(0.45 0.09 250); color: oklch(1 0 0); }
.stil-markant { background: oklch(0.14 0 0); color: oklch(1 0 0); }
.stil-markant .sm-titel { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem, 4.4vw, 4rem); }
.stil-markant .sm-logo { text-transform: uppercase; }
.stil-markant .sm-cta { background: oklch(0.87 0.18 95); color: oklch(0.14 0 0); font-weight: 700; }
.stil-warm { background: oklch(0.95 0.02 75); color: oklch(0.32 0.06 45); }
.stil-warm .sm-titel { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 3.2rem); }
.stil-warm .sm-cta { background: oklch(0.55 0.13 40); color: oklch(0.98 0.01 75); border-radius: 999px; }

/* ---------- Ablauf ---------- */
.ablauf-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 32px); position: relative; }
.ablauf-pfad { position: absolute; inset: -40px 0 auto; width: 100%; height: 80px; pointer-events: none; }
.ablauf-pfad path { fill: none; stroke: var(--blatt); stroke-width: 3; }
.ablauf-karte { background: var(--weiss); border: 1px solid var(--linie); padding: clamp(22px, 2.5vw, 36px); position: relative; }
.ablauf-karte h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.6rem); text-transform: uppercase; margin-bottom: 12px; }
.ablauf-karte p { color: var(--grau); font-size: 15px; }
.ablauf-karte .dauer { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--moos); font-weight: 500; }

/* ---------- Preise ---------- */
.preis-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 32px); align-items: stretch; }
.preis-karte { background: var(--weiss); border: 1px solid var(--linie); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.preis-karte.anker { background: var(--tinte); color: var(--hell); border-color: var(--tinte); position: relative; }
.preis-karte .badge {
  position: absolute; top: -14px; left: clamp(24px, 3vw, 40px);
  background: var(--blatt); color: var(--tinte);
  font-size: 13px; font-weight: 700; padding: 5px 14px;
}
.preis-karte h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 4px; }
.preis-karte .lesart { font-size: 14px; color: var(--grau); margin-bottom: 18px; }
.preis-karte.anker .lesart { color: var(--grau-hell); }
.preis-karte .preis { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 3.6vw, 3.2rem); line-height: 1; margin-bottom: 22px; }
.preis-karte.anker .preis { color: var(--blatt); }
.preis-karte ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.preis-karte li { padding: 7px 0; font-size: 15px; color: var(--grau); }
.preis-karte.anker li { color: var(--grau-hell); }
.preis-karte li::before { content: '✓'; color: var(--moos); font-weight: 700; margin-right: 10px; }
.preis-karte.anker li::before { color: var(--blatt); }
.preis-karte .knopf { text-align: center; }
.preis-karte.anker .knopf { background: var(--blatt); color: var(--tinte); }
.preis-hinweis { margin-top: 28px; font-size: 14.5px; color: var(--grau); }

/* ---------- Über mich ---------- */
.ueber { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.portrait {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  display: block; border: 1px solid var(--linie); background: var(--weiss);
}
.ueber .titel { margin-bottom: 2vh; }
.ueber p { color: var(--grau); margin-bottom: 18px; max-width: 54ch; }
.fakten { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.fakten span { border: 1px solid var(--linie); background: var(--weiss); font-size: 14px; padding: 8px 16px; }

/* ---------- Kontakt (Drench) ---------- */
.kontakt { background: var(--blatt); color: var(--tinte); }
.kontakt .inhalt { padding: 14vh var(--rand); max-width: 1400px; margin: 0 auto; }
.kontakt h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 7rem); line-height: 0.95;
  text-transform: uppercase; margin-bottom: 6vh;
}
.kontakt h2 .zeile { display: block; overflow: hidden; }
.kontakt h2 .zeile span { display: inline-block; }
.kontakt .reihe { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.kontakt .reihe > div p { max-width: 42ch; margin-bottom: 22px; }
.wa-knopf {
  display: inline-block; text-decoration: none;
  border: 2px solid var(--tinte); color: var(--tinte);
  font-weight: 500; font-size: 15px; padding: 13px 26px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.wa-knopf:hover { background: var(--tinte); color: var(--hell); }
.formular { display: flex; flex-direction: column; gap: 14px; }
.formular label { font-size: 14px; font-weight: 500; }
.formular input, .formular textarea {
  width: 100%; border: none; background: oklch(1 0 0 / 0.75);
  font-family: 'Archivo', sans-serif; font-size: 16px; color: var(--tinte);
  padding: 15px 16px; margin-top: 6px;
}
.formular input:focus, .formular textarea:focus { outline: 2px solid var(--tinte); background: oklch(1 0 0); }
.formular textarea { min-height: 140px; resize: vertical; }
.formular .knopf { border: none; cursor: pointer; font-family: 'Archivo', sans-serif; align-self: flex-start; }
.versteckt { display: none; }

/* ---------- Footer ---------- */
.fuss {
  background: var(--tinte); color: var(--grau-hell);
  padding: 30px var(--rand);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 14px;
}
.fuss a { color: var(--hell); text-decoration: none; }
.fuss a:hover { text-decoration: underline; }
.fuss .rechtliches { display: flex; gap: 20px; }

/* ---------- Rechtsseiten ---------- */
.recht-seite { background: var(--papier); min-height: 100vh; }
.recht-kopf { padding: 24px var(--rand); }
.recht-kopf a { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 18px; text-decoration: none; }
.recht { max-width: 760px; margin: 0 auto; padding: 6vh var(--rand) 14vh; }
.recht h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; margin-bottom: 5vh; }
.recht h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.25rem; margin: 4vh 0 1.5vh; }
.recht p, .recht li { color: var(--grau); font-size: 16px; margin-bottom: 12px; }
.recht ul { padding-left: 22px; }
.recht .platzhalter { background: oklch(0.93 0.05 95); padding: 1px 6px; }

/* ---------- Danke-Seite ---------- */
.danke {
  min-height: 100vh; background: var(--blatt); color: var(--tinte);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 var(--rand);
}
.danke h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(3rem, 12vw, 10rem); text-transform: uppercase; line-height: 0.9; margin-bottom: 4vh; }
.danke p { max-width: 44ch; margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .verwandlung .buehne { grid-template-columns: 1fr; align-content: center; height: auto; padding: 12vh var(--rand); gap: 40px; }
  .steps { min-height: 0; }
  .step { position: relative; opacity: 1; margin-bottom: 28px; }
  .karten, .ablauf-karten, .preis-karten { grid-template-columns: 1fr; }
  .karte:nth-child(2) { margin-top: 0; }
  .ablauf-pfad { display: none; }
  .vn-rahmen { aspect-ratio: 16/10; }
  .vn-kopf .vn-live { display: none; }
  .ueber { grid-template-columns: 1fr; }
  .portrait { max-width: 380px; }
  .kontakt .reihe { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hinweis .strich { animation: none; }
  html { scroll-behavior: auto; }
}
