/* ==========================================================================
   Verlagsreif · Landing Page
   Palette "Sandbuch", ausschliesslich hell. Alle Farben ueber Tokens.
   Schriften lokal, keine externen Ressourcen.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften (lokal, DSGVO-konform)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-v21-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-v21-latin-600italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-v21-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-v12-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-v12-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-v12-latin-700.woff2") format("woff2");
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */

:root {
  color-scheme: light;

  /* Flaechen und Linien */
  --sand-50:  #FBF7EF;
  --sand-100: #F4EDDE;
  --sand-200: #E9DFC9;
  --sand-300: #D6C7A8;

  /* Schrift */
  --braun-900: #2E2318;
  --braun-700: #4A3A28;
  --braun-500: #7A6A52;

  /* Akzent (der einzige) */
  --akzent:      #B45309;
  --akzent-tief: #8F3F05;
  --akzent-hell: #F6E3D0;
  --auf-akzent:  #FFF8F0;

  /* semantisch */
  --gruen: #3D6B4F;

  /* abgeleitete Werte */
  --kante-innen: #FDF9F1;
  --schatten-karte: 0 20px 50px -20px rgb(46 35 24 / 0.25);
  --schatten-weich: 0 12px 30px -16px rgb(46 35 24 / 0.22);
  --schatten-knopf: 0 10px 22px -12px rgb(46 35 24 / 0.45);
  --koernung-mischung: multiply;
  --koernung-staerke: 0.04;

  /* Schriftfamilien mit echten Fallbacks */
  --schrift-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --schrift-text: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Mass und Rhythmus */
  --huelle-breite: 71rem;
  --huelle-rand: 1.25rem;
  --block-abstand: clamp(4rem, 9vw, 7.5rem);
  --radius-karte: 1.6rem;
  --radius-kern: calc(1.6rem - 6px);
  --radius-bild: 1.2rem;
  --kurve: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   3. Grundlagen
   -------------------------------------------------------------------------- */

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

html {
  overflow-x: clip;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--sand-50);
  color: var(--braun-700);
  font-family: var(--schrift-text);
  font-size: 1.06rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menue-offen { overflow: hidden; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--schrift-display);
  color: var(--braun-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--akzent); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--akzent-tief); }

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-bild);
}

figure { margin: 0; }

strong { font-weight: 700; color: var(--braun-900); }

s { text-decoration-thickness: 1px; }

::selection { background: var(--akzent-hell); color: var(--braun-900); }

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

/* --------------------------------------------------------------------------
   4. Hilfsklassen
   -------------------------------------------------------------------------- */

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

.visuell-versteckt {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 150;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--akzent);
  color: var(--auf-akzent);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; color: var(--auf-akzent); }

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--akzent);
}

.abschnitt__h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 2.4rem;
  max-width: 22ch;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  background: var(--akzent-hell);
  color: var(--akzent);
  margin-bottom: 1rem;
}
.icon svg { width: 1.45rem; height: 1.45rem; }
.icon--gross { width: 3rem; height: 3rem; border-radius: 1rem; }
.icon--gross svg { width: 1.7rem; height: 1.7rem; }

/* Doppelrand-Bauweise */
.blatt {
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-karte);
  padding: 6px;
  box-shadow: var(--schatten-karte);
  height: 100%;
}

.blatt__kern {
  background: var(--sand-50);
  border: 1px solid var(--kante-innen);
  border-radius: var(--radius-kern);
  padding: 1.75rem;
  height: 100%;
}

.blatt__kern--bild { padding: 0; overflow: hidden; }
.blatt__kern--bild img { border-radius: calc(var(--radius-kern) - 1px); width: 100%; }

/* Pillen */
.pille {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--schrift-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.pille--primaer {
  background: var(--akzent);
  border-color: var(--akzent);
  color: var(--auf-akzent);
  box-shadow: var(--schatten-knopf);
}
.pille--primaer:hover { background: var(--akzent-tief); border-color: var(--akzent-tief); color: var(--auf-akzent); }

.pille--ruhig {
  background: transparent;
  border-color: var(--sand-300);
  color: var(--braun-900);
}
.pille--ruhig:hover { border-color: var(--akzent); color: var(--akzent); }

.pille--gross {
  width: 100%;
  min-height: 56px;
  padding: 1.05rem 1.8rem;
  font-size: 1.08rem;
}

/* Papierkoernung: ein fixes Overlay, nie auf scrollenden Containern */
.koernung {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: var(--koernung-staerke);
  mix-blend-mode: var(--koernung-mischung);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23k)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   5. Kopf, Navigation, Mobilmenue
   -------------------------------------------------------------------------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-block: 0.75rem 0.5rem;
  background: linear-gradient(to bottom, var(--sand-50) 62%, transparent);
}

