/* Mietbiene Website — helle Fassung (Bens Alternativkonzept vom 06.09.2026).
   Farbtoken 1:1 aus prototyp/tokens-hell.css, damit Seite und helle App aus einem Guss sind.
   Gemessen an Bens Konzeptbild (entwuerfe/alternativ-2026-09-06/_zoom/website.png, PIL, 10.09.2026):
   Hero-Grund #F7F4F2, Blob #F8EBDD, Zettel #FDE8C5, gefuellte Knoepfe #411B51 (= --held).
   Zielgruppe 45+: Fliesstext 18 px, Beschriftungen nie unter 13 px, Tippziele >= 48 px,
   Kontrast ueberall >= 4,5:1 — alle Paare unten am 10.09.2026 gerechnet (WCAG-Formel):
   held/hero-grund 13,1 · tinte/hero-grund 14,6 · gedaempft/weiss 5,4 · gedaempft/hero-grund 4,9
   hero-label/hero-grund 5,5 · weiss/held 14,3 · honig/held 9,8 · held/honig 9,8 · held/zettel 12,0
   warn #9C4722 auf warn-bg 5,6 (App-Warnton #B4562B laege bei 4,3 — deshalb hier dunkler).
   Honig (#F8D078) ist auf hellem Grund NIE Textfarbe (1,5:1) — nur Flaeche und Zeichnung. */

:root {
  /* Welt (identisch mit der hellen App) */
  --held: #401850;
  --held-hover: #4E1F5E;      /* Hover auf Vollton; seit 11.09.2026 (Verlauf) ungenutzt */
  --verlauf: linear-gradient(135deg, #300C48 0%, #6B2E96 100%);
  --honig: #F8D078;
  --honig-dunkel: #E8B23C;
  --creme: #FDF4E2;
  --karten-ton: #F6F5F9;
  --akzent-bg: #EFE9F3;
  --hero-label: #6B5E74;
  --balken: #8B4FB8;
  --trenner: #EAE6EE;
  --blatt: #FFFFFF;
  --bg: #F9F8F6;
  --tinte: #24202A;
  --gedaempft: #6E6878;
  --gut: #1F7A4E;
  --gut-bg: #EAF5EF;
  --warn: #9C4722;
  --warn-bg: #FBEFE7;
  --link: #401850;

  /* Nur Website: aus dem Konzeptbild gemessen */
  --hero-grund: #F7F4F2;
  --blob: #F8EBDD;
  --zettel: #FDE8C5;

  --font-marke: "Roboto Slab", Georgia, "Times New Roman", serif;
  --font-sans: "Public Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-hand: "Caveat", "Segoe Print", "Bradley Hand", cursive;

  --maxw: 1120px;
  --schmal: 720px;
  --radius: 16px;
  --radius-gross: 22px;
  --radius-knopf: 14px;   /* wie .knopf in der hellen App: gerundet, keine Pille */
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* Schriften: selbst gehostet, kein CDN (Datenschutz: kein Abruf bei Google) ---- */
@font-face {
  font-family: "Public Sans"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("schriften/PublicSans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("schriften/Caveat-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Slab"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("schriften/RobotoSlab-Medium.woff2") format("woff2"),
       url("schriften/RobotoSlab-Medium.woff") format("woff");
}
@font-face {
  font-family: "Roboto Slab"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("schriften/RobotoSlab-Bold.woff2") format("woff2"),
       url("schriften/RobotoSlab-Bold.woff") format("woff");
}

/* Grundlage ------------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--blatt); color: var(--tinte);
  font-family: var(--font-sans);
  font-size: 18px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--balken); outline-offset: 3px; border-radius: 6px;
}
/* Ueberschriften in Roboto Slab, wie in der hellen App (Bens Konzept: Serifen-Headline) */
h1, h2, h3 { font-family: var(--font-marke); font-weight: 700; line-height: 1.15;
  text-wrap: balance; margin: 0; letter-spacing: 0; color: var(--held); }
h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.1; }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: 21px; }
h4 { font-family: var(--font-sans); }
p { margin: 0 0 16px; max-width: 62ch; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.schmal { max-width: var(--schmal); margin: 0 auto; padding: 0 22px; }
.leise { color: var(--gedaempft); }
.klein { font-size: 15px; }
/* Handschrift-Akzent (Caveat): nur fuer kurze Saetze, nie fuer Information */
.hand { font-family: var(--font-hand); font-weight: 600; font-size: 30px; line-height: 1.2;
  color: var(--held); display: block; }

/* Kopfzeile -------------------------------------------------------------- */
.kopf { background: var(--hero-grund); position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--trenner); }
.kopf .wrap { display: flex; align-items: center; gap: 18px; min-height: 76px; }
.marke { display: inline-flex; align-items: baseline; gap: 7px; text-decoration: none; padding: 8px 4px; }
.marke svg { flex: none; }
.marke span { font-family: var(--font-marke); font-weight: 500; font-size: 25px;
  letter-spacing: 0; color: var(--held); }
.kopf nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; margin-left: 10px; }
.kopf nav a { display: inline-flex; align-items: center; min-height: 48px; padding: 0 14px;
  text-decoration: none; color: var(--tinte); font-weight: 600; font-size: 17px; border-radius: 10px; }
