/* Abt Beratungen – Entwurf Seetalwebsites */

:root {
  --creme: #f6f2ea;
  --papier: #fcfaf5;
  --sand: #ede6d9;
  --linie: #ddd4c3;
  --tinte: #1b2421;
  --text-2: #4b5551;
  --gruen: #1f3d36;
  --gruen-2: #2b5147;
  --nacht: #152b25;
  --salbei: #a9b8a3;
  --salbei-hell: #dde4d8;
  --gold: #c49a4a;
  --gold-hell: #e2c58c;
  --gold-tief: #7f5f1f;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Figtree", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-weich: cubic-bezier(.65, 0, .35, 1);
  --radius: 22px;
  --schatten: 0 1px 2px rgba(27, 36, 33, .05), 0 12px 32px -12px rgba(27, 36, 33, .18);
  --abstand: clamp(5rem, 4rem + 5vw, 8.5rem);
  --kopf-h: 84px;
}

*, *::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;
  background: var(--creme);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.1875rem; /* 19px */
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* feines Papierkorn */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; }
em { font-style: italic; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold-hell); color: var(--tinte); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.rahmen { width: 100%; max-width: 1260px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 200; background: var(--gruen); color: var(--creme); padding: .7rem 1rem; border-radius: 10px; }
.skip:focus { top: 1rem; }

.etikett {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-tief);
}
.etikett::before { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.etikett-hell { color: var(--gold-hell); }
.titel { font-size: clamp(2.35rem, 1.6rem + 2.8vw, 3.9rem); line-height: 1.06; }
.titel em { color: var(--gold-tief); }
.abschnitt-kopf { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.abschnitt-kopf-zeile { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 2rem 4rem; flex-wrap: wrap; }
.abschnitt-kopf-zeile .abschnitt-lead { max-width: 420px; margin: 0; }
.abschnitt-lead { margin-top: 1.4rem; font-size: 1.2rem; color: var(--text-2); }

/* Knöpfe */
.knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; }
.knopf {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px; padding: .9rem 1.6rem;
  border-radius: 999px; border: 1.5px solid transparent;
  font-size: 1.05rem; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.knopf svg { width: 20px; height: 20px; flex: none; transition: transform .45s var(--ease); }
.knopf:hover > svg:last-child { transform: translateX(3px); }
.knopf:active { transform: scale(.98); }
.knopf-voll { background: var(--gruen); color: var(--creme); box-shadow: 0 10px 24px -12px rgba(31, 61, 54, .7); }
.knopf-voll::before, .knopf-gold::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gruen-2); transform: translateY(101%); border-radius: inherit;
  transition: transform .5s var(--ease);
}
.knopf-voll:hover::before, .knopf-gold:hover::before { transform: none; }
.knopf-rand { border-color: var(--gruen); color: var(--gruen); background: transparent; }
.knopf-rand:hover { background: var(--gruen); color: var(--creme); }
.knopf-hell { background: var(--creme); color: var(--gruen); }
.knopf-hell:hover { background: #fff; }
.knopf-geist { border-color: rgba(246, 242, 234, .35); color: var(--creme); background: transparent; }
.knopf-geist:hover { border-color: var(--creme); }
.knopf-gold { background: var(--gold); color: var(--nacht); }
.knopf-gold::before { background: var(--gold-hell); }
.knopf-klein { white-space: nowrap; min-height: 46px; padding: .6rem 1.25rem; font-size: .98rem; }

/* ───────── Kopf ───────── */
.kopf {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--kopf-h);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.kopf.gescrollt { background: rgba(246, 242, 234, .86); -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 1px 0 var(--linie); --kopf-h: 72px; }
.kopf-innen { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.marke { display: flex; align-items: center; gap: .75rem; text-decoration: none; margin-right: auto; }
.marke-zeichen {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gruen); color: var(--gold-hell);
  font-family: var(--serif); font-style: italic; font-size: 1.55rem; line-height: 1; padding-bottom: 2px;
  box-shadow: inset 0 0 0 1.5px rgba(226, 197, 140, .5);
}
.marke-text { display: flex; flex-direction: column; line-height: 1.1; }
.marke-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; letter-spacing: -.01em; }
.marke-zusatz { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-top: 3px; }
.nav { display: flex; gap: .25rem; }
.nav a {
  position: relative; padding: .5rem .8rem; white-space: nowrap; border-radius: 999px;
  font-size: 1rem; font-weight: 500; text-decoration: none; color: var(--tinte);
  transition: background-color .3s var(--ease);
}
.nav a::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .3rem; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav a:hover::after, .nav a.aktiv::after { transform: scaleX(1); transform-origin: left; }
.nav-kontakt, .nav-tel { display: none; }
.kopf-aktion { display: flex; align-items: center; gap: 1rem; }
.kopf-tel { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: 1rem; text-decoration: none; white-space: nowrap; }
.kopf-tel svg { width: 18px; height: 18px; color: var(--gold-tief); }
.menue { display: none; }

/* ───────── Einstieg ───────── */
.held { position: relative; padding-top: calc(var(--kopf-h) + clamp(2rem, 5vw, 4.5rem)); padding-bottom: clamp(3.5rem, 6vw, 6rem); overflow: hidden; }
.held-licht {
  --mx: 70%; --my: 40%;
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38rem 30rem at var(--mx) var(--my), rgba(196, 154, 74, .20), transparent 65%),
    radial-gradient(44rem 36rem at calc(100% - var(--mx)) calc(var(--my) + 25%), rgba(169, 184, 163, .38), transparent 70%);
}
.held-raster { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.held-etikett {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-bottom: 1.6rem; padding: .45rem 1rem .45rem .8rem;
  border: 1px solid var(--linie); border-radius: 999px; background: rgba(252, 250, 245, .7);
  font-size: .95rem; font-weight: 600; color: var(--gruen);
}
.punkt-live { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.punkt-live::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--gold); opacity: 0; animation: puls 2.8s var(--ease) infinite 1.6s; }
@keyframes puls { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }

