/* Toni Spuhler Malergeschäft · Entwurf Seetalwebsites
   Farben aus dem Logo gemessen: Rot #B82828, Gelb #F8E808, Blau #2888C8 */

:root {
  --papier: #faf7f1;
  --papier-2: #f2ede3;
  --weiss: #ffffff;
  --tinte: #1f1d1b;
  --tinte-2: #57524c;
  --linie: #e5dfd3;
  --rot: #b8282a;
  --rot-dunkel: #971f21;
  --gelb: #f6de1c;
  --blau: #1f74b3;
  --graphit: #34312e;

  --schrift: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --rand: 20px;
  --radius: 18px;
  --kopf-h: 68px;
  --weich: cubic-bezier(.22, 1, .36, 1);
  --pinsel: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 40' preserveAspectRatio='none'%3E%3Cpath d='M6 17c22-6 58-9 104-8 44 1 92-1 128-3 22-1 42 0 56 3 4 5 5 11 1 16-3 3-9 4-16 4-40 1-84 3-128 5-40 2-80 5-114 5-18 0-30-1-34-4-3-4-3-11 3-18Z M18 33c30 2 70 0 110-2' fill='black'/%3E%3C/svg%3E");
}

@media (min-width: 720px) {
  :root { --rand: 32px; --kopf-h: 76px; }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--kopf-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--tinte);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  margin: 0;
  font-style: italic;
  font-weight: 850;
  font-stretch: 86%;
  line-height: .98;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(2.25rem, 5.2vw, 4rem); }
h3 { font-size: 1.5rem; }
p { margin: 0; text-wrap: pretty; }

.rahmen { width: min(100% - 2 * var(--rand), 1200px); margin-inline: auto; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--tinte); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--blau); outline-offset: 3px; border-radius: 6px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rot);
}
.kicker::before {
  content: ""; width: 26px; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--rot) 0 33%, var(--gelb) 33% 66%, var(--blau) 66%);
}
.kicker-gelb { color: var(--gelb); }

.lead { font-size: 1.125rem; color: var(--tinte-2); max-width: 36ch; }

/* ---------- Pinselstrich ---------- */
.strich { position: relative; z-index: 0; white-space: nowrap; }
.strich::before {
  content: "";
  position: absolute; z-index: -1;
  left: -.1em; right: -.14em; bottom: -.02em; height: .5em;
  background: var(--farbe, var(--gelb));
  -webkit-mask: var(--pinsel) no-repeat center / 100% 100%;
          mask: var(--pinsel) no-repeat center / 100% 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .9s cubic-bezier(.65, 0, .35, 1) .15s;
}
.strich.gemalt::before, html:not(.js) .strich::before { clip-path: inset(0 0 0 0); }
.strich-sofort::before { animation: malen .9s cubic-bezier(.65, 0, .35, 1) .9s forwards; }
.strich-bunt::before {
  background: linear-gradient(90deg, var(--rot) 0 34%, var(--gelb) 34% 67%, var(--blau) 67%);
  height: .34em; bottom: -.08em;
}
@keyframes malen { to { clip-path: inset(0 0 0 0); } }