.kopf nav a:hover { background: var(--akzent-bg); }
.kopf nav a[aria-current="page"] { color: var(--held); box-shadow: inset 0 -3px 0 var(--honig); border-radius: 10px 10px 0 0; }
.kopf-tasten { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.kopf-tasten .knopf { min-height: 48px; padding: 0 20px; font-size: 16px; box-shadow: none; }
@media (max-width: 900px) {
  /* Am Handy: Logo, darunter das Menue in einer Zeile (340 px bei 390 px Breite, gemessen
     10.09.2026). Die Kopf-Knoepfe entfallen -- mit ihnen war der klebende Kopf 150 px hoch,
     und der Hero-Knopf steht ohnehin eine Handbreit darunter. */
  .kopf .wrap { flex-wrap: wrap; row-gap: 0; padding-bottom: 6px; min-height: 60px; }
  .kopf-tasten { display: none; }
  .kopf nav { width: 100%; margin: 0 -6px; }             /* bricht darunter um, scrollt nicht */
  .kopf nav a { font-size: 16px; padding: 0 11px; min-height: 48px; }
}

/* Knoepfe: Lila-Verlauf wie alle dunklen Lila-Flaechen (Ben, 11.09.2026) ------- */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 26px; border-radius: var(--radius-knopf); border: 0;
  font: inherit; font-weight: 700; font-size: 18px; text-decoration: none; cursor: pointer;
  background: var(--verlauf); color: #fff; box-shadow: 0 6px 18px rgba(64, 24, 80, .18);
  transition: filter .15s var(--ease), transform .15s var(--ease), box-shadow .15s var(--ease);
}
.knopf:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(64, 24, 80, .24); }
/* Verlauf laesst sich nicht umfaerben: Hover hellt um den alten Vollton-Schritt auf (#401850 → #4E1F5E ≈ ×1,2) */
.knopf:not(.zweit):not(.hell):hover { filter: brightness(1.2); }
.knopf:active { transform: none; }
.knopf.zweit { background: #fff; color: var(--held); box-shadow: none; border: 1.5px solid #DDD8E0; }
.knopf.zweit:hover { background: #fff; border-color: var(--balken); }
.knopf.hell { background: #fff; color: var(--held); box-shadow: 0 6px 18px rgba(0, 0, 0, .18); }
.knopf.hell:hover { background: var(--creme); }
.knopf.breit { width: 100%; }
@media (prefers-reduced-motion: reduce) { .knopf { transition: none; } .knopf:hover { transform: none; } }

/* Hero: Text links, Buehne rechts (Blob, Laptop, Zettel) ------------------ */
.kopfbereich { background: var(--hero-grund); }
.hero { background: var(--hero-grund); padding: 60px 0 56px; overflow: hidden; }
.hero .wrap { display: grid; gap: 44px; align-items: center; }
@media (min-width: 940px) { .hero .wrap { grid-template-columns: 1fr 1fr; gap: 40px; } }
.hero .lede { font-size: clamp(18px, 2vw, 20px); color: var(--gedaempft); margin: 20px 0 30px; max-width: 40ch; }
.hero .tasten { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .haken-zeile { display: flex; gap: 10px 24px; flex-wrap: wrap; margin: 28px 0 0; padding: 0;
  list-style: none; font-size: 16px; color: var(--tinte); }
.hero .haken-zeile li { display: inline-flex; align-items: center; gap: 8px; }
.hero .haken-zeile b { color: var(--held); font-weight: 800; }

.buehne { position: relative; justify-self: center; width: min(560px, 100%); padding: 58px 0 30px; }
.buehne .blob { position: absolute; inset: 0 0 8px 0; background: var(--blob);
  border-radius: 58% 42% 55% 45% / 46% 52% 48% 54%; z-index: 0; }
.laptop { position: relative; z-index: 1; margin: 0 22px; }
.laptop .schirm { background: #24202A; border-radius: 16px 16px 6px 6px; padding: 12px 12px 14px;
  box-shadow: 0 30px 60px rgba(36, 32, 42, .28); }
.laptop .schirm img { border-radius: 8px; width: 100%; }
.laptop .fuss-leiste { height: 14px; margin: 0 -18px; background: linear-gradient(#DAD5DD, #C6C0CB);
  border-radius: 0 0 14px 14px; box-shadow: 0 10px 22px rgba(36, 32, 42, .16); }
.laptop .fuss-leiste::after { content: ""; display: block; width: 96px; height: 4px; margin: 0 auto;
  background: #B4ADB9; border-radius: 0 0 6px 6px; }
.zettel { position: absolute; z-index: 2; left: -8px; top: 0; transform: rotate(-5deg);
  background: var(--zettel); color: var(--held); font-family: var(--font-hand); font-weight: 600;
  font-size: 24px; line-height: 1.15; padding: 14px 18px; max-width: 220px;
  box-shadow: 0 10px 24px rgba(36, 32, 42, .14); }
.strahlen { position: absolute; z-index: 2; right: 10px; top: 4px; width: 72px; height: 72px; }
.strahlen path { stroke: var(--honig-dunkel); stroke-width: 4; stroke-linecap: round; fill: none; }
@media (max-width: 939px) {
  .buehne { padding-top: 62px; }
  .zettel { font-size: 21px; max-width: 190px; }
}

/* Faktenzeile unter dem Hero (statt der Sterne im Konzept: nichts Erfundenes) */
.faktenzeile { padding: 26px 0; text-align: center; border-bottom: 1px solid var(--trenner); }
.fakten { display: inline-flex; gap: 10px 26px; flex-wrap: wrap; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--gedaempft); }
.fakten span { display: inline-flex; align-items: center; gap: 9px; }
.fakten i { width: 8px; height: 8px; border-radius: 50%; background: var(--honig); flex: none; }

/* Drei Versprechen mit Honig-Kreisen (Konzept: Mitte der Startseite) */
.trio-kopf { text-align: center; margin-bottom: 36px; }
.trio-kopf .hand { margin-bottom: 8px; }
.trio { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.trio > div { text-align: center; }
.trio .kreis { width: 84px; height: 84px; border-radius: 50%; background: var(--honig);
  display: grid; place-items: center; margin: 0 auto 18px; }
.trio h3 { margin-bottom: 8px; }
.trio p { font-size: 17px; color: var(--gedaempft); margin: 0 auto; max-width: 30ch; }
.leitworte { margin-top: 40px; text-align: center; font-size: 14px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--hero-label); }

/* Abschnitte: ruhiger Wechsel weiss / creme, keine Kante (die gehoert zur Lila-Welt) */
.blatt { position: relative; }
section { padding: 64px 0; }
.blatt > section { background: var(--blatt); }
.blatt > section.getoent { background: var(--hero-grund); }
.kopfzeile { max-width: 60ch; margin-bottom: 30px; }
.kopfzeile p { margin: 12px 0 0; color: var(--gedaempft); font-size: 19px; }

/* Karten ----------------------------------------------------------------- */
.reihe { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.kachel { background: #fff; border: 1px solid var(--trenner); border-radius: var(--radius); padding: 24px 22px; }
.kachel .zeichen { width: 48px; height: 48px; border-radius: 50%; background: var(--creme);
  display: grid; place-items: center; margin-bottom: 14px; }
.kachel h3 { margin-bottom: 8px; }
.kachel p { margin: 0; font-size: 17px; color: var(--gedaempft); }

/* Liste mit Haken -------------------------------------------------------- */
.haken { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.haken li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.haken .h { width: 26px; height: 26px; border-radius: 50%; background: var(--gut-bg); color: var(--gut);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; margin-top: 2px; }
.haken b { display: block; }
.haken span.text { color: var(--gedaempft); font-size: 17px; }
.haken .bald { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--warn); background: var(--warn-bg);
  padding: 3px 9px; border-radius: 999px; margin-left: 8px; vertical-align: 2px; }

/* Preis ------------------------------------------------------------------ */
.preise { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 760px; }
.preis { border: 1.5px solid var(--trenner); border-radius: var(--radius-gross); padding: 26px 24px; background: #fff; }
.preis.empfohlen { border-color: var(--held); background: var(--creme); }
.preis .marke-oben { font-size: 14px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--held); margin-bottom: 8px; }
.preis .zahl { font-family: var(--font-marke); font-size: 46px; font-weight: 700; line-height: 1; color: var(--held); }
.preis .takt { font-size: 17px; color: var(--gedaempft); margin: 8px 0 18px; }
.preis ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; font-size: 17px; }
.preis ul li { display: grid; grid-template-columns: 24px 1fr; gap: 9px; }
.preis ul .h { color: var(--gut); font-weight: 800; }

/* Ueber-mich-Anriss ------------------------------------------------------- */
.person { display: grid; gap: 28px; align-items: center; }
@media (min-width: 820px) { .person { grid-template-columns: 260px 1fr; } }
.portraet { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-gross); background: var(--creme);
  display: grid; place-items: center; text-align: center; color: var(--held); font-weight: 700;
  font-size: 15px; padding: 20px; overflow: hidden; position: relative; }
/* Das Foto füllt den Rahmen ganz; das Padding gilt nur dem Platzhaltertext (Ben, 11.09.2026). */
.portraet img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Fragen ----------------------------------------------------------------- */
details.frage { border-bottom: 1px solid var(--trenner); }
details.frage summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-weight: 700; font-size: 19px; min-height: 48px; }
details.frage summary::-webkit-details-marker { display: none; }
details.frage summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--held); line-height: 1; }
details.frage[open] summary::after { content: "–"; }
details.frage .antwort { padding: 0 0 20px; color: var(--gedaempft); font-size: 17px; }
details.frage .antwort p:last-child { margin-bottom: 0; }

/* Abschluss-Band: Lila-Verlauf (Ben, 11.09.2026), weisse Schrift (8,6:1 am hellen Ende), Handschrift in Honig (5,8:1) */
.band { background: var(--verlauf); color: #fff; border-radius: var(--radius-gross);
  padding: 44px 32px; text-align: center; }
.band h2 { color: #fff; }
.band p { color: #E9E1EE; margin: 14px auto 26px; max-width: 46ch; }
.band .hand { color: var(--honig); margin-bottom: 6px; }

/* Hinweiskasten ---------------------------------------------------------- */
.hinweis { background: var(--warn-bg); border-left: 5px solid var(--warn); border-radius: 10px;
  padding: 16px 20px; font-size: 17px; margin: 22px 0; }
.hinweis p:last-child { margin-bottom: 0; }

/* Fusszeile -------------------------------------------------------------- */
.fuss { background: var(--hero-grund); border-top: 1px solid var(--trenner); padding: 40px 0 34px; margin-top: 10px; }
.fuss .spalten { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.fuss h4 { margin: 0 0 12px; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--gedaempft); }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.fuss ul a { display: inline-flex; align-items: center; min-height: 48px; text-decoration: none; color: var(--tinte); font-size: 17px; }
.fuss ul a:hover { color: var(--held); text-decoration: underline; }
.fuss .unten { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--trenner);
  color: var(--gedaempft); font-size: 15px; display: flex; gap: 8px 20px; flex-wrap: wrap; }

/* Rechtstexte ------------------------------------------------------------ */
.rechtstext { padding: 46px 0 60px; }
.rechtstext h2 { font-size: 26px; margin: 38px 0 12px; }
.rechtstext h3 { font-size: 20px; margin: 26px 0 8px; }
.rechtstext p, .rechtstext li { font-size: 17px; }
.rechtstext ul, .rechtstext ol { padding-left: 22px; }
.rechtstext li { margin-bottom: 8px; }
.rechtstext .stand { color: var(--gedaempft); font-size: 15px; }
.rechtstext .kasten { border: 1.5px solid var(--trenner); border-radius: var(--radius); padding: 20px 22px; margin: 20px 0; background: #fff; }

/* Formular --------------------------------------------------------------- */
.feld { display: grid; gap: 7px; margin-bottom: 18px; }
.feld label { font-weight: 700; font-size: 17px; }
.feld input, .feld textarea, .feld select {
  font: inherit; font-size: 18px; padding: 14px 15px; min-height: 56px;
  border: 1.5px solid #DDD8E0; border-radius: 12px; background: #fff; color: var(--tinte); width: 100%;
}
.feld input:focus, .feld textarea:focus { border-color: var(--held); outline: none; }
.feld .warum { font-size: 15px; color: var(--gedaempft); }

/* Druck ------------------------------------------------------------------ */
@media print {
  .kopf, .fuss, .band, .knopf, .buehne { display: none !important; }
  body { font-size: 12pt; }
}

/* Abschnitts-Bausteine ---------------------------------------------------- */
section.getoent { background: var(--hero-grund); }
.eyebrow { font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--hero-label); margin-bottom: 12px; display: block; }
.mitte { text-align: center; }
.mitte .kopfzeile { margin-left: auto; margin-right: auto; }
.mitte p { margin-left: auto; margin-right: auto; }

/* Vier Schritte: Honig-Kreise mit Nummer */
.schritte { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  counter-reset: schritt; }
.schritte > div { text-align: center; }
.schritte .nr { counter-increment: schritt; width: 62px; height: 62px; border-radius: 50%;
  background: var(--honig); color: var(--held); display: grid; place-items: center;
  font-family: var(--font-marke); font-size: 26px; font-weight: 700; margin: 0 auto 14px; }
.schritte .nr::before { content: counter(schritt); }
.schritte h3 { margin-bottom: 6px; }
.schritte p { font-size: 16px; color: var(--gedaempft); margin: 0 auto; max-width: 30ch; }

/* Vorher -> Jetzt */
.wandel { display: grid; gap: 18px; }
.wandel > div { background: #fff; border: 1px solid var(--trenner); border-radius: var(--radius);
  padding: 22px 24px; display: grid; gap: 6px 22px; align-items: start; }
@media (min-width: 760px) { .wandel > div { grid-template-columns: 260px 1fr; } }
.wandel .vorher { color: var(--gedaempft); font-size: 16px; font-weight: 600; }
.wandel .vorher::before { content: "Vorher: "; font-weight: 800; }
.wandel h3 { font-size: 21px; }
.wandel p { margin: 6px 0 0; font-size: 17px; color: var(--gedaempft); }
@media (min-width: 760px) { .wandel h3, .wandel p { grid-column: 2; } .wandel .vorher { grid-row: span 2; } }

/* Rechenbeispiel Preis */
.rechnung { background: #fff; border: 1.5px solid var(--trenner); border-radius: var(--radius);
  padding: 20px 24px; font-variant-numeric: tabular-nums; max-width: 560px; }
.rechnung > div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0;
  border-bottom: 1px solid var(--trenner); font-size: 17px; }
.rechnung > div:last-child { border-bottom: 0; font-weight: 800; font-size: 19px; }
.rechnung .gut { color: var(--gut); }

/* Beruhigung direkt unter dem Knopf */
.beruhigung { font-size: 16px; color: var(--gedaempft); margin-top: 14px; }