.held-titel { font-size: clamp(3.1rem, 1.5rem + 4.4vw, 5.5rem); line-height: .96; letter-spacing: -.03em; font-weight: 400; margin-bottom: 1.6rem; }
.held-titel .zeile { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.held-titel .zeile > span { display: block; }
.held-titel em { color: var(--gruen); font-weight: 300; }
.held-lead { font-size: clamp(1.2rem, 1.1rem + .35vw, 1.4rem); line-height: 1.55; color: var(--text-2); max-width: 34ch; margin-bottom: 2.1rem; }
.held-fakten { list-style: none; margin: 2.4rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--linie); display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; font-size: 1rem; font-weight: 500; }
.held-fakten li { display: flex; align-items: center; gap: .5rem; }
.held-fakten svg { width: 20px; height: 20px; color: var(--gold-tief); stroke-width: 2.2; }

.held-bild { position: relative; justify-self: end; width: 100%; max-width: 520px; }
.bogen { position: relative; aspect-ratio: 4 / 5; border-radius: 999px 999px 28px 28px; overflow: hidden; box-shadow: var(--schatten); background: var(--sand); }
.bogen img { width: 100%; height: 100%; object-fit: cover; object-position: 42% 50%; }
.bogen::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); background: linear-gradient(180deg, transparent 55%, rgba(21, 43, 37, .28)); pointer-events: none; }

