/* ## DATEI css/style.css | Stilsystem der neuen Agentur-Website (Vorschau unter /vorschau/)
   Konzept: 05_website/recherche/2026-09-02_konzept-neue-website.md, Abschnitte 6 und 7.
   Farbwelt "Anlassfarben" aus dem Metallbau: warmes Papier, fast schwarze Tinte, ein einziger
   Akzent in Anlassbronze. Rhythmus ueber paper / paper-dim / nacht, nie ueber Farbe.
   ## KARTE SCHRIFTEN - TOKENS - BASIS - RASTER - TYPO - KNOEPFE - ANLAUF - MOTION - HEADER - HERO
           - UHR - ARBEITEN - RECHNER - WOFUER - SYSTEM - LERNENDE - ABLAUF - ZUSAGE - PREISE - WER
           - FAQ - ABSCHLUSS - FOOTER - UNTERSEITEN - RESPONSIVE - REDUCED-MOTION
   ## FINDEN grep -n "## " css/style.css | Sektionsnamen identisch mit index.html und js/main.js
   ## ZWILLING index.html (Sektionen), js/main.js (Bewegung, Uhr, Rechner)
   ## ACHTUNG Kleinste Schrift ist --step--2 (rund 12.5px). Darunter nichts, der Leser ist 55 und
   liest abends auf dem Handy. Kleinster Breakpoint ist 320px, nicht 560. */

/* ## SCHRIFTEN | Selbst gehostet, kein Google-Fonts-Abruf. Fraunces (Antiqua) fuer wenige grosse
   Saetze, Instrument Sans fuer alles andere, Mono aus dem System fuer Zahlen und Labels.
   Fallbacks mit angepasster Laufweite gegen Layout-Spruenge beim Font-Swap. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 104%;
  ascent-override: 92%;
  descent-override: 24%;
}
@font-face {
  font-family: "Instrument Sans Fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 97%;
  ascent-override: 96%;
  descent-override: 24%;
}

/* ## TOKENS | Farben, Schriften, Skala, Abstaende, Kurven. Eine Akzentfarbe, sonst Grautoene. */
:root {
  --ink: #121316;
  --ink-soft: #3a3c41;
  --grey: #66635b;
  --paper: #f2efe8;
  --paper-dim: #e7e2d6;
  --line: rgba(18, 19, 22, 0.13);
  --line-firm: rgba(18, 19, 22, 0.30);

  --nacht: #171a1f;
  --auf-nacht: #efece4;
  --auf-nacht-2: #a9a69d;
  --line-nacht: rgba(239, 236, 228, 0.14);

  --akzent: #b04f1b;
  --akzent-tief: #8e3e14;

  /* Anlassfarben, nur fuer die Anlauf-Flaechen */
  --anlauf-stroh: #e8c46a;
  --anlauf-bronze: #c25a22;
  --anlauf-violett: #5b3a6e;
  --anlauf-blau: #2e4a73;

  --font-display: "Fraunces", "Fraunces Fallback", Georgia, serif;
  --font-text: "Instrument Sans", "Instrument Sans Fallback", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --step--2: clamp(0.78rem, 0.76rem + 0.10vw, 0.86rem);
  --step--1: clamp(0.90rem, 0.87rem + 0.16vw, 0.98rem);
  --step-0:  clamp(1.05rem, 1.00rem + 0.28vw, 1.20rem);
  --step-1:  clamp(1.25rem, 1.12rem + 0.55vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.28rem + 1.20vw, 2.25rem);
  --step-3:  clamp(2.00rem, 1.45rem + 2.40vw, 3.30rem);
  --step-4:  clamp(2.60rem, 1.55rem + 4.60vw, 5.20rem);

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --sektion: clamp(72px, 10vw, 160px);
  --takt: 8px;
  --mass: 68ch;

  --kurve: cubic-bezier(0.16, 1, 0.3, 1);
  --kurve-ui: cubic-bezier(0.4, 0, 0.2, 1);
  --dauer: 700ms;
  --dauer-ui: 180ms;
}

/* ## BASIS | Reset, Grundtypografie, Textfarben, Auswahl, Fokus. */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--step-0);
  line-height: 1.55;
  letter-spacing: -0.002em;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Feines Korn ueber der ganzen Seite, rein dekorativ, 0 KB Bild */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--akzent-tief); text-underline-offset: 0.14em; text-decoration-thickness: 1px; }