/* ---------- Knöpfe ---------- */
.knoepfe { display: flex; flex-wrap: wrap; gap: 12px; }
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1.02rem; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--weich), background-color .25s, color .25s, border-color .25s, box-shadow .25s;
}
.knopf svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.knopf:active { transform: scale(.97); }
.knopf-rot { background: var(--rot); color: #fff; box-shadow: 0 8px 22px -10px rgb(184 40 42 / .8); }
.knopf-rot:hover { background: var(--rot-dunkel); }
.knopf-rot:hover svg { transform: translateX(3px); }
.knopf-rot svg { transition: transform .25s var(--weich); }
.knopf-rand { border-color: var(--tinte); color: var(--tinte); background: transparent; }
.knopf-rand:hover { background: var(--tinte); color: #fff; }
.knopf-gelb { background: var(--gelb); color: var(--tinte); }
.knopf-gelb:hover { background: #fff; }
.knopf-rand-hell { border-color: rgb(255 255 255 / .5); color: #fff; }
.knopf-rand-hell:hover { border-color: #fff; background: rgb(255 255 255 / .08); }
.knopf-breit { width: 100%; }

/* ---------- Kopf ---------- */
.kopf {
  position: sticky; top: 0; z-index: 50;
  background: rgb(250 247 241 / .88);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
          backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.kopf.gescrollt { border-color: var(--linie); box-shadow: 0 10px 30px -24px rgb(0 0 0 / .5); }
.kopf-innen { height: var(--kopf-h); display: flex; align-items: center; gap: 24px; }
.marke { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.marke-figur { width: 74px; }
.marke-schrift { width: 132px; }
.nav { display: none; margin-left: auto; gap: 30px; }
.nav a {
  position: relative; text-decoration: none; font-weight: 600; font-size: .98rem;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 2px;
  background: var(--rot); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--weich);
}
.nav a:hover::after { transform: scaleX(1); }
.kopf-tel {
  margin-left: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--rot); color: #fff; text-decoration: none; font-weight: 700;
  transition: background-color .25s;
}
.kopf-tel:hover { background: var(--rot-dunkel); }
.kopf-tel svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.kopf-tel span { display: none; }

@media (min-width: 720px) {
  .marke-figur { width: 86px; }
  .marke-schrift { width: 168px; }
}
@media (min-width: 1020px) {
  .nav { display: flex; }
  .kopf-tel { margin-left: 8px; width: auto; padding: 0 20px; border-radius: 999px; height: 46px; }
  .kopf-tel span { display: inline; }
}

/* ---------- Einstieg ---------- */
.held { padding: 14px 0 64px; }
.held-raster { display: flex; flex-direction: column; gap: 44px; }
.held-bild { order: -1; position: relative; }
.bild-rahmen {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3.1;
  background:
    repeating-linear-gradient(115deg, rgb(0 0 0 / .018) 0 2px, transparent 2px 7px),
    #e8e2d6;
}
.bild { width: 100%; height: 100%; object-fit: cover; object-position: 48% 50%; }

.walze { position: absolute; left: -2%; right: -2%; top: -30px; height: 30px; pointer-events: none; opacity: 0; }
.walze-rolle {
  position: absolute; inset: 0 0 0 0; border-radius: 15px;
  background:
    repeating-linear-gradient(90deg, rgb(255 255 255 / .06) 0 3px, transparent 3px 9px),
    linear-gradient(180deg, #e0564d 0%, var(--rot) 45%, #7f1a1b 100%);
  box-shadow: 0 10px 18px -6px rgb(0 0 0 / .45);
}
.walze-stiel { position: absolute; right: 7%; top: 0; width: 44px; height: auto; }

.kleber {
  position: absolute; right: 14px; bottom: -34px;
  width: 132px; padding: 10px 12px 8px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 18px 40px -18px rgb(31 29 27 / .55), 0 0 0 1px rgb(31 29 27 / .05);
  transform: rotate(-5deg);
}

.held-text { position: relative; }
.held h1 { font-size: clamp(3.1rem, 13vw, 6.4rem); letter-spacing: -.02em; }
.held-lead { margin: 22px 0 30px; font-size: 1.15rem; color: var(--tinte-2); max-width: 34ch; }
.beweise {
  list-style: none; margin: 34px 0 0; padding: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  border-top: 1px solid var(--linie);
  font-size: .95rem; color: var(--tinte-2);
}
.beweise li { display: inline-flex; align-items: center; gap: 6px; }
.beweise strong { color: var(--tinte); font-weight: 800; }
.sterne { display: inline-flex; gap: 1px; }
.sterne svg { width: 15px; height: 15px; fill: #f2b705; }

/* Die Rolle streicht das Foto ins Bild */
.js .bild { clip-path: inset(0 0 100% 0); animation: streichen 1.25s cubic-bezier(.55, .06, .3, 1) .3s forwards; }
.js .walze { animation: rollen 1.25s cubic-bezier(.55, .06, .3, 1) .3s forwards, weg .45s ease 1.6s forwards; }
.js .kleber { animation: kleben .7s cubic-bezier(.34, 1.56, .64, 1) 1.35s both; }
.js .held-text > * { animation: auftauchen .8s var(--weich) both; }
.js .held-text > :nth-child(2) { animation-delay: .08s; }
.js .held-text > :nth-child(3) { animation-delay: .16s; }
.js .held-text > :nth-child(4) { animation-delay: .24s; }
.js .held-text > :nth-child(5) { animation-delay: .32s; }

@keyframes streichen { to { clip-path: inset(0 0 0 0); } }
@keyframes rollen {
  0% { top: -30px; opacity: 1; }
  100% { top: calc(100% - 15px); opacity: 1; }
}
@keyframes weg { from { opacity: 1; } to { opacity: 0; transform: translateY(24px); } }
@keyframes kleben {
  from { opacity: 0; transform: rotate(-16deg) scale(.6); }
  to { opacity: 1; transform: rotate(-5deg) scale(1); }
}
@keyframes auftauchen { from { opacity: 0; transform: translateY(18px); } }

@media (min-width: 960px) {
  .held { padding: 36px 0 96px; }
  .held-raster { display: grid; grid-template-columns: 1fr 1.08fr; align-items: center; gap: 64px; }
  .held-bild { order: 0; }
  .bild-rahmen { aspect-ratio: auto; height: clamp(460px, calc(100svh - var(--kopf-h) - 150px), 660px); border-radius: 26px; }
  .kleber { right: auto; left: -46px; bottom: 34px; width: 190px; padding: 14px 16px 10px; border-radius: 26px; }
  .held h1 { font-size: clamp(4.6rem, 7.4vw, 7rem); }
}

/* ---------- Laufband ---------- */
.band { background: var(--rot); color: #fff; overflow: hidden; padding: 16px 0; }
.band-spur { display: flex; width: max-content; animation: laufen 38s linear infinite; }
.band span {
  display: inline-flex; align-items: center; gap: 28px; padding-right: 28px;
  font-style: italic; font-weight: 800; font-stretch: 88%; font-size: 1.35rem; white-space: nowrap;
}
.band span::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gelb); }
.band span:nth-child(3n+2)::after { background: #fff; }
.band span:nth-child(3n)::after { background: #7cc0f0; }
@keyframes laufen { to { transform: translateX(-50%); } }

/* ---------- Abschnitte ---------- */
.abschnitt { padding: 88px 0; }
@media (min-width: 960px) { .abschnitt { padding: 128px 0; } }

.titel-zeile { display: grid; gap: 22px; margin-bottom: 52px; }
@media (min-width: 960px) {
  .titel-zeile { grid-template-columns: 1.2fr 1fr; align-items: end; gap: 64px; margin-bottom: 72px; }
  .titel-zeile .lead { justify-self: end; }
}

/* ---------- Farbfächer ---------- */
.faecher { display: grid; gap: 20px; }
.karte {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px;
  box-shadow: 0 1px 0 rgb(31 29 27 / .06), 0 20px 40px -28px rgb(31 29 27 / .45);
  overflow: hidden;
  transition: transform .5s var(--weich), box-shadow .5s var(--weich);
}
.karte-farbe {
  position: relative;
  background: var(--farbe); color: var(--auf-farbe);
  padding: 20px 22px 22px; min-height: 150px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.karte-nr, .karte-name { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }
.karte h3 { font-size: clamp(2rem, 7vw, 2.4rem); margin: 22px 0 8px; }
.karte-text { padding: 22px 22px 46px; flex: 1; }
.karte-text p { color: var(--tinte-2); margin-bottom: 16px; }
.karte ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-weight: 600; font-size: .98rem; }
.karte li { display: flex; gap: 10px; align-items: baseline; }
.karte li::before {
  content: ""; flex: none; width: 10px; height: 10px; border-radius: 3px; transform: translateY(1px);
  background: var(--farbe); box-shadow: inset 0 0 0 1px rgb(0 0 0 / .08);
}
.niete {
  position: absolute; left: 50%; bottom: 16px; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #c9c3b8 55%, #9b958b);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / .15);
}

@media (min-width: 640px) { .faecher { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) {
  .faecher { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .karte-farbe { min-height: 200px; }
  .karte:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 1px 0 rgb(31 29 27 / .06), 0 34px 50px -30px rgb(31 29 27 / .55); }
  /* Fächer: zuerst gestapelt, dann aufgefächert */
  .js .faecher:not(.offen) .karte {
    transform: translateX(calc((1.5 - var(--i)) * (100% + 22px))) rotate(calc((var(--i) - 1.5) * 9deg));
    transform-origin: 50% calc(100% - 23px);
  }
  .js .faecher .karte {
    transform-origin: 50% calc(100% - 23px);
    transition: transform 1.1s cubic-bezier(.2, .9, .25, 1) calc(var(--i) * 70ms), box-shadow .5s var(--weich);
  }
  .js .faecher.offen .karte:hover { transition-delay: 0s; }
}
@media (max-width: 1019px) {
  .js .faecher .karte { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--weich), transform .7s var(--weich); }
  .js .faecher .karte.sichtbar { opacity: 1; transform: none; }
}

.spezial { margin-top: 56px; display: grid; gap: 18px; }
.spezial h3 { font-size: 1.35rem; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 9px 16px; border-radius: 999px; background: #fff;
  border: 1px solid var(--linie); font-weight: 600; font-size: .95rem;
}
.chips-klein li { padding: 7px 14px; font-size: .92rem; }
@media (min-width: 960px) { .spezial { grid-template-columns: 200px 1fr; align-items: start; } .spezial h3 { padding-top: 6px; } }

.bilder {
  margin: 64px calc(-1 * var(--rand)) 0; padding: 0 var(--rand);
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.bilder::-webkit-scrollbar { display: none; }
.bilder figure { margin: 0; position: relative; scroll-snap-align: center; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.bilder img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--weich); }
.bilder figure:hover img { transform: scale(1.04); }
.bilder figcaption {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 14px; border-radius: 999px; background: rgb(255 255 255 / .92);
  font-weight: 700; font-size: .9rem;
}
@media (min-width: 820px) {
  .bilder { margin-inline: 0; padding: 0; overflow: visible; grid-auto-flow: row; grid-template-columns: 1.35fr 1.35fr 1fr; grid-auto-columns: auto; gap: 20px; }
  .bilder figure { aspect-ratio: auto; height: 420px; }
}

/* ---------- Schimmel ---------- */
.schimmel { background: var(--tinte); color: #fff; position: relative; overflow: hidden; }
.schimmel::before {
  content: ""; position: absolute; right: -180px; top: -160px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgb(31 116 179 / .35), transparent 65%);
  pointer-events: none;
}
.schimmel-raster { position: relative; display: grid; gap: 56px; }
.schimmel .lead { color: rgb(255 255 255 / .72); margin: 22px 0 32px; max-width: 40ch; }
.schimmel h2 .strich::before { height: .42em; }
.schritte { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.schritte li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: var(--radius);
  background: rgb(255 255 255 / .05); border: 1px solid rgb(255 255 255 / .1);
}
.schritt-icon {
  flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--gelb); color: var(--tinte);
}
.schritte li:nth-child(2) .schritt-icon { background: #fff; }
.schritte li:nth-child(3) .schritt-icon { background: var(--blau); color: #fff; }
.schritt-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.schritte h3 { font-size: 1.45rem; margin-bottom: 6px; display: flex; align-items: baseline; gap: 10px; }
.schritte h3 span { font-size: .85rem; font-style: normal; font-weight: 700; color: rgb(255 255 255 / .5); letter-spacing: .08em; }
.schritte p { color: rgb(255 255 255 / .72); }
@media (min-width: 960px) {
  .schimmel-raster { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 88px; }
}

/* ---------- Über uns ---------- */
.ueber { background: #fff; }
.ueber-raster { display: grid; gap: 40px; }
.ueber-bild { position: relative; display: grid; place-items: center; padding: 30px 0; }
.ueber-bild img { position: relative; width: min(100%, 420px); filter: drop-shadow(0 22px 26px rgb(31 29 27 / .18)); }
.klecks {
  position: absolute; width: min(78%, 360px); aspect-ratio: 1;
  background: var(--gelb);
  border-radius: 46% 54% 41% 59% / 55% 43% 57% 45%;
  animation: wabern 14s ease-in-out infinite alternate;
}
@keyframes wabern {
  to { border-radius: 58% 42% 55% 45% / 42% 58% 42% 58%; transform: rotate(14deg); }
}
.zitat { margin: 28px 0 0; padding: 0 0 0 22px; border-left: 4px solid var(--rot); }
.zitat p { font-size: 1.25rem; line-height: 1.5; font-weight: 500; max-width: 44ch; }
.zitat footer { margin-top: 12px; font-weight: 700; color: var(--tinte-2); font-size: .95rem; }

.zeitstrahl {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; gap: 0;
}
.zeitstrahl li { position: relative; display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--linie); }
.zeitstrahl li:last-child { border-bottom: 1px solid var(--linie); }
.zeitstrahl strong { font-style: italic; font-weight: 850; font-stretch: 86%; font-size: 1.5rem; line-height: 1.1; color: var(--rot); }
.zeitstrahl li:nth-child(2) strong { color: var(--blau); }
.zeitstrahl li:nth-child(3) strong { color: var(--tinte); }
.zeitstrahl span { color: var(--tinte-2); padding-top: 3px; }

.netz { margin-top: 32px; display: grid; gap: 14px; color: var(--tinte-2); }
.netz strong { color: var(--tinte); }
.netz .chips li { background: var(--papier); }

@media (min-width: 960px) {
  .ueber-raster { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 80px; }
  .ueber-bild { padding: 0; min-height: 480px; }
}

.slogan {
  margin-top: 96px; text-align: center;
  font-style: italic; font-weight: 850; font-stretch: 86%;
  font-size: clamp(2rem, 5.6vw, 4.4rem); line-height: 1.08; letter-spacing: -.015em;
  text-wrap: balance;
}
@media (min-width: 960px) { .slogan { margin-top: 128px; } }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--papier); }
.kontakt-raster { display: grid; gap: 48px; }
.kontakt .lead { margin-top: 22px; }
.kontakt-liste { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 20px; }
.kontakt-liste li { display: flex; gap: 16px; align-items: flex-start; }
.kontakt-liste svg {
  flex: none; width: 44px; height: 44px; padding: 11px; border-radius: 12px;
  background: #fff; border: 1px solid var(--linie);
  fill: none; stroke: var(--rot); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.kontakt-liste div { display: flex; flex-direction: column; font-size: 1.08rem; font-weight: 600; line-height: 1.45; }
.kontakt-liste a { text-decoration: none; }
.kontakt-liste a:hover { color: var(--rot); }
.klein { font-size: .8rem; font-weight: 600; color: var(--tinte-2); letter-spacing: .02em; }
.kontakt-liste .klein { display: flex; align-items: center; gap: 8px; margin-bottom: 1px; }
.route { color: var(--rot); text-decoration: underline !important; text-underline-offset: 3px; font-size: .95rem; }
.jetzt {
  display: inline-flex; align-items: center; gap: 6px; padding: 2px 9px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; background: #e3f3e6; color: #1d6b31;
}
.jetzt::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.jetzt.zu { background: var(--papier-2); color: var(--tinte-2); }

.formular {
  background: #fff; border-radius: 24px; padding: 26px 22px;
  box-shadow: 0 1px 0 rgb(31 29 27 / .05), 0 30px 60px -40px rgb(31 29 27 / .5);
  display: grid; gap: 18px; align-content: start;
}
.wahl { border: 0; margin: 0; padding: 0; min-width: 0; }
.wahl legend { font-weight: 700; margin-bottom: 12px; padding: 0; }
.wahl-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wahl-chips label { position: relative; cursor: pointer; }
.wahl-chips input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.wahl-chips span {
  display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--linie);
  font-weight: 600; font-size: .95rem; transition: background-color .2s, border-color .2s, color .2s;
}
.wahl-chips label:hover span { border-color: var(--tinte-2); }
.wahl-chips input:checked + span { background: var(--tinte); border-color: var(--tinte); color: #fff; }
.wahl-chips input:focus-visible + span { outline: 3px solid var(--blau); outline-offset: 2px; }

.feld-paar { display: grid; gap: 18px; }
@media (min-width: 560px) { .feld-paar { grid-template-columns: 1fr 1fr; } }
.feld { display: grid; gap: 7px; }
.feld > span { font-weight: 700; font-size: .95rem; }
.feld input, .feld textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--linie); background: var(--papier);
  font-size: 1rem; transition: border-color .2s, background-color .2s;
}
.feld textarea { resize: vertical; min-height: 116px; }
.feld input:focus, .feld textarea:focus { outline: none; border-color: var(--tinte); background: #fff; }
.feld input.fehler { border-color: var(--rot); background: #fdf1f0; }

.datei {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px; border: 1.5px dashed #cfc7b8; cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.datei:hover { border-color: var(--tinte-2); background: var(--papier); }
.datei input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.datei:focus-within { outline: 3px solid var(--blau); outline-offset: 2px; }
.datei svg { flex: none; width: 28px; height: 28px; fill: none; stroke: var(--rot); stroke-width: 1.8; stroke-linejoin: round; }
.datei-text { display: flex; flex-direction: column; line-height: 1.35; }
.formular-danke {
  padding: 16px 18px; border-radius: 12px; background: #e3f3e6; color: #1d4d2a; font-weight: 600;
}

@media (min-width: 960px) {
  .kontakt-raster { grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: start; }
  .formular { padding: 36px; margin-top: 8px; }
}

/* ---------- Fuss ---------- */
.fuss { background: var(--tinte); color: rgb(255 255 255 / .78); padding: 56px 0 28px; font-size: .98rem; }
.fuss a { text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss-innen { display: grid; gap: 26px; }
.fuss-marke { display: flex; align-items: center; gap: 10px; }
.fuss-marke img:first-child { width: 96px; }
.fuss-marke img:last-child { width: 170px; }
.entwurf { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / .12); font-size: .85rem; color: rgb(255 255 255 / .55); }
.entwurf a { text-decoration: underline; }
@media (min-width: 820px) {
  .fuss-innen { grid-template-columns: 1.4fr 1fr 1fr; align-items: center; }
}

/* ---------- Leiste unten (Handy) ---------- */
.leiste {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
  padding: 10px var(--rand) calc(10px + env(safe-area-inset-bottom));
  background: rgb(250 247 241 / .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--linie);
  transition: transform .45s var(--weich);
}
.leiste .knopf { min-height: 50px; padding: 0 14px; }
.leiste.weg { transform: translateY(110%); }
@media (max-width: 1019px) { body { padding-bottom: 74px; } }
@media (min-width: 1020px) { .leiste { display: none; } }

/* ---------- Einblenden ---------- */
.js .zeigen { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--weich), transform .8s var(--weich); }
.js .zeigen.sichtbar { opacity: 1; transform: none; }
.js .schritte .zeigen:nth-child(2), .js .bilder .zeigen:nth-child(2) { transition-delay: .1s; }
.js .schritte .zeigen:nth-child(3), .js .bilder .zeigen:nth-child(3) { transition-delay: .2s; }

/* ---------- Weniger Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .bild { clip-path: none; }
  .walze { display: none; }
  .js .zeigen, .js .faecher .karte, .js .faecher:not(.offen) .karte { opacity: 1; transform: none; }
  .strich::before { clip-path: none; }
  .band-spur { flex-wrap: wrap; width: auto; justify-content: center; }
  .band-spur span:nth-child(n+10) { display: none; }
}

/* ---------- Feinschliff Handy ---------- */
.zeiten span { white-space: nowrap; }
@media (max-width: 639px) {
  .karte-farbe { min-height: 0; padding: 18px 20px; }
  .karte h3 { margin: 14px 0 6px; }
  .karte-text { padding: 18px 20px 42px; }
  .spezial .chips { gap: 8px; }
  .spezial .chips li { padding: 7px 13px; font-size: .88rem; }
}