.insel {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-height: 72px;
  padding: 0.5rem 0.55rem 0.5rem 1.25rem;
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: 999px;
  box-shadow: var(--schatten-weich);
}

.wortmarke {
  font-family: var(--schrift-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--braun-900);
  text-decoration: none;
  margin-right: auto;
}
.wortmarke:hover { color: var(--akzent); }

.insel__links {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.insel__links a {
  color: var(--braun-700);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
}
.insel__links a:hover { color: var(--akzent); }

.insel__cta { display: none; }

.menue-knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  background: var(--sand-50);
  color: var(--braun-900);
  cursor: pointer;
}
.menue-knopf svg { width: 1.4rem; height: 1.4rem; }
.menue-knopf__zu { display: none; }
.menue-knopf[aria-expanded="true"] .menue-knopf__auf { display: none; }
.menue-knopf[aria-expanded="true"] .menue-knopf__zu { display: block; }

html:not(.js) .menue-knopf { display: none; }
html:not(.js) .insel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  justify-content: flex-end;
}
html:not(.js) .insel { max-height: none; border-radius: var(--radius-karte); flex-wrap: wrap; padding: 0.9rem 1.25rem; }

.mobilmenue {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.25rem 2rem;
  background: var(--sand-50);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobilmenue.ist-offen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobilmenue__innen {
  width: 100%;
  max-width: 24rem;
  text-align: center;
}

.mobilmenue__links { margin-bottom: 2rem; }
.mobilmenue__links li { border-bottom: 1px solid var(--sand-200); }
.mobilmenue__links a {
  display: block;
  padding: 1.05rem 0;
  font-family: var(--schrift-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--braun-900);
  text-decoration: none;
}
.mobilmenue__links a:hover { color: var(--akzent); }

.mobilmenue__cta { width: 100%; }

.mobilmenue__mail {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--braun-500);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.held { padding-block: 2.5rem 1rem; }

.held__raster {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.held__h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  max-width: 14ch;
}

.held__sub {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  max-width: 44ch;
  margin-bottom: 2rem;
}

.held__knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   7. Tester-Leiste
   -------------------------------------------------------------------------- */

.tester {
  margin-block: clamp(3rem, 6vw, 4.5rem);
  padding-block: 1.6rem;
  background: var(--akzent-hell);
  border-block: 1px solid var(--sand-200);
}

.tester__inhalt {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
}

.tester__text {
  margin: 0;
  max-width: 62ch;
  color: var(--braun-700);
}

.tester__plaetze {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--braun-500);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   8. Einordnung
   -------------------------------------------------------------------------- */

.einordnung { padding-block: var(--block-abstand) 0; }

.einordnung__inhalt {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.einordnung__h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 1.6rem;
}

.einordnung__inhalt p { font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   9. Was du bekommst (Bento)
   -------------------------------------------------------------------------- */

.leistung { padding-block: var(--block-abstand); }

.bento {
  display: grid;
  gap: 1rem;
}

.bento__zelle {
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-karte);
  padding: 1.6rem;
}

.bento__zelle h3 {
  font-size: 1.32rem;
  margin-bottom: 0.5rem;
}

.bento__zelle p {
  margin: 0;
  color: var(--braun-700);
  font-size: 1rem;
}

.bento__bild { border-radius: var(--radius-karte); overflow: hidden; }
.bento__bild img { border-radius: var(--radius-karte); width: 100%; }

/* --------------------------------------------------------------------------
   10. Beispiel-Befund
   -------------------------------------------------------------------------- */

.beispiel { padding-block: 0 var(--block-abstand); }

.beispiel__inhalt { max-width: 46rem; margin-inline: auto; }

.befund { max-width: 40rem; margin-inline: auto; }

.befund__kern { padding: 1.9rem; }

.befund__kopf {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--braun-900);
  font-variant-numeric: tabular-nums;
}

.befund__schwere { color: var(--akzent); }

.befund__text {
  margin: 0;
  padding-left: 1.1rem;
  border-left: 3px solid var(--akzent-hell);
  font-family: var(--schrift-display);
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--braun-900);
}