.siegel { position: absolute; top: 6%; left: -9%; width: clamp(104px, 11vw, 138px); height: auto; filter: drop-shadow(0 12px 24px rgba(21, 43, 37, .25)); }
.siegel-grund { fill: var(--gruen); stroke: none; }
.siegel text { fill: var(--gold-hell); stroke: none; font-family: var(--sans); font-size: 10.4px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.siegel .siegel-a { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 34px; letter-spacing: 0; text-transform: none; }
.siegel-dreh { transform-origin: 60px 60px; animation: drehen 40s linear infinite; }
@keyframes drehen { to { transform: rotate(360deg); } }

.policen {
  position: absolute; left: -14%; bottom: 7%; width: min(300px, 70%);
  padding: 1.1rem 1.2rem 1rem; border-radius: 18px;
  background: rgba(252, 250, 245, .94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 24px 50px -20px rgba(21, 43, 37, .45), 0 0 0 1px rgba(27, 36, 33, .06);
  font-size: .95rem;
}
.policen-kopf { display: flex; align-items: center; gap: .55rem; margin-bottom: .75rem; font-weight: 700; color: var(--gruen); }
.policen-kopf span { padding: .1rem .5rem; border-radius: 6px; background: var(--salbei-hell); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gruen); }
.policen ul { list-style: none; margin: 0; padding: 0; }
.policen li { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; border-top: 1px dashed var(--linie); }
.policen li em { display: inline-flex; align-items: center; gap: .3rem; font-style: normal; font-weight: 700; font-size: .82rem; padding: .15rem .55rem; border-radius: 999px; }
.policen li em svg { width: 14px; height: 14px; stroke-width: 2.6; }
.policen .ok em { background: var(--salbei-hell); color: var(--gruen); }
.policen .doppelt em { background: #f3e2bf; color: #6d4f12; }
.policen .doppelt::before { content: ""; position: absolute; inset: 2px -8px; z-index: -1; border-radius: 8px; background: rgba(196, 154, 74, .16); transform: scaleX(0); transform-origin: left; }
.policen .pruefen em { background: var(--sand); color: var(--text-2); }
.policen-fuss { margin: .6rem 0 0; padding-top: .6rem; border-top: 1px solid var(--linie); font-size: .85rem; font-weight: 600; color: var(--gold-tief); }

/* Einstieg: Bewegung beim Laden */
.js .held-titel .zeile > span { transform: translateY(105%); filter: blur(6px); transition: transform 1.3s var(--ease), filter 1.3s var(--ease); }
.js .held-titel .zeile:nth-child(2) > span { transition-delay: .1s; }
.js .held-titel .zeile:nth-child(3) > span { transition-delay: .2s; }
.js .held-titel .zeile:nth-child(4) > span { transition-delay: .3s; }
.js .held-teil { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .held-lead { transition-delay: .45s; }
.js .held-text .knoepfe { transition-delay: .58s; }
.js .held-fakten { transition-delay: .7s; }
.js .bogen { clip-path: inset(100% 0 0 0 round 999px 999px 28px 28px); transition: clip-path 1.6s var(--ease-weich) .15s; }
.js .bogen img { transform: scale(1.18); transition: transform 2.8s var(--ease) .15s; }
.js .siegel { opacity: 0; transform: scale(.6) rotate(-40deg); transition: opacity .9s var(--ease) 1s, transform 1.2s var(--ease) 1s; }
.js .policen { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease) 1.1s, transform 1.1s var(--ease) 1.1s; }
.js .policen li { opacity: 0; transform: translateX(-10px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .policen li:nth-child(1) { transition-delay: 1.5s; }
.js .policen li:nth-child(2) { transition-delay: 1.75s; }
.js .policen li:nth-child(3) { transition-delay: 2s; }
.js .policen .doppelt::before { transition: transform .8s var(--ease) 2.3s; }
.js .policen-fuss { opacity: 0; transition: opacity .8s var(--ease) 2.6s; }

.bereit .held-titel .zeile > span { transform: none; filter: none; }
.bereit .held-teil { opacity: 1; transform: none; }
.bereit .bogen { clip-path: inset(0 0 0 0 round 999px 999px 28px 28px); }
.bereit .bogen img { transform: scale(1); }
.bereit .siegel { opacity: 1; transform: none; }
.bereit .policen, .bereit .policen li { opacity: 1; transform: none; }
.bereit .policen .doppelt::before { transform: scaleX(1); }
.bereit .policen-fuss { opacity: 1; }

/* Einblenden beim Scrollen */
.js .zeige { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s); }
.js .zeige.sichtbar { opacity: 1; transform: none; }

/* ───────── Versprechen ───────── */
.versprechen { padding-block: clamp(3rem, 5vw, 4.5rem); background: var(--papier); border-block: 1px solid var(--linie); }
.versprechen-raster { display: grid; grid-template-columns: repeat(3, 1fr); }
.versprechen-punkt { padding: .5rem clamp(1.25rem, 3vw, 3rem); }
.versprechen-punkt + .versprechen-punkt { border-left: 1px solid var(--linie); }
.versprechen-punkt:first-child { padding-left: 0; }
.versprechen-punkt h2 { font-size: 1.6rem; margin: 1.1rem 0 .55rem; }
.versprechen-punkt p { color: var(--text-2); font-size: 1.05rem; }
.v-icon { width: 46px; height: 46px; color: var(--gold-tief); stroke-width: 1.4; }
.v-zahl { display: flex; align-items: baseline; gap: .45rem; margin: 0; height: 46px; font-family: var(--serif); color: var(--gold-tief); }
.v-zahl .zaehler { font-size: 3.4rem; line-height: .8; font-weight: 400; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.v-einheit { font-size: 1.2rem; font-style: italic; }

/* ───────── Unabhängig ───────── */
.unab { position: relative; padding-block: var(--abstand); background: var(--gruen); color: var(--creme); overflow: hidden; }
.unab::before { content: ""; position: absolute; width: 60rem; height: 60rem; right: -25rem; top: -30rem; border-radius: 50%; background: radial-gradient(closest-side, rgba(226, 197, 140, .14), transparent); pointer-events: none; }
.unab .titel em { color: var(--gold-hell); }
.unab-kopf { max-width: 780px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.unab-lead { margin-top: 1.4rem; font-size: clamp(1.2rem, 1.1rem + .4vw, 1.42rem); color: rgba(246, 242, 234, .82); }
.unab-lead strong { color: var(--creme); font-weight: 600; }

.vergleich { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.vergleich-feld { margin: 0; padding: clamp(1.25rem, 2.5vw, 2rem); border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid rgba(246, 242, 234, .12); }
.vergleich-feld-gut { background: rgba(255, 255, 255, .07); border-color: rgba(226, 197, 140, .35); }
.vergleich-feld figcaption { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; font-size: 1.05rem; color: rgba(246, 242, 234, .78); }
.v-marke { align-self: flex-start; padding: .2rem .7rem; border-radius: 999px; background: rgba(246, 242, 234, .1); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--creme); }
.v-marke-gold { background: var(--gold); color: var(--nacht); }
.netz { width: 100%; height: auto; overflow: visible; }
.netz .linie { stroke: rgba(246, 242, 234, .55); stroke-width: 2; stroke-dasharray: 1; stroke-dashoffset: 1; }
.netz .linie-gold { stroke: var(--gold); stroke-width: 3; }
.netz .knoten { fill: var(--gruen); stroke: var(--creme); stroke-width: 2; }
.netz .knoten-ziel { fill: var(--creme); stroke: none; }
.netz .knoten-ziel-gold { fill: var(--gold-hell); }
.netz .knoten-vergleich { fill: var(--gold); stroke: var(--gold-hell); stroke-width: 3; }
.netz .geister circle { fill: none; stroke: rgba(246, 242, 234, .22); stroke-width: 1.5; stroke-dasharray: 3 4; }
.netz-text { fill: rgba(246, 242, 234, .85); stroke: none; font-family: var(--sans); font-size: 20px; font-weight: 600; }
.netz-text-gold { fill: var(--gold-hell); }
.funken circle { fill: var(--gold-hell); stroke: none; filter: drop-shadow(0 0 4px rgba(226, 197, 140, .9)); }
.netz .knoten, .netz-text, .netz .geister { opacity: 0; transition: opacity .6s var(--ease); }
.gezeichnet .netz .linie { stroke-dashoffset: 0; transition: stroke-dashoffset 1.4s var(--ease-weich); }
.gezeichnet .netz-b .linien .linie:nth-child(2) { transition-delay: .08s; }
.gezeichnet .netz-b .linien .linie:nth-child(3) { transition-delay: .16s; }
.gezeichnet .netz-b .linien .linie:nth-child(4) { transition-delay: .24s; }
.gezeichnet .netz-b .linien .linie:nth-child(5) { transition-delay: .32s; }
.gezeichnet .netz-b .linien .linie:nth-child(6) { transition-delay: .4s; }
.gezeichnet .netz-b .linie-gold { transition-delay: 1.2s; }
.gezeichnet .netz .knoten, .gezeichnet .netz-text, .gezeichnet .netz .geister { opacity: 1; }
.gezeichnet .netz .knoten-vergleich { animation: pochen 2.6s var(--ease) 1.6s infinite; transform-origin: 270px 140px; transform-box: view-box; }
@keyframes pochen { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.12); } }

.unab-punkte { list-style: none; margin: clamp(2.5rem, 4vw, 3.5rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2.5rem; }
.unab-punkte li { display: flex; gap: 1rem; align-items: flex-start; }
.unab-punkte p { color: rgba(246, 242, 234, .78); font-size: 1.05rem; }
.unab-punkte strong { display: block; color: var(--creme); font-weight: 600; margin-bottom: .25rem; font-size: 1.12rem; }
.unab-nr { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-hell); font-family: var(--serif); font-style: italic; font-size: 1.2rem; }

/* ───────── Leistungen ───────── */
.leistungen { padding-block: var(--abstand); }
.karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.karte { display: flex; flex-direction: column; border-radius: var(--radius); background: var(--papier); border: 1px solid var(--linie); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease); }
.karte:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(21, 43, 37, .35); border-color: transparent; }
.karte-bild { aspect-ratio: 16 / 11; overflow: hidden; background: var(--sand); }
.karte-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.karte:hover .karte-bild img { transform: scale(1.06); }
.karte-inhalt { flex: 1; display: flex; flex-direction: column; padding: 1.6rem 1.6rem 1.7rem; }
.karte-nr { margin-bottom: .5rem; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-tief); }
.karte h3 { font-size: 1.8rem; line-height: 1.12; margin-bottom: .7rem; }
.karte-inhalt > p:not(.karte-nr) { color: var(--text-2); font-size: 1.05rem; }
.karte em { font-family: var(--serif); color: var(--gruen); font-size: 1.12em; }
.liste-haken { list-style: none; margin: .4rem 0 1.5rem; padding: 0; font-size: 1.02rem; }
.liste-haken li { position: relative; padding: .5rem 0 .5rem 1.9rem; border-top: 1px solid var(--linie); }
.liste-haken li::before { content: ""; position: absolute; left: .2rem; top: .95rem; width: 12px; height: 7px; border-left: 2px solid var(--gold-tief); border-bottom: 2px solid var(--gold-tief); transform: rotate(-45deg); }
.karte-link { margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--gruen); text-decoration: none; }
.karte-link svg { width: 20px; height: 20px; transition: transform .45s var(--ease); }
.karte-link:hover svg, .karte:hover .karte-link svg { transform: translateX(5px); }
.auch { display: flex; align-items: center; gap: 1rem; margin: 2rem 0 0; padding: 1.1rem 1.4rem; border-radius: 16px; background: var(--sand); color: var(--text-2); font-size: 1.05rem; }
.auch svg { width: 28px; height: 28px; flex: none; color: var(--gold-tief); }
.auch strong { color: var(--tinte); }