a:hover { color: var(--akzent); }
::selection { background: var(--akzent); color: #fff; }
:focus-visible { outline: 2px solid var(--akzent); outline-offset: 4px; border-radius: 2px; }
p { margin: 0 0 1em; max-width: var(--mass); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 12px 16px; z-index: 100; text-decoration: none;
}
.skip:focus { top: 12px; }
.leise { color: var(--grey); }
.mono {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* ## RASTER | Zwoelf Spalten, 1'240px, Sektionsabstaende, Trennlinien. */
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sektion { padding-block: var(--sektion); position: relative; }
.sektion--dim { background: var(--paper-dim); }
.sektion--nacht { background: var(--nacht); color: var(--auf-nacht); }
.sektion--nacht p { color: var(--auf-nacht); }
.sektion--nacht .leise { color: var(--auf-nacht-2); }
.sektion--nacht a { color: var(--auf-nacht); }
.sektion--nacht a:hover { color: #fff; }
.sektion--linie { border-top: 1px solid var(--line); }
.sektion--nacht.sektion--linie { border-color: var(--line-nacht); }
.raster { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(16px, 2vw, 32px); row-gap: 40px; }
.kopf { margin-bottom: clamp(40px, 6vw, 72px); }
.kopf p { max-width: 52ch; }

/* ## TYPO | Ueberschriften, Ueberzeilen, Laufweite je Groesse. Fraunces nur fuer h1 und wenige
   grosse Saetze (.gross), Instrument Sans fuer h2/h3 und alles andere. */
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 600; line-height: 1.08; text-wrap: balance; }
h1 { font-family: var(--font-display); font-weight: 500; font-size: var(--step-4); letter-spacing: -0.028em; line-height: 1.0; }
h2 { font-size: var(--step-3); letter-spacing: -0.022em; }
h3 { font-size: var(--step-1); letter-spacing: -0.010em; }
h4 { font-size: var(--step-0); letter-spacing: -0.006em; }
.gross { font-family: var(--font-display); font-weight: 500; font-size: var(--step-3); letter-spacing: -0.022em; line-height: 1.06; }
.lead { font-size: var(--step-1); letter-spacing: -0.010em; line-height: 1.35; color: var(--ink-soft); max-width: 46ch; }
.sektion--nacht .lead { color: var(--auf-nacht-2); }
.ueberzeile {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 20px;
}
.ueberzeile::before { content: ""; width: 20px; height: 1px; background: var(--akzent); }
.sektion--nacht .ueberzeile { color: var(--auf-nacht-2); }
.zahl {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ## KNOEPFE | Ein Knopf pro Sektion. Mindestens 48px hoch, Daumen-tauglich. */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  background: var(--akzent); color: #fff;
  font-weight: 600; font-size: var(--step--1); letter-spacing: 0.004em;
  text-decoration: none; border: 1px solid var(--akzent); border-radius: 4px;
  transition: background var(--dauer-ui) var(--kurve-ui), border-color var(--dauer-ui) var(--kurve-ui), transform var(--dauer-ui) var(--kurve-ui);
}
.knopf:hover { background: var(--akzent-tief); border-color: var(--akzent-tief); color: #fff; }
.knopf:active { transform: translateY(1px); }
.knopf--leise { background: transparent; color: var(--ink); border-color: var(--line-firm); }
.knopf--leise:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sektion--nacht .knopf--leise { color: var(--auf-nacht); border-color: rgba(239, 236, 228, 0.35); }
.sektion--nacht .knopf--leise:hover { background: var(--auf-nacht); color: var(--nacht); border-color: var(--auf-nacht); }
.textlink {
  display: inline-flex; align-items: center; gap: 8px; min-height: 48px;
  color: var(--ink); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--line-firm);
  transition: border-color var(--dauer-ui) var(--kurve-ui), color var(--dauer-ui) var(--kurve-ui);
}
.textlink:hover { color: var(--akzent-tief); border-color: var(--akzent); }
.sektion--nacht .textlink { color: var(--auf-nacht); border-color: rgba(239, 236, 228, 0.35); }
.sektion--nacht .textlink:hover { color: #fff; border-color: var(--auf-nacht); }
.textlink .pfeil { transition: transform var(--dauer-ui) var(--kurve-ui); }
.textlink:hover .pfeil { transform: translateX(4px); }

/* ## ANLAUF | Die dunkle Flaeche mit Anlassfarben: Platzhalter fuer echte Fotos (Hero, Wer),
   spaeter durch das Bild ersetzt. Verlauf plus Korn, 0 KB, auf dem Handy nicht von einem
   Shader zu unterscheiden. Driftet langsam, bei reduced-motion steht sie still. */
.anlauf {
  position: relative; overflow: hidden;
  background: var(--nacht);
  border-radius: 6px;
  isolation: isolate;
}
.anlauf::before {
  content: ""; position: absolute; inset: -30%;
  background:
    radial-gradient(40% 50% at 18% 30%, var(--anlauf-stroh) 0%, transparent 60%),
    radial-gradient(45% 55% at 48% 55%, var(--anlauf-bronze) 0%, transparent 62%),
    radial-gradient(45% 50% at 78% 45%, var(--anlauf-violett) 0%, transparent 60%),
    radial-gradient(50% 55% at 65% 90%, var(--anlauf-blau) 0%, transparent 62%);
  opacity: 0.55;
  filter: blur(28px);
}
.anlauf::after {
  content: ""; position: absolute; inset: 0; opacity: 0.16; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Bewegung nur, wo sie nichts kostet: grosser Bildschirm, feiner Zeiger. Auf dem Handy
   bleibt der Verlauf statisch, ein animierter Weichzeichner ist dort der teuerste Effekt. */
@media (pointer: fine) and (min-width: 901px) {
  .anlauf::before { animation: anlauf-drift 38s ease-in-out infinite alternate; }
}
@keyframes anlauf-drift {
  from { transform: translate3d(-3%, -2%, 0) rotate(0deg); }
  to   { transform: translate3d(3%, 3%, 0) rotate(4deg); }
}
.anlauf__inhalt { position: relative; z-index: 1; }
.anlauf__marke {
  position: absolute; left: 20px; bottom: 16px; z-index: 1;
  font-family: var(--font-mono); font-size: var(--step--2); letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--auf-nacht-2);
}

/* ## MOTION | Vokabular: data-anim="fade|rise|wipe", data-anim-delay="ms", data-no-anim.
   Nur wenn html.js gesetzt ist, sind Elemente anfangs verborgen. Ohne JavaScript steht alles
   sofort da. js/main.js ## MOTION setzt .is-in per IntersectionObserver. */
.js [data-anim] {
  opacity: 0;
  transition: opacity var(--dauer) var(--kurve), transform var(--dauer) var(--kurve), clip-path var(--dauer) var(--kurve);
  transition-delay: var(--anim-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-anim="rise"] { transform: translateY(24px); }
.js [data-anim="wipe"] { opacity: 1; clip-path: inset(0 100% 0 0); }
.js [data-anim].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
.js [data-anim].is-in { will-change: auto; }
/* Notnagel: Bricht der Abruf von main.js ab, bleibt sonst fast die ganze Seite unsichtbar.
   Nach vier Sekunden ohne .is-in wird alles eingeblendet. */
@keyframes anim-notnagel { to { opacity: 1; transform: none; clip-path: none; } }
.js [data-anim] { animation: anim-notnagel 1ms linear 4s forwards; }

/* ## HEADER | Fest oben, verschwindet beim Runterscrollen, kommt beim Hochscrollen zurueck.
   Logo, vier Punkte, ein Knopf. Auf dem Handy: Logo, Knopf, Menue. | JS main.js ## HEADER */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(242, 239, 232, 0.88);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform 220ms var(--kurve-ui), background 220ms var(--kurve-ui);
}
.header--weg:not(:focus-within) { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.marke { display: inline-flex; align-items: center; min-height: 48px; }
.marke img { width: 150px; height: auto; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 36px); }
.nav__liste { display: flex; gap: clamp(14px, 2vw, 28px); list-style: none; margin: 0; padding: 0; }
.nav__liste a {
  display: inline-flex; align-items: center; min-height: 48px;
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: var(--step--1);
  border-bottom: 1px solid transparent; transition: border-color var(--dauer-ui) var(--kurve-ui), color var(--dauer-ui) var(--kurve-ui);
}
.nav__liste a:hover, .nav__liste a[aria-current] { border-color: var(--akzent); color: var(--ink); }
.nav__knopf { min-height: 48px; padding-inline: 18px; }
.menue-knopf {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-right: -8px;
  background: none; border: 0; cursor: pointer; color: var(--ink);
}
.menue-knopf span { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.menue-knopf span::before, .menue-knopf span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; transition: transform var(--dauer-ui) var(--kurve-ui), top var(--dauer-ui) var(--kurve-ui); }
.menue-knopf span::before { top: -7px; }
.menue-knopf span::after { top: 7px; }
.menue-knopf[aria-expanded="true"] span { background: transparent; }
.menue-knopf[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menue-knopf[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.menue {
  display: none; position: fixed; inset: 72px 0 0 0; z-index: 49;
  background: var(--paper); padding: 24px var(--gutter) 40px;
  border-top: 1px solid var(--line);
}
.menue[data-offen="true"] { display: block; }
.menue ul { list-style: none; margin: 0; padding: 0; }
.menue li + li { border-top: 1px solid var(--line); }
.menue a { display: flex; align-items: center; min-height: 60px; font-size: var(--step-1); font-weight: 500; color: var(--ink); text-decoration: none; }
.menue .knopf { margin-top: 24px; width: 100%; min-height: 56px; }
.menue__fuss { margin-top: 32px; }

/* ## HERO | Ein Satz, ein Untersatz, ein Knopf, ein Textlink, rechts die Anlauf-Flaeche
   (spaeter das Foto). Zeilenweises Anheben, nach 900ms fertig. | HTML index.html ## HERO */
.hero { padding-top: calc(72px + clamp(56px, 9vw, 120px)); padding-bottom: clamp(56px, 8vw, 110px); }
.hero__raster { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.hero h1 { margin-bottom: 0.3em; }
.hero h1 .zeile { display: block; }
.hero h1 .nachsatz { display: block; color: var(--grey); font-size: 0.62em; letter-spacing: -0.02em; margin-top: 0.35em; }
.hero__text { margin-top: clamp(20px, 3vw, 32px); }
.hero__aktion { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; margin-top: clamp(28px, 4vw, 40px); }
.hero__bild { aspect-ratio: 4 / 5; min-height: 320px; }
.hero__bild .anlauf__inhalt { position: absolute; inset: 0; display: grid; place-items: end start; padding: clamp(20px, 3vw, 32px); }
.hero__bild .zitat { font-family: var(--font-display); font-weight: 500; font-size: var(--step-1); line-height: 1.2; color: var(--auf-nacht); max-width: 22ch; letter-spacing: -0.012em; }

/* ## UHR | Schmales Band, kennt die Uhrzeit des Lesers. Ziffern stehen, nichts blinkt.
   Statischer Text im HTML, JS ersetzt ihn nur, wenn es laeuft. | JS main.js ## UHR */
.uhr { padding-block: clamp(28px, 4vw, 44px); }
.uhr__inner { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 40px; }
.uhr__satz { margin: 0; max-width: none; font-size: var(--step-1); letter-spacing: -0.010em; line-height: 1.3; }
.uhr__satz .zahl { color: var(--auf-nacht); font-size: 1.05em; }
.uhr__note { margin: 0; color: var(--auf-nacht-2); }

/* ## ARBEITEN | Zwei Karten im Browser-Rahmen, ehrlich als Musterbetrieb beschriftet.
   Bild skaliert beim Zeigen um 1.02 im Rahmen, die Karte selbst steht. | HTML ## ARBEITEN */
.arbeiten__raster { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.karte { display: block; color: inherit; text-decoration: none; }
.rahmen { border: 1px solid var(--line-firm); border-radius: 8px; overflow: hidden; background: #fff; }
.rahmen__leiste { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: var(--paper-dim); }
.rahmen__leiste span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-firm); }
.rahmen__bild { overflow: hidden; aspect-ratio: 4 / 3; }
.rahmen__bild img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 900ms var(--kurve); }
.karte:hover .rahmen__bild img { transform: scale(1.02); }
.karte__text { padding-top: 20px; }
.karte__text h3 { margin-bottom: 8px; }
.karte__text .mono { display: block; margin-bottom: 10px; color: var(--grey); }
.karte__zeilen { list-style: none; margin: 0; padding: 0; color: var(--ink-soft); }
.karte__zeilen li { padding: 8px 0; border-top: 1px solid var(--line); }
.karte__zeilen li:first-child { border-top: 0; padding-top: 0; }
.karte__weiter { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; min-height: 48px; font-weight: 500; color: var(--ink); }
.karte:hover .karte__weiter { color: var(--akzent-tief); }
.arbeiten__nach { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-wrap: wrap; gap: 12px 32px; align-items: center; }

/* ## RECHNER | Drei Regler, zwei Ergebnisse. Die Bewegung ist die Groesse selbst: Zahl und
   Balken reagieren auf den Regler, nichts zaehlt beim Erscheinen hoch. | JS main.js ## RECHNER */
.rechner__raster { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.regler { display: block; padding: 20px 0; border-top: 1px solid var(--line); }
.regler:last-of-type { border-bottom: 1px solid var(--line); }
.regler__kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.regler__kopf span:first-child { font-weight: 500; }
.regler__wert { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: var(--step-0); color: var(--ink); }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 48px; margin: 0; background: transparent; cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track { height: 2px; background: var(--line-firm); border-radius: 2px; }
input[type="range"]::-moz-range-track { height: 2px; background: var(--line-firm); border-radius: 2px; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; margin-top: -13px; border-radius: 50%;
  background: var(--akzent); border: 4px solid var(--paper); box-shadow: 0 0 0 1px var(--akzent);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--akzent); border: 4px solid var(--paper); box-shadow: 0 0 0 1px var(--akzent);
}
input[type="range"]:focus-visible { outline: none; }
input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px var(--akzent); }
input[type="range"]:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 3px var(--akzent); }
.ergebnis { position: sticky; top: 96px; padding: clamp(24px, 3vw, 40px); background: var(--nacht); color: var(--auf-nacht); border-radius: 6px; }
.ergebnis__label { color: var(--auf-nacht-2); margin: 0 0 8px; }
.ergebnis__zahl { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: var(--step-3); line-height: 1; letter-spacing: -0.02em; margin: 0; color: var(--auf-nacht); }
.ergebnis__zahl small { font-size: max(var(--step--2), 0.42em); color: var(--auf-nacht-2); letter-spacing: 0.02em; margin-right: 0.3em; }
.balken { height: 4px; background: var(--line-nacht); border-radius: 2px; margin: 18px 0 36px; overflow: hidden; }
.balken i { display: block; height: 100%; width: 0; background: var(--akzent); border-radius: 2px; transition: width 260ms var(--kurve-ui); }
.ergebnis__zweit { padding-top: 24px; border-top: 1px solid var(--line-nacht); }
.ergebnis__zweit .ergebnis__zahl { font-size: var(--step-2); }
.ergebnis__note { margin-top: 28px; color: var(--auf-nacht-2); font-size: var(--step--1); max-width: none; }

/* ## WOFUER | Drei Prinzipien, je eine fette Zeile und drei normale. Keine Zahl, kein Icon. */
.prinzipien { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.prinzip { padding-top: 20px; border-top: 2px solid var(--ink); }
.prinzip h3 { margin-bottom: 12px; }
.prinzip p { color: var(--ink-soft); }

/* ## SYSTEM | Der Weg einer Anfrage. Die Linie links zeichnet sich beim Scrollen, Station fuer
   Station wird sichtbar. Bei reduced-motion steht alles sofort. | JS main.js ## SYSTEM */
.system__raster { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.system__kopf { position: sticky; top: 110px; }
.weg { position: relative; list-style: none; margin: 0; padding: 0 0 0 40px; counter-reset: station; }
.weg::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px; background: var(--line); }
.weg::after { content: ""; position: absolute; left: 7px; top: 12px; width: 2px; height: calc(100% - 24px); background: var(--akzent); transform-origin: top; transform: scaleY(var(--weg, 0)); transition: transform 120ms linear; }
.station { position: relative; padding: 18px 0 26px; }
.station::before {
  content: ""; position: absolute; left: -40px; top: 26px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--line-firm);
  transition: border-color 300ms var(--kurve-ui), background 300ms var(--kurve-ui);
}
.station.is-an::before { border-color: var(--akzent); background: var(--akzent); }
.station h3 { font-size: var(--step-0); margin-bottom: 6px; }
.station h3 .zahl { color: var(--grey); margin-right: 10px; font-weight: 500; }
.station.is-an h3 .zahl { color: var(--akzent); }
.station p { color: var(--ink-soft); }
.station--notfall h3 strong { color: var(--akzent-tief); }
.system__note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--grey); font-size: var(--step--1); }

/* ## LERNENDE | Text links, Anlauf-Flaeche rechts (spaeter ein Foto vom Betrieb des Kunden). */
.lernende__raster { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.lernende__bild { aspect-ratio: 5 / 4; }
.lernende__bild .anlauf__inhalt { position: absolute; inset: 0; display: grid; place-items: center; padding: 32px; }
.lernende__bild .zitat { font-family: var(--font-display); font-weight: 500; font-size: var(--step-2); line-height: 1.15; letter-spacing: -0.016em; color: var(--auf-nacht); text-align: center; max-width: 16ch; }
.liste { margin: 0; padding: 0; list-style: none; }
.liste li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.liste li:last-child { border-bottom: 1px solid var(--line); }
.liste li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 8px; height: 8px; border-radius: 50%; background: var(--akzent); }

/* ## ABLAUF | Vier Schritte mit sehr grossen Ziffern als tragendes Element. Ziffern mit
   leichtem Parallax (max 40px), nur bei feinem Zeiger. | JS main.js ## ABLAUF */
.schritte { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
.schritt { padding-top: 20px; border-top: 1px solid var(--line-firm); }
.schritt__ziffer { font-family: var(--font-display); font-weight: 500; font-size: var(--step-4); line-height: 0.9; letter-spacing: -0.03em; color: var(--akzent); margin-bottom: 20px; will-change: transform; }
.schritt h3 { margin-bottom: 10px; }
.schritt p { color: var(--ink-soft); font-size: var(--step--1); }
.schritt--du { border-top-color: var(--akzent); }
.schritt__marke { display: inline-block; margin-top: 12px; }

/* ## ZUSAGE | Dunkel, ruhig, vier Zeilen mit Konsequenz. Keine Bewegung: Ruhe ist die Aussage. */
.zusagen { list-style: none; margin: 0; padding: 0; }
.zusage { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 16px 40px; padding: 28px 0; border-top: 1px solid var(--line-nacht); }
.zusage:last-child { border-bottom: 1px solid var(--line-nacht); }
.zusage h3 { font-size: var(--step-1); margin: 0; letter-spacing: -0.012em; }
.zusage p { color: var(--auf-nacht-2); max-width: none; }
.zusage p strong { color: var(--auf-nacht); }
.zusage__note { margin-top: 32px; color: var(--auf-nacht-2); font-size: var(--step--1); max-width: 60ch; }

/* ## PREISE | Drei Karten, B als Empfehlung, Buendelzeile, ein erklaerender Satz, Retainer.
   Preise stehen sofort und vollstaendig da, werden nie animiert. */
.preise__raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 32px); }
.modul { position: relative; padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line-firm); border-radius: 6px; background: var(--paper); display: flex; flex-direction: column; gap: 14px; }
.modul--empfehlung { border-color: var(--akzent); box-shadow: inset 0 0 0 1px var(--akzent); }
.modul__marke { position: absolute; top: -12px; left: 24px; padding: 3px 10px; background: var(--akzent); color: #fff; font-family: var(--font-mono); font-size: var(--step--2); letter-spacing: 0.10em; text-transform: uppercase; border-radius: 3px; }
.modul__buchstabe { font-family: var(--font-mono); color: var(--grey); letter-spacing: 0.10em; font-size: var(--step--2); }
.modul h3 { margin: 0; font-size: var(--step-1); }
.modul__preis { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: var(--step-2); letter-spacing: -0.02em; line-height: 1; margin: 4px 0 6px; }
.modul__preis small { font-size: max(var(--step--2), 0.45em); color: var(--grey); letter-spacing: 0.02em; margin-right: 0.35em; }
.modul ul { list-style: none; margin: 0; padding: 0; color: var(--ink-soft); font-size: var(--step--1); }
.modul li { padding: 8px 0; border-top: 1px solid var(--line); }
.buendel { margin-top: clamp(28px, 4vw, 40px); padding: 24px 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 12px 32px; }
.buendel__satz { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.016em; margin: 0; max-width: none; }
.buendel__satz .zahl { color: var(--akzent-tief); }
.buendel__statt { color: var(--grey); text-decoration: line-through; margin-left: 10px; font-weight: 400; }
.preise__erklaerung { margin-top: 24px; max-width: 64ch; color: var(--ink-soft); }
.retainer { margin-top: clamp(28px, 4vw, 40px); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.retainer p { margin: 0; max-width: none; }
.retainer .gross { font-size: var(--step-2); }

/* ## WER | Ein Gesicht (Anlauf-Flaeche, bis das Foto da ist), fuenf Saetze, Nummer und Mail
   als lesbarer Text. Hier steht "ich", nie "wir". */
.wer__raster { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.wer__bild { aspect-ratio: 4 / 5; }
.wer__bild .anlauf__inhalt { position: absolute; inset: 0; display: grid; place-items: center; }
.wer__bild .monogramm { font-family: var(--font-display); font-weight: 500; font-size: clamp(5rem, 14vw, 11rem); line-height: 1; letter-spacing: -0.04em; color: var(--auf-nacht); opacity: 0.9; }
.kontaktzeilen { list-style: none; margin: 28px 0 0; padding: 0; }
.kontaktzeilen li { display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--line); }
.kontaktzeilen li:last-child { border-bottom: 1px solid var(--line); }
.kontaktzeilen .mono { color: var(--grey); min-width: 6ch; }
.kontaktzeilen a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: var(--step-1); letter-spacing: -0.01em; display: inline-flex; align-items: center; min-height: 48px; }
.kontaktzeilen a:hover { color: var(--akzent-tief); }

/* ## FAQ | Vier echte Einwaende als details/summary. Ohne JavaScript nativ auf- und zuklappbar,
   mit JavaScript sauber animiert (260ms). | JS main.js ## FAQ */
.fragen { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-firm); }
.frage { border-bottom: 1px solid var(--line-firm); }
.frage summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-size: var(--step-1); font-weight: 600; letter-spacing: -0.012em; line-height: 1.25;
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: ""; flex: 0 0 auto; width: 14px; height: 14px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 14px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 14px no-repeat;
  transition: transform 260ms var(--kurve-ui);
}
.frage[open] summary::after { transform: rotate(45deg); }
.frage__antwort { overflow: hidden; }
.frage__antwort > div { padding: 0 0 26px; color: var(--ink-soft); max-width: var(--mass); }
.js .frage__antwort { height: 0; transition: height 260ms var(--kurve-ui); }
.js .frage[open] .frage__antwort { height: auto; }