.beispiel__nachsatz {
  margin-top: 2rem;
  text-align: center;
  color: var(--braun-500);
  font-style: italic;
  font-family: var(--schrift-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. So funktioniert es
   -------------------------------------------------------------------------- */

.ablauf {
  padding-block: var(--block-abstand);
  background: var(--sand-100);
  border-block: 1px solid var(--sand-200);
}

.ablauf__reihe {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.ablauf__schritt h3 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.ablauf__schritt p {
  margin: 0;
  max-width: 34ch;
}

.ehrlich {
  max-width: 44rem;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-karte);
  padding: 1.9rem;
}

.ehrlich__h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.ehrlich p { margin-bottom: 0.8rem; }

/* --------------------------------------------------------------------------
   12. Drei Zusagen
   -------------------------------------------------------------------------- */

.zusagen { padding-block: var(--block-abstand); }

.zusagen__liste {
  display: grid;
  gap: 2rem;
}

.zusage h3 {
  font-size: 1.32rem;
  margin-bottom: 0.4rem;
}

.zusage p { margin: 0; }

.haken {
  display: inline-flex;
  color: var(--gruen);
  margin-bottom: 0.85rem;
}
.haken svg { width: 1.7rem; height: 1.7rem; }

/* --------------------------------------------------------------------------
   13. Preise
   -------------------------------------------------------------------------- */

.preise {
  padding-block: var(--block-abstand);
  background: var(--sand-100);
  border-block: 1px solid var(--sand-200);
}

.preise__raster {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.preis-karte__kern {
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
}

.preis-karte--stark .blatt {
  background: var(--akzent-hell);
  border-color: var(--akzent);
}

.preis-karte__name {
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
}

.preis {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 0.25rem;
  font-variant-numeric: tabular-nums;
}

.preis__jetzt {
  font-family: var(--schrift-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--braun-900);
}

.preis__alt {
  font-size: 1.15rem;
  color: var(--braun-500);
  order: 2;
}

.preis__hinweis {
  margin: 0 0 1.4rem;
  font-size: 0.93rem;
  color: var(--braun-500);
}

.preis-karte__punkte {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.preis-karte__punkte li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.99rem;
}

.preis-karte__punkte li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--akzent);
}

.preis-karte__cta { margin-top: auto; align-self: flex-start; }

.preis-karte__fuss {
  margin: auto 0 0;
  font-size: 0.93rem;
  color: var(--braun-500);
}

.preise__fussnote {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--braun-500);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   14. Fragen
   -------------------------------------------------------------------------- */

.fragen { padding-block: var(--block-abstand); }

.fragen__liste {
  display: grid;
  gap: 2rem 3rem;
  margin: 0;
}

.frage dt {
  font-family: var(--schrift-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.25;
  color: var(--braun-900);
  margin-bottom: 0.55rem;
}

.frage dd {
  margin: 0;
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   15. Bestellen
   -------------------------------------------------------------------------- */

.bestellen {
  padding-block: var(--block-abstand);
  background: var(--sand-100);
  border-top: 1px solid var(--sand-200);
}

.bestellen__raster {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.bestellen__bild { order: 2; }
.bestellen__bild img { width: 100%; border-radius: var(--radius-karte); }

.bestellen__karte { order: 1; }

.bestellen__kern { padding: 2rem; }

.bestellen__h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 1.3rem;
}

.bestellen__ablauf { margin-bottom: 0.7rem; }
.bestellen__ablauf + .bestellen__ablauf { margin-bottom: 1.9rem; }

.bestellen__adresse {
  margin: 1.2rem 0 0.6rem;
  text-align: center;
  font-size: 0.99rem;
  color: var(--braun-500);
}

.bestellen__zusatz {
  margin: 0;
  font-size: 0.92rem;
  color: var(--braun-500);
}

/* --------------------------------------------------------------------------
   16. Fuss
   -------------------------------------------------------------------------- */

.fuss {
  padding-block: 3rem;
  background: var(--sand-50);
  border-top: 1px solid var(--sand-200);
}

.fuss__inhalt { text-align: center; }

.wortmarke--fuss {
  font-family: var(--schrift-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--braun-900);
  margin-bottom: 1rem;
}

.fuss__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  margin-bottom: 1.2rem;
}

.fuss__links a {
  color: var(--braun-700);
  text-decoration: none;
  font-size: 0.97rem;
}
.fuss__links a:hover { color: var(--akzent); }

.fuss__anbieter {
  margin: 0;
  font-size: 0.9rem;
  color: var(--braun-500);
}

/* --------------------------------------------------------------------------
   17. Rechtstexte (Impressum, Datenschutz, AGB)
   -------------------------------------------------------------------------- */

.recht { padding-block: 3rem var(--block-abstand); }

.recht__spalte { max-width: 65ch; margin-inline: auto; }

.recht__h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  margin-bottom: 0.6rem;
}

.recht__stand {
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--braun-500);
}

.recht__warnung {
  margin-bottom: 2.5rem;
  padding: 1.1rem 1.35rem;
  background: var(--akzent-hell);
  border: 1px solid var(--sand-300);
  border-radius: 1rem;
  font-size: 0.97rem;
  color: var(--braun-700);
}