/* ───────── Lebensphasen ───────── */
.phasen { padding-block: var(--abstand); background: var(--sand); }
.phasen-tabs { position: relative; display: inline-flex; flex-wrap: wrap; gap: .3rem; padding: .35rem; margin-bottom: 1.75rem; border-radius: 999px; background: var(--papier); border: 1px solid var(--linie); }
.phasen-tabs button {
  position: relative; z-index: 1; min-height: 50px; padding: .6rem 1.35rem;
  border: 0; border-radius: 999px; background: none; cursor: pointer;
  font-size: 1.02rem; font-weight: 600; color: var(--text-2);
  transition: color .4s var(--ease);
}
.phasen-tabs button:hover { color: var(--tinte); }
.phasen-tabs button[aria-selected="true"] { color: var(--creme); }
.phasen-marker { position: absolute; z-index: 0; top: 0; left: 0; height: 50px; border-radius: 999px; background: var(--gruen); box-shadow: 0 8px 18px -10px rgba(31, 61, 54, .8); transition: transform .6s var(--ease), width .6s var(--ease); pointer-events: none; }

.phasen-buehne { display: grid; }
.phase { grid-area: 1 / 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; padding: clamp(1rem, 2vw, 1.5rem); border-radius: 28px; background: var(--papier); box-shadow: var(--schatten); }
.phase[hidden] { display: grid; visibility: hidden; opacity: 0; pointer-events: none; }
.phase-bild { margin: 0; aspect-ratio: 5 / 4; border-radius: 20px; overflow: hidden; background: var(--sand); }
.phase-bild img { width: 100%; height: 100%; object-fit: cover; }
.phase-text { padding: clamp(.5rem, 2vw, 1.5rem) clamp(.5rem, 2vw, 2rem) clamp(.5rem, 2vw, 1.5rem) 0; }
.phase h3 { font-size: clamp(2rem, 1.5rem + 1.6vw, 2.9rem); line-height: 1.08; margin-bottom: 1.4rem; }
.phase h3 em { color: var(--gold-tief); }
.fragen { list-style: none; margin: 0 0 2rem; padding: 0; counter-reset: f; }
.fragen li { position: relative; padding: .85rem 0 .85rem 2.6rem; border-top: 1px solid var(--linie); font-size: 1.08rem; }
.fragen li:last-child { border-bottom: 1px solid var(--linie); }
.fragen li::before { counter-increment: f; content: "?"; position: absolute; left: 0; top: .85rem; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--salbei-hell); color: var(--gruen); font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1rem; line-height: 1; }
.js .phase { transition: opacity .7s var(--ease), visibility .7s; }
.js .phase .phase-bild img { transition: transform 1.4s var(--ease); }
.js .phase[hidden] .phase-bild img { transform: scale(1.08); }
.js .phase .fragen li { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .phase[hidden] .fragen li { opacity: 0; transform: translateX(14px); }
.js .phase.aktiv .fragen li:nth-child(1) { transition-delay: .12s; }
.js .phase.aktiv .fragen li:nth-child(2) { transition-delay: .19s; }
.js .phase.aktiv .fragen li:nth-child(3) { transition-delay: .26s; }
.js .phase.aktiv .fragen li:nth-child(4) { transition-delay: .33s; }

/* ───────── Ablauf ───────── */
.ablauf { padding-block: var(--abstand); }
.schritte { --f: 0; position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.schritte::before, .schritte::after { content: ""; position: absolute; top: 27px; left: 28px; right: calc(25% - 28px + .5rem); height: 2px; background: var(--linie); }
.schritte::after { background: linear-gradient(90deg, var(--gold), var(--gold-tief)); transform: scaleX(var(--f)); transform-origin: left; }
.schritt { position: relative; }
.schritt-nr {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 56px; height: 56px; margin-bottom: 1.5rem; border-radius: 50%;
  background: var(--creme); border: 2px solid var(--linie);
  font-family: var(--serif); font-size: 1.5rem; color: var(--text-2);
  transition: background-color .6s var(--ease), border-color .6s var(--ease), color .6s var(--ease), transform .6s var(--ease);
}
.schritt.erreicht .schritt-nr { background: var(--gruen); border-color: var(--gruen); color: var(--gold-hell); transform: scale(1.06); }
.schritt h3 { font-size: 1.55rem; margin-bottom: .6rem; }
.schritt p { color: var(--text-2); font-size: 1.05rem; }

/* ───────── Checkliste ───────── */
.check { position: relative; padding-block: var(--abstand); background: var(--gruen); color: var(--creme); overflow: hidden; }
.check::before { content: ""; position: absolute; width: 50rem; height: 50rem; left: -22rem; bottom: -26rem; border-radius: 50%; background: radial-gradient(closest-side, rgba(169, 184, 163, .16), transparent); pointer-events: none; }
.check .titel em { color: var(--gold-hell); }
.check-raster { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.check-intro { position: sticky; top: calc(var(--kopf-h) + 2rem); }
.check-intro > p { margin-top: 1.4rem; color: rgba(246, 242, 234, .8); font-size: 1.12rem; max-width: 36ch; }
.ring { position: relative; display: flex; align-items: center; gap: 1.5rem; margin: 2.2rem 0; }
.ring svg { width: 132px; height: 132px; flex: none; transform: rotate(-90deg); }
.ring-spur { stroke: rgba(246, 242, 234, .14); stroke-width: 8; }
.ring-fuell { stroke: var(--gold); stroke-width: 8; stroke-dasharray: 1; stroke-dashoffset: calc(1 - var(--p, 0)); transition: stroke-dashoffset .9s var(--ease), stroke .6s; }
.ring.fertig .ring-fuell { stroke: var(--gold-hell); }
.ring-zahl { position: absolute; left: 0; width: 132px; display: flex; flex-direction: column; align-items: center; margin: 0; line-height: 1; }
.ring-zahl > span:first-child { font-family: var(--serif); font-size: 2.8rem; font-variant-numeric: tabular-nums; }
.ring-von { font-size: .85rem; color: rgba(246, 242, 234, .7); margin-top: .3rem; }
.ring-text { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--gold-hell); max-width: 16ch; line-height: 1.25; }
.check-knoepfe { display: flex; flex-wrap: wrap; gap: .7rem; }

.check-karte { padding: clamp(1.25rem, 3vw, 2.25rem); border-radius: 26px; background: var(--papier); color: var(--tinte); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .55); }
.check-karte fieldset { margin: 0; padding: 0; border: 0; }
.check-karte fieldset + fieldset { margin-top: 1.6rem; }
.check-karte legend { padding: 0; margin-bottom: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-tief); }
.punkt { position: relative; display: flex; align-items: center; gap: 1rem; min-height: 56px; padding: .6rem .8rem; margin-inline: -.8rem; border-radius: 14px; cursor: pointer; transition: background-color .3s var(--ease); }
.punkt:hover { background: var(--sand); }
.punkt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.haken { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; border: 2px solid #b9ae9a; background: #fff; transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.haken svg { width: 20px; height: 20px; stroke: var(--creme); stroke-width: 3; stroke-dasharray: 22; stroke-dashoffset: 22; transition: stroke-dashoffset .45s var(--ease) .05s; }
.punkt-text { font-size: 1.08rem; transition: color .35s var(--ease); }
.punkt-text small { display: block; font-size: .88rem; color: var(--text-2); }
.punkt input:checked + .haken { background: var(--gruen); border-color: var(--gruen); animation: hopsen .45s var(--ease); }
.punkt input:checked + .haken svg { stroke-dashoffset: 0; }
.punkt input:checked ~ .punkt-text { color: var(--text-2); }
.punkt input:focus-visible + .haken { outline: 3px solid var(--gold); outline-offset: 3px; }
@keyframes hopsen { 40% { transform: scale(.85); } 70% { transform: scale(1.1); } }
.nur-druck { display: none; }

/* ───────── Kundenstimme ───────── */
.stimme { padding-block: var(--abstand); text-align: center; }
.stimme-figur { position: relative; margin: 0 auto; max-width: 980px; }
.stimme-zeichen { display: block; height: .72em; margin-bottom: .1em; font-family: var(--serif); font-size: clamp(5.5rem, 4rem + 4vw, 8rem); line-height: 1; color: var(--gold); }
.stimme blockquote { margin: 0; }
.stimme-satz { font-family: var(--serif); font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4.6rem); line-height: 1.1; letter-spacing: -.02em; font-style: italic; font-weight: 300; }
.stimme-satz .wort { opacity: var(--o, 1); transition: opacity .25s linear; }
.stimme figcaption { margin-top: 1.8rem; font-size: 1rem; font-weight: 600; letter-spacing: .06em; color: var(--text-2); }
.stimme figcaption::before { content: ""; display: inline-block; vertical-align: middle; width: 28px; height: 1.5px; margin-right: .7rem; background: var(--gold); }