/* ## ABSCHLUSS | Dunkel. Ein Satz, die Nummer gross, die Mail, ein leiser Zweitweg. Kein Widget. */
.abschluss__inner { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.abschluss .gross { font-size: var(--step-4); line-height: 1.0; letter-spacing: -0.028em; color: var(--auf-nacht); margin-bottom: 0.4em; }
.abschluss__kontakt { list-style: none; margin: 0; padding: 0; }
.abschluss__kontakt li { padding: 18px 0; border-top: 1px solid var(--line-nacht); }
.abschluss__kontakt li:last-child { border-bottom: 1px solid var(--line-nacht); }
.abschluss__kontakt .mono { display: block; color: var(--auf-nacht-2); margin-bottom: 6px; }
.abschluss__kontakt a { color: var(--auf-nacht); text-decoration: none; font-weight: 500; font-size: var(--step-2); letter-spacing: -0.016em; display: inline-flex; align-items: center; min-height: 48px; }
.abschluss__kontakt a:hover { color: #fff; }
.abschluss__zweit { margin-top: 28px; }

/* ## FOOTER | Drei Spalten, darunter eine Mono-Zeile. Keine Bewegung. */
.fuss { padding: clamp(40px, 6vw, 72px) 0 32px; border-top: 1px solid var(--line); }
.fuss__raster { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px 48px; }
.fuss__titel { font-family: var(--font-mono); font-size: var(--step--2); letter-spacing: 0.10em; text-transform: uppercase; color: var(--grey); font-weight: 500; margin-bottom: 16px; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { padding: 0; }
.fuss a { color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; min-height: 48px; }
.fuss a:hover { color: var(--akzent-tief); }
.fuss address { font-style: normal; color: var(--ink-soft); line-height: 1.7; }
.fuss__marke img { width: 150px; margin-bottom: 20px; }
.fuss__zeile { margin-top: clamp(32px, 5vw, 56px); padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; color: var(--grey); }

/* ## UNTERSEITEN | Gemeinsame Bausteine der Unterseiten: Seitenkopf, Textspalte, Fallseiten,
   Tabelle, Formularseite. Jede Unterseite darf zusaetzlich css/seite-<name>.css laden. */
.seitenkopf { padding-top: calc(72px + clamp(48px, 8vw, 110px)); padding-bottom: clamp(40px, 6vw, 80px); }
.seitenkopf h1 { font-size: var(--step-3); letter-spacing: -0.022em; line-height: 1.04; max-width: 20ch; }
.seitenkopf .lead { margin-top: 20px; }
.text { max-width: var(--mass); }
.text h2 { font-size: var(--step-2); margin-top: 1.6em; }
.text h3 { margin-top: 1.4em; }
.hinweis { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid var(--akzent); border-radius: 4px; color: var(--akzent-tief); font-family: var(--font-mono); font-size: var(--step--2); letter-spacing: 0.08em; text-transform: uppercase; }
.tabelle { width: 100%; min-width: 640px; border-collapse: collapse; font-size: var(--step--1); }
.tabelle--breit { min-width: 760px; }
.tabelle th, .tabelle td { text-align: left; padding: 14px 16px 14px 0; border-top: 1px solid var(--line); vertical-align: top; }
.tabelle tr:last-child td { border-bottom: 1px solid var(--line); }
.tabelle thead th { font-family: var(--font-mono); font-size: var(--step--2); letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); font-weight: 500; }
/* Zeilenkoepfe sind Inhalt, keine Beschriftung: normale Schrift, volle Farbe. */
.tabelle tbody th { font-weight: 600; color: var(--ink); }
.tabelle td { max-width: 52ch; }
.tabelle .zahl { white-space: nowrap; }
.tabelle-scroll { overflow-x: auto; }
.bildpaar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bildpaar figure { margin: 0; }
.bildpaar figcaption { margin-top: 10px; }
.feld { display: block; margin-bottom: 20px; }
.feld span { display: block; font-weight: 500; margin-bottom: 8px; }
.feld input, .feld textarea, .feld select {
  width: 100%; min-height: 52px; padding: 12px 14px;
  font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line-firm); border-radius: 4px;
}
.feld textarea { min-height: 140px; resize: vertical; }
.feld input:focus, .feld textarea:focus, .feld select:focus { outline: 2px solid var(--akzent); outline-offset: 0; border-color: var(--akzent); }

/* ## RESPONSIVE | Umbrueche. Harter Testfall 320px: eine Spalte, nichts wird gequetscht. */
@media (max-width: 1100px) {
  .schritte { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__liste, .nav__knopf { display: none; }
  .menue-knopf { display: inline-flex; }
  /* Ohne JavaScript kann der Burger nichts schalten: dann steht das Menue offen im Fluss. */
  .no-js .menue { display: block; position: static; inset: auto; padding: 16px var(--gutter) 24px; }
  .no-js .menue-knopf { display: none; }
  .hero__raster, .rechner__raster, .system__raster, .lernende__raster, .wer__raster, .abschluss__inner { grid-template-columns: 1fr; }
  .system__kopf { position: static; }
  .ergebnis { position: static; }
  .prinzipien { grid-template-columns: 1fr; gap: 32px; }
  .preise__raster { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr 1fr; }
  .zusage { grid-template-columns: 1fr; gap: 8px; }
  .hero__bild { aspect-ratio: 16 / 10; min-height: 240px; }
  .wer__bild { aspect-ratio: 16 / 10; max-width: 520px; }
  .wer__raster { align-items: start; }
}
@media (max-width: 640px) {
  .arbeiten__raster { grid-template-columns: 1fr; }
  .schritte { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr; }
  .bildpaar { grid-template-columns: 1fr; }
  .marke img { width: 128px; }
  .hero__aktion .knopf { width: 100%; min-height: 56px; }
  .hero__bild { min-height: 200px; }
  .lernende__bild { aspect-ratio: 4 / 3; }
}
@media (max-width: 400px) {
  .ergebnis { padding: 20px; }
  .modul { padding: 20px; }
  .uhr__inner { flex-direction: column; }
}

/* ## REDUCED-MOTION | Echter Zweitzustand: alles sichtbar, nichts wandert, Linie steht
   vollstaendig, Anlauf-Flaeche driftet nicht. js/main.js initialisiert dann keine Bewegung. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
  .js [data-anim] { opacity: 1; transform: none; clip-path: none; }
  .weg::after { transform: scaleY(1); }
  .station::before { border-color: var(--akzent); background: var(--akzent); }
  .station h3 .zahl { color: var(--akzent); }
  .anlauf::before { animation: none; }
  .karte:hover .rahmen__bild img { transform: none; }
}

/* Seitenwechsel: eingebaute Loesung des Browsers, 0 KB JavaScript. Browser ohne
   Unterstuetzung laden schlicht normal neu. */
@view-transition { navigation: auto; }