.recht__spalte h2 {
  font-size: 1.55rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.recht__spalte h3 {
  font-family: var(--schrift-text);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}

.recht__spalte ul,
.recht__spalte ol {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding-left: 1.3rem;
  list-style: disc;
}

.recht__spalte ol { list-style: decimal; }

.recht__spalte li { padding-left: 0.2rem; }

.recht__spalte address {
  font-style: normal;
  margin-bottom: 1.1rem;
}

.recht__zurueck {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
}
.recht__zurueck svg { width: 1.05rem; height: 1.05rem; }

/* --------------------------------------------------------------------------
   18. Reveals (Grundzustand immer sichtbar)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 620ms var(--kurve),
      transform 620ms var(--kurve);
    transition-delay: calc(var(--r, 0) * 75ms);
  }

  .js .reveal.ist-sichtbar {
    opacity: 1;
    transform: none;
  }

  /* Uebersprungen, weil bereits oberhalb des Blickfelds: ohne Uebergang zeigen. */
  .js .reveal.ohne-bewegung {
    transition: none;
  }

  .pille,
  .insel__links a,
  .fuss__links a,
  .wortmarke,
  .menue-knopf,
  .mobilmenue__links a,
  a { transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms var(--kurve), box-shadow 200ms ease; }

  .pille--primaer:hover,
  .pille--ruhig:hover { transform: translateY(-2px); }

  .pille:active { transform: scale(0.98); }

  .bento__zelle,
  .blatt { transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--kurve); }

  .bento__zelle:hover { border-color: var(--sand-300); }

  /* Beim Oeffnen schaltet visibility sofort um, damit der Fokus sitzt.
     Beim Schliessen erst nach dem Ausblenden. */
  .mobilmenue {
    transition: opacity 260ms var(--kurve), visibility 0s linear 260ms;
  }

  .mobilmenue.ist-offen {
    transition: opacity 260ms var(--kurve), visibility 0s linear 0s;
  }

  .mobilmenue__links li,
  .mobilmenue__cta,
  .mobilmenue__mail {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 420ms var(--kurve), transform 420ms var(--kurve);
    transition-delay: calc(var(--r, 0) * 60ms + 90ms);
  }

  .mobilmenue.ist-offen .mobilmenue__links li,
  .mobilmenue.ist-offen .mobilmenue__cta,
  .mobilmenue.ist-offen .mobilmenue__mail {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   19. Breakpoints
   -------------------------------------------------------------------------- */

/* ab 768 px */
@media (min-width: 48rem) {
  :root { --huelle-rand: 2rem; }

  .insel__cta { display: inline-flex; }

  .held { padding-block: 3.5rem 1.5rem; }

  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
  .bento__bild { grid-column: span 2; aspect-ratio: 16 / 7; }
  .bento__bild img { height: 100%; object-fit: cover; }

  /* Drehung an der inneren Karte, damit das Reveal-transform sie nicht ueberschreibt. */
  .befund > .blatt { transform: rotate(-1deg); }

  .ablauf__reihe { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }

  .zusagen__liste { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .preise__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .preise__raster .preis-karte:last-child { grid-column: span 2; }

  .fragen__liste { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .bestellen__raster { grid-template-columns: 0.85fr 1.15fr; }
  .bestellen__bild { order: 1; }
  .bestellen__karte { order: 2; }

  .fuss__inhalt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    text-align: left;
  }
  .wortmarke--fuss { margin-bottom: 0; }
  .fuss__links { margin-bottom: 0; justify-content: flex-start; }
}

/* ab 1024 px */
@media (min-width: 64rem) {
  :root { --huelle-rand: 2.5rem; }

  .insel__links { display: flex; }
  .menue-knopf { display: none; }

  .held { padding-block: 4rem 2rem; }
  .held__raster { grid-template-columns: 55fr 45fr; gap: 3.5rem; }

  .bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
  }
  .bento__zelle--a { grid-area: 1 / 1 / 2 / 2; }
  .bento__zelle--b { grid-area: 1 / 2 / 2 / 3; }
  .bento__zelle--c { grid-area: 2 / 1 / 3 / 2; }
  .bento__zelle--d { grid-area: 2 / 2 / 3 / 3; }
  .bento__zelle--e { grid-area: 3 / 1 / 4 / 3; }
  .bento__zelle--f { grid-area: 3 / 3 / 4 / 4; }
  .bento__bild { grid-area: 1 / 3 / 3 / 4; aspect-ratio: auto; }

  .preise__raster { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .preise__raster .preis-karte:last-child { grid-column: auto; }

  .fragen__liste { gap: 2.4rem 4rem; }

  .bestellen__kern { padding: 2.6rem; }
}

/* ab 1440 px */
@media (min-width: 90rem) {
  :root {
    --huelle-breite: 76rem;
    --huelle-rand: 3rem;
  }

  body { font-size: 1.09rem; }

  .held__raster { gap: 4.5rem; }
}