/* ───────── Über mich ───────── */
.ich { padding-block: var(--abstand); background: var(--papier); border-block: 1px solid var(--linie); }
.ich-raster { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.ich-bilder { position: relative; padding-right: 18%; padding-bottom: 12%; }
.portrait { aspect-ratio: 4 / 5; border-radius: 999px 999px 24px 24px; overflow: hidden; }
.portrait-platz {
  position: relative; height: 100%; display: grid; place-items: center; align-content: center; gap: 1rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(226, 197, 140, .35), transparent 55%),
    repeating-linear-gradient(135deg, rgba(31, 61, 54, .05) 0 2px, transparent 2px 14px),
    var(--salbei-hell);
}
.portrait-a { font-family: var(--serif); font-style: italic; font-size: clamp(6rem, 4rem + 6vw, 9rem); line-height: 1; color: var(--gruen); opacity: .85; }
.portrait-hinweis { padding: .35rem .9rem; border-radius: 999px; background: var(--papier); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); }
.ich-detail { position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden; border: 6px solid var(--papier); box-shadow: var(--schatten); }
.ich-detail img { width: 100%; height: 100%; object-fit: cover; }
.ich-rolle { margin: .8rem 0 1.6rem !important; font-weight: 600; color: var(--gold-tief); }
.ich-text > p:not(.etikett):not(.ich-rolle):not(.unterschrift) { color: var(--text-2); font-size: 1.12rem; }
.ich-fakten { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 1rem 2.5rem; margin: 2rem 0; padding: 1.4rem 0; border-block: 1px solid var(--linie); }
.ich-fakten dt { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); }
.ich-fakten dd { margin: .2rem 0 0; font-family: var(--serif); font-size: 1.4rem; }
.unterschrift { margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 2.4rem; color: var(--gruen); transform: rotate(-3deg); transform-origin: left; }

/* ───────── Fragen ───────── */
.fragen-teil { padding-block: var(--abstand); }
.fragen-raster { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.fragen-kopf { position: sticky; top: calc(var(--kopf-h) + 2rem); }
.fragen-kopf > p:not(.etikett) { margin: 1.4rem 0 1.8rem; color: var(--text-2); font-size: 1.12rem; }
.akkordeon { border-top: 1px solid var(--linie); }
.frage { border-bottom: 1px solid var(--linie); }
.frage summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.3rem, 1.15rem + .5vw, 1.6rem); line-height: 1.25;
  transition: color .3s var(--ease);
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary:hover { color: var(--gruen); }
.plus { position: relative; flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--linie); transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease); }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; background: var(--tinte); border-radius: 2px; transition: transform .5s var(--ease), background-color .4s; }
.plus::after { transform: rotate(90deg); }
.frage[open] .plus { background: var(--gruen); border-color: var(--gruen); transform: rotate(180deg); }
.frage[open] .plus::before, .frage[open] .plus::after { background: var(--creme); }
.frage[open] .plus::after { transform: rotate(0deg); }
.antwort { padding: 0 3.5rem 1.6rem 0; color: var(--text-2); font-size: 1.1rem; }
.frage::details-content { block-size: 0; overflow: hidden; transition: block-size .5s var(--ease), content-visibility .5s allow-discrete; }
.frage[open]::details-content { block-size: auto; }
@supports (interpolate-size: allow-keywords) { :root { interpolate-size: allow-keywords; } }

/* ───────── Band ───────── */
.band { position: relative; height: clamp(340px, 48vw, 560px); overflow: hidden; background: var(--nacht); }
.band-bild { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 43, 37, .1) 20%, rgba(21, 43, 37, .8)); }
.band-text { position: absolute; left: 0; right: 0; bottom: clamp(2rem, 5vw, 4rem); z-index: 1; }
.band-text p { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 1.5rem + 3.6vw, 4.8rem); line-height: 1.02; letter-spacing: -.02em; color: var(--creme); }
.band-text em { color: var(--gold-hell); font-weight: 300; }

/* ───────── Kontakt ───────── */
.kontakt { padding-block: var(--abstand); background: var(--nacht); color: var(--creme); }
.kontakt .titel em { color: var(--gold-hell); }
.kontakt-raster { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.kontakt-info > p:not(.etikett) { margin: 1.4rem 0 1.8rem; color: rgba(246, 242, 234, .8); font-size: 1.12rem; max-width: 34ch; }
.gross-tel { display: inline-flex; align-items: center; gap: .9rem; margin-bottom: 2rem; font-family: var(--serif); font-size: clamp(2.1rem, 1.6rem + 1.8vw, 3.1rem); line-height: 1; text-decoration: none; color: var(--creme); letter-spacing: -.01em; }
.gross-tel svg { width: 38px; height: 38px; padding: 8px; border-radius: 50%; background: var(--gold); color: var(--nacht); stroke-width: 2; transition: transform .5s var(--ease); }
.gross-tel:hover svg { transform: rotate(-12deg) scale(1.08); }
.adresse { margin-bottom: 1.6rem; font-style: normal; font-size: 1.12rem; line-height: 1.6; color: rgba(246, 242, 234, .85); }
.adresse strong { color: var(--creme); }
.karte-rahmen { margin-top: 2rem; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--gruen); border: 1px solid rgba(246, 242, 234, .12); }
.karte-rahmen iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) sepia(.15) contrast(.95); }

.formular { position: relative; padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: 26px; background: var(--papier); color: var(--tinte); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6); }
.formular h3 { font-size: 2rem; }
.formular-hinweis { margin: .4rem 0 1.6rem; color: var(--text-2); font-size: 1rem; }
.themen { margin: 0 0 1.4rem; padding: 0; border: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.themen legend { margin-bottom: .7rem; padding: 0; font-weight: 600; font-size: 1rem; }
.themen label { position: relative; cursor: pointer; }
.themen input { position: absolute; opacity: 0; }
.themen span { display: inline-flex; align-items: center; min-height: 46px; padding: .5rem 1.05rem; border-radius: 999px; border: 1.5px solid var(--linie); background: #fff; font-size: 1rem; font-weight: 500; transition: all .3s var(--ease); }
.themen span::before { content: ""; width: 0; height: 8px; margin-right: 0; border-left: 2px solid transparent; border-bottom: 2px solid transparent; transform: rotate(-45deg) translateY(-2px); transition: width .3s var(--ease), margin .3s var(--ease); }
.themen label:hover span { border-color: var(--salbei); }
.themen input:checked + span { background: var(--gruen); border-color: var(--gruen); color: var(--creme); }
.themen input:checked + span::before { width: 13px; margin-right: .5rem; border-color: var(--gold-hell); }
.themen input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.feld { margin-bottom: 1.1rem; }
.feld label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: 1rem; }
.optional { font-weight: 400; color: var(--text-2); }
.feld input, .feld textarea { width: 100%; min-height: 56px; padding: .85rem 1rem; border-radius: 14px; border: 1.5px solid var(--linie); background: #fff; font-size: 1.08rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.feld textarea { resize: vertical; min-height: 120px; }
.feld input:focus, .feld textarea:focus { outline: none; border-color: var(--gruen); box-shadow: 0 0 0 4px rgba(31, 61, 54, .12); }
.feld input[aria-invalid="true"] { border-color: #a4452c; }
.formular-fehler { min-height: 1.4em; margin: 0 0 .6rem; color: #a4452c; font-weight: 600; font-size: 1rem; }
.formular .knopf-gold { width: 100%; }
.formular-danke { display: grid; justify-items: center; text-align: center; padding: 3rem 1rem; }
.formular-danke[hidden] { display: none; }
.formular-danke h3 { margin: 1.4rem 0 .5rem; }
.formular-danke p { color: var(--text-2); }
.entwurf-hinweis { margin-top: 1rem; font-size: .9rem; }
.danke-kreis { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--gruen); animation: aufgehen .8s var(--ease); }
.danke-kreis svg { width: 42px; height: 42px; stroke: var(--gold-hell); stroke-width: 2.6; stroke-dasharray: 22; stroke-dashoffset: 22; animation: zeichnen .7s var(--ease) .35s forwards; }
@keyframes aufgehen { from { transform: scale(.4); opacity: 0; } }
@keyframes zeichnen { to { stroke-dashoffset: 0; } }

/* ───────── Fuss ───────── */
.fuss { background: var(--nacht); color: rgba(246, 242, 234, .75); border-top: 1px solid rgba(246, 242, 234, .1); font-size: 1rem; }
.fuss-oben { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; padding-block: 3.5rem; }
.fuss-marke { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-family: var(--serif); font-size: 1.4rem; color: var(--creme); }
.fuss-satz { font-family: var(--serif); font-size: 1.5rem; color: var(--creme); }
.fuss-satz em { color: var(--gold-hell); }
.fuss-spalten { display: flex; gap: 4rem; }
.fuss-spalten div { display: flex; flex-direction: column; gap: .35rem; }
.fuss-titel { margin-bottom: .4rem; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-hell); }
.fuss a { text-decoration: none; }
.fuss a:hover { color: var(--creme); text-decoration: underline; text-underline-offset: 4px; }
.fuss-unten { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem 2rem; padding-block: 1.4rem; border-top: 1px solid rgba(246, 242, 234, .1); font-size: .9rem; }

.leiste { display: none; }

@media (max-width: 1280px) and (min-width: 1101px) { .kopf-tel { display: none; } }

/* ───────── Tablet ───────── */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menue {
    display: inline-flex; align-items: center; gap: .55rem; min-height: 46px; padding: .5rem 1rem;
    border: 1.5px solid var(--linie); border-radius: 999px; background: var(--papier); cursor: pointer; font-weight: 600; font-size: 1rem;
  }
  .menue-striche { position: relative; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: background-color .3s; }
  .menue-striche::before, .menue-striche::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease); }
  .menue-striche::before { transform: translateY(-6px); }
  .menue-striche::after { transform: translateY(6px); }
  .nav-offen .menue-striche { background: transparent; }
  .nav-offen .menue-striche::before { transform: rotate(45deg); }
  .nav-offen .menue-striche::after { transform: rotate(-45deg); }
  .nav-offen .nav {
    display: flex; position: fixed; inset: var(--kopf-h) 0 auto; flex-direction: column; gap: 0;
    padding: 1rem clamp(1.25rem, 4vw, 3rem) 2rem; background: var(--creme); border-bottom: 1px solid var(--linie);
    box-shadow: 0 30px 60px -30px rgba(21, 43, 37, .35); animation: runter .5s var(--ease);
  }
  .nav-offen { background: var(--creme); }
  .nav-offen .nav a { padding: 1rem 0; border-radius: 0; border-bottom: 1px solid var(--linie); font-family: var(--serif); font-size: 1.6rem; }
  .nav-offen .nav a::after { display: none; }
  .nav-offen .nav-kontakt { display: block; }
  .nav-offen .nav-tel { display: flex; align-items: center; gap: .6rem; color: var(--gruen); border-bottom: 0 !important; }
  .nav-tel svg { width: 22px; height: 22px; }
  @keyframes runter { from { opacity: 0; transform: translateY(-12px); } }

  .held-raster { grid-template-columns: 1fr 1fr; }
  .karten { grid-template-columns: 1fr 1fr; }
  .karten .karte:last-child { grid-column: 1 / -1; flex-direction: row; }
  .karten .karte:last-child .karte-bild { flex: 0 0 45%; aspect-ratio: auto; }
  .unab-punkte { grid-template-columns: 1fr; max-width: 640px; }
  .vergleich { grid-template-columns: 1fr; }
}

/* ───────── Handy ───────── */
@media (max-width: 860px) {
  body { font-size: 1.125rem; padding-bottom: 76px; }
  :root { --kopf-h: 72px; }
  .kopf-tel, .kopf-aktion > .knopf { display: none; }
  .marke-zeichen { width: 40px; height: 40px; font-size: 1.4rem; }

  .held { padding-top: calc(var(--kopf-h) + 1.5rem); }
  .held-raster { grid-template-columns: 1fr; }
  .held-bild { justify-self: center; max-width: 440px; margin-top: 1rem; }
  .bogen { aspect-ratio: 5 / 5.6; }
  .siegel { left: auto; right: -2%; top: -4%; width: 104px; }
  .policen { left: -4%; bottom: -6%; width: min(290px, 78%); }
  .held-fakten { flex-direction: column; gap: .6rem; }

  .versprechen-raster { grid-template-columns: 1fr; gap: 2rem; }
  .versprechen-punkt { padding: 0; }
  .versprechen-punkt + .versprechen-punkt { border-left: 0; border-top: 1px solid var(--linie); padding-top: 2rem; }

  .karten { grid-template-columns: 1fr; }
  .karten .karte:last-child { flex-direction: column; }
  .karten .karte:last-child .karte-bild { flex: none; aspect-ratio: 16 / 11; }

  .phasen-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; border-radius: 999px; max-width: 100%; }
  .phasen-tabs::-webkit-scrollbar { display: none; }
  .phasen-tabs button { white-space: nowrap; padding: .6rem 1.1rem; }
  .phase { grid-template-columns: 1fr; padding: .75rem; }
  .phase-bild { aspect-ratio: 16 / 10; }
  .phase-text { padding: .5rem .75rem 1rem; }

  .schritte { grid-template-columns: 1fr; gap: 0; }
  .schritte::before, .schritte::after { top: 28px; bottom: 28px; left: 27px; right: auto; width: 2px; height: auto; }
  .schritte::after { transform: scaleY(var(--f)); transform-origin: top; }
  .schritt { display: grid; grid-template-columns: 56px 1fr; column-gap: 1.25rem; padding-bottom: 2rem; }
  .schritt:last-child { padding-bottom: 0; }
  .schritt-nr { grid-row: span 2; margin: 0; }
  .schritt h3 { align-self: center; margin: .7rem 0 .4rem; }

  .check-raster, .ich-raster, .fragen-raster, .kontakt-raster { grid-template-columns: 1fr; }
  .check-intro, .fragen-kopf { position: static; }
  .ring svg, .ring-zahl { width: 112px; }
  .ring svg { height: 112px; }

  .ich-bilder { max-width: 460px; }
  .ich-fakten { grid-template-columns: 1fr 1fr; }
  .antwort { padding-right: 0; }

  .fuss-spalten { gap: 2.5rem; }

  .leiste {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px;
    border-radius: 999px; background: rgba(21, 43, 37, .94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .5);
    transform: translateY(140%); transition: transform .6s var(--ease);
  }
  .leiste.da { transform: none; }
  .leiste a { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 52px; border-radius: 999px; color: var(--creme); font-weight: 600; text-decoration: none; }
  .leiste a svg { width: 20px; height: 20px; }
  .leiste .leiste-termin { background: var(--gold); color: var(--nacht); }
}

@media (max-width: 420px) {
  .marke-zusatz { display: none; }
  .policen { font-size: .88rem; }
}

/* Bewegung reduzieren: alles sofort sichtbar, keine Bewegung */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .js .zeige, .js .held-teil, .js .siegel, .js .policen, .js .policen li, .js .policen-fuss { opacity: 1; transform: none; }
  .js .held-titel .zeile > span { transform: none; filter: none; }
  .js .bogen { clip-path: none; }
  .js .bogen img { transform: none; }
  .js .policen .doppelt::before { transform: scaleX(1); }
  .netz .linie { stroke-dashoffset: 0; }
  .netz .knoten, .netz-text, .netz .geister { opacity: 1; }
  .danke-kreis svg { stroke-dashoffset: 0; }
}

/* Drucken: nur die Checkliste */
@media print {
  body { background: #fff; padding: 0; font-size: 12pt; }
  body::after, .kopf, .leiste, .fuss, main > section:not(.check) { display: none !important; }
  .check { background: #fff; color: #000; padding: 0; }
  .check-intro { display: none; }
  .check-raster { display: block; }
  .check-karte { box-shadow: none; padding: 0; }
  .nur-druck { display: block; font-size: 16pt; margin-bottom: 1.2rem; }
  .punkt { min-height: 0; padding: .3rem 0; margin: 0; }
  .haken { border-color: #000; }
  .js .zeige { opacity: 1 !important; transform: none !important; }
}
