@charset "UTF-8";
/* ==========================================================================
   fussmedic Landing — „Apotheke": ruhig, präzise, warm.
   EINE dominante Farbe (tiefes Tannengrün), EIN Akzent (Kupfer, sparsam),
   Papier als Grund, Tinte als Text. Der Mango-Verlauf und das beige
   Durcheinander sind weg — stattdessen trägt die Seite durchgehend
   dieselbe Handschrift, und die dunkle Anatomie-Bühne ist jetzt das
   tiefe Ende derselben Palette statt ein Fremdkörper.
   Schriften liegen lokal (kein Fremdaufruf): Fraunces für Überschriften,
   Karla für den Fließtext.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  src: url("../schrift/fraunces.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("../schrift/karla.woff2") format("woff2-variations");
  font-weight: 400 600;
  font-display: swap;
}

:root {
  /* Akzent: Kupfer. Sparsam einsetzen — er wirkt nur, solange er selten ist. */
  --sonne-orange: #b0603a;
  --sonne-gelb: #c8794f;
  --bernstein: #b0603a;
  --bernstein-tief: #944c2b;
  --bernstein-blass: #f4e6de;

  /* Leitfarbe: tiefes Tannengrün, satt genug um zu tragen. */
  --gruen: #1e4034;
  --gruen-dunkel: #16332a;
  --gruen-blass: #e5ece8;
  --auf-gruen: #ffffff;

  /* Tinte statt Navy: Schwarz mit gruenem Unterton, passt zur Leitfarbe. */
  --navy: #14211c;
  --navy-tief: #0d1613;
  --text: #14211c;
  --text-leise: #5d6b64;

  --grund: #f7f4ed;              /* warmes Papier */
  --flaeche: #edf1ee;            /* ein Hauch Salbei statt Beige */
  --karte: #fffdfa;
  --rand: #ded8cb;

  --fehler: #a8321f;
  --fehler-blass: #fbeae6;

  /* Anatomie-Buehne: tiefes Ende derselben Palette (vorher Aubergine). */
  --buehne-grund: #0d1613;
  --buehne-warm: #16332a;
  --buehne-text: #eef2ee;
  --linie-gruen: #8aa89a;

  --serif: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Kanten statt Blasen: klar geschnitten wirkt praeziser als abgerundet. */
  --radius: 4px;
  --radius-klein: 3px;
  --pille: 999px;
  --schatten: 0 1px 2px rgba(20, 33, 28, .05), 0 8px 24px rgba(20, 33, 28, .05);
  --schatten-tief: 0 2px 4px rgba(20, 33, 28, .07), 0 18px 44px rgba(20, 33, 28, .10);
  --treffer-min: 44px;
  --uebergang: 180ms ease;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--grund);
  -webkit-font-smoothing: antialiased;
}

.defs { position: absolute; width: 0; height: 0; overflow: hidden; }

img, svg { max-width: 100%; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 .6em; color: var(--navy-tief); }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 22;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.75rem); }
h3 {
  font-family: var(--serif);
  font-size: 1.22rem; font-weight: 550;
  font-variation-settings: "opsz" 30, "SOFT" 20;
  letter-spacing: -0.004em;
}

p { margin: 0 0 1em; }
a { color: var(--gruen-dunkel); }
a:hover { color: var(--navy-tief); }

.hülle {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.hülle-schmal { max-width: 760px; }

.nur-vorleser {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.sprunglink {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--gruen); color: var(--auf-gruen);
  padding: .6rem 1.2rem; border-radius: var(--pille);
  transition: top var(--uebergang);
}
.sprunglink:focus { top: 1rem; color: var(--auf-gruen); }

/* ---------- Knöpfe: freundliche Pillen wie auf der Original-Seite ---------- */
.knopf {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  min-height: var(--treffer-min);
  padding: .65rem 1.6rem;
  background: var(--gruen); color: var(--auf-gruen);
  border: 1px solid var(--gruen);
  border-radius: 2px;
  font: inherit; font-weight: 650; text-decoration: none;
  cursor: pointer;
  letter-spacing: .01em;
  box-shadow: none;
  transition: background var(--uebergang), transform var(--uebergang),
    box-shadow var(--uebergang);
}
.knopf:hover {
  background: var(--gruen-dunkel); color: var(--auf-gruen);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(20, 33, 28, .18);
}
.knopf:active { transform: translateY(1px); box-shadow: 0 4px 10px rgba(71, 112, 92, .25); }
/* Auch Bereiche, die per Skript den Fokus bekommen (Meldungen, Ergebnisse),
   sollen den Rahmen der Praxis tragen statt das Browser-Blau. */
.knopf:focus-visible,
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible,
[tabindex]:focus {
  outline: 2px solid var(--gruen);
  outline-offset: 3px;
}
.knopf-gross { padding: .85rem 2.2rem; font-size: 1.05rem; }
.knopf-klein { padding: .35rem 1.2rem; min-height: 38px; font-size: .95rem; }
.knopf[disabled] { opacity: .6; cursor: wait; transform: none; }

/* Weiße Pille für den Auftritt auf dem Sonnenverlauf */
.knopf-weiss {
  background: #ffffff; color: var(--navy-tief);
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(120, 70, 20, .22);
}
.knopf-weiss:hover {
  background: #fff7e8; color: var(--navy-tief);
  box-shadow: 0 12px 26px rgba(120, 70, 20, .26);
}

.knopf-leise {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: var(--treffer-min);
  font-weight: 650; text-decoration: none;
  color: var(--navy-tief);
  border-bottom: 2px solid transparent;
}
.knopf-leise:hover { border-bottom-color: currentColor; color: var(--navy-tief); }

/* ---------- Kopf ---------- */
/* Kopfzeile als Teil des Heros: transparent über dem Sonnenverlauf,
   Wortmarke in der Serife der Überschriften, Navigation als warme
   Glas-Pillen. Beim Scrollen legt sich eine milchige Leiste darunter. */
.kopf {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
.kopf.gescrollt {
  background: rgba(247, 244, 237, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rand);
}
.kopf-innen {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-block: 1.15rem;
}
.marke {
  text-decoration: none; line-height: 1.2;
  font-family: var(--serif);
  font-weight: 600; font-size: 1.2rem;
  font-variation-settings: "opsz" 40, "SOFT" 20;
  letter-spacing: .005em;
  color: var(--navy-tief);
}
.marke:hover { color: var(--gruen); }
.kopf nav { display: flex; align-items: baseline; gap: 1.9rem; flex-wrap: wrap; }

/* Schlichte Textmarken statt Pillen: Die Navigation soll den Blick nicht
   vom Inhalt wegziehen. Der Strich waechst beim Ueberfahren von links. */
.kopf nav > a {
  position: relative;
  text-decoration: none; color: var(--text);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  padding-block: .25rem;
  transition: color var(--uebergang);
}
.kopf nav > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--bernstein);
  transform: scaleX(0); transform-origin: left;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1);
}
.kopf nav > a:hover { color: var(--gruen); }
.kopf nav > a:hover::after { transform: scaleX(1); }
.kopf nav > a[aria-current="page"] { color: var(--gruen); }
.kopf nav > a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Held: Papier statt Sonnenverlauf ----------
   Der frühere Orange-Gelb-Verlauf schrie und passte zu nichts. Jetzt trägt
   die Fläche nichts als Papier, einen Hauch Wärme aus der Ecke und eine
   feine Körnung — die Aufmerksamkeit gehört dem Satz, nicht dem Hintergrund. */
.held {
  position: relative;
  background:
    radial-gradient(48rem 34rem at 88% -10%, rgba(176, 96, 58, .07) 0%, transparent 64%),
    radial-gradient(40rem 30rem at -6% 108%, rgba(30, 64, 52, .06) 0%, transparent 62%),
    var(--grund);
  overflow: hidden;
}
/* Feine Papierkörnung. Als Datei eingebettet, damit kein Fremdaufruf nötig ist. */
.held::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  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='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23k)' opacity='.055'/%3E%3C/svg%3E");
}
/* Eine haarfeine Linie am unteren Rand leitet zur dunklen Bühne über. */
.held::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--rand) 18%, var(--rand) 82%, transparent);
}
.held-innen {
  position: relative; z-index: 1;
  padding-block: clamp(7rem, 13vw, 11rem) clamp(4.5rem, 10vw, 8rem);
}
/* Die Breite begrenzt der Textblock, NICHT der Aussencontainer — sonst
   zieht dessen automatischer Rand die ganze Spalte in die Seitenmitte. */
/* Die Begrenzung gehoert an die Ueberschrift selbst: "em" rechnet dort gegen
   ihre eigene grosse Schriftgroesse, am Elternblock dagegen gegen 16px. */
.held-text { max-width: none; }

/* Ruhiger Zweitweg neben der Hauptschaltflaeche. */
.held-nebenlink {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-leise);
  text-decoration: none;
  border-bottom: 1px solid var(--rand);
  padding-bottom: .2rem;
  transition: color var(--uebergang), border-color var(--uebergang);
}
.held-nebenlink:hover { color: var(--gruen); border-color: var(--bernstein); }
/* Kennzeile mit Kupferstrich — der einzige Farbtupfer hier oben. */
.vorzeile {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-leise);
  margin-bottom: 1.6rem;
}
.vorzeile::before {
  content: ""; width: 2.4rem; height: 1px; background: var(--bernstein);
}
.held .vorzeile { background: none; padding: 0; color: var(--text-leise); }

.held-claim {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 1rem + 4.1vw, 4rem);
  font-variation-settings: "opsz" 144, "SOFT" 25, "WONK" 0;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--navy-tief);
  text-shadow: none;
  max-width: 13em;
  text-wrap: balance;
}
.held-aktionen {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  margin-top: 2.6rem;
  justify-content: flex-start;
}

/* Auftritt: Kennzeile, Satz und Schaltflächen laufen versetzt ein.
   Ein gut gebauter Auftritt wirkt mehr als viele kleine Zappeleien. */
@media (prefers-reduced-motion: no-preference) {
  .held .vorzeile, .held-claim, .held-aktionen {
    animation: auftritt 900ms cubic-bezier(.16, 1, .3, 1) backwards;
  }
  .held .vorzeile  { animation-delay: 80ms; }
  .held-claim      { animation-delay: 200ms; }
  .held-aktionen   { animation-delay: 380ms; }
}
@keyframes auftritt {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   Anatomie-Bühne: EIN durchgehendes Bild.
   Beide Füße stehen die ganze Zeit an derselben Stelle; der Scroll dreht
   nur den „Röntgen-Regler“ — Haut wird durchscheinend, darunter erscheinen
   Bänder & Sehnen, dann die Knochen. Kein Bildwechsel, keine Stufentafeln.
   ========================================================================== */

/* Ohne JS oder mit reduzierter Bewegung: statisches Gesamtbild zeigen. */
.anatomie-scroller { display: none; }
.anatomie-statisch { display: block; }
.kein-js #buchung-formular { display: none; }
/* Die Scroll-Durchleuchtung läuft nur auf großen Zeigern ohne reduzierte
   Bewegung. Unter 768px (Mobil) scrollt die Seite völlig frei — dort
   erscheint stattdessen die statische Gesamtansicht. */
@media (prefers-reduced-motion: no-preference) {
  .js .anatomie-scroller { display: block; }
  .js .anatomie-statisch { display: none; }
}

.anatomie-scroller {
  height: 440vh;                      /* Scroll-Strecke der Vorführung */
  background: var(--buehne-grund);
}
/* Auf dem Handy hält die Bühne nur kurz fest: der Röntgen-Regler läuft
   auf gut anderthalb Bildschirmhöhen durch, statt lange zu pinnen. */
@media (max-width: 767px) {
  .anatomie-scroller { height: 260vh; }
}
.anatomie-buehne {
  position: sticky; top: 0;
  height: 100vh; height: 100dvh;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: clamp(.75rem, 2vh, 1.5rem) 1rem;
  color: var(--buehne-text);
  background:
    linear-gradient(to bottom, rgba(244, 196, 108, .14) 0%, transparent 9rem),
    radial-gradient(80rem 50rem at 50% 66%, var(--buehne-warm) 0%, var(--buehne-grund) 62%, #221420 100%),
    radial-gradient(50rem 22rem at 50% 108%, rgba(240, 168, 96, .16) 0%, transparent 70%);
}

/* Eine einzige, bleibende Überschrift — kein Tafelwechsel. */
.buehne-kopf { text-align: center; max-width: 46rem; }
.buehne-ueberschrift {
  font-size: .8rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bernstein);
  margin: 0 0 .4rem;
}
.buehne-titelzeile {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem);
  font-weight: 600; color: #fff7e8;
  margin: 0 0 .25rem;
}
.buehne-untertitel {
  margin: 0; color: rgba(247, 236, 217, .72);
  font-size: clamp(.92rem, .84rem + .3vw, 1.02rem);
}

.buehne-fuesse {
  position: relative;
  flex: 1 1 auto; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding-block: .25rem;
  perspective: 1200px;               /* Raum für den 3D-Auftritt des Fensters */
}
/* Glut hinter dem Fenster — wird über --glut (JS) kräftiger, je tiefer
   die Durchleuchtung geht. */
.anatomie-scroller .buehne-fuesse::before {
  content: ""; position: absolute; left: 50%; top: 52%;
  width: min(96vw, 820px); aspect-ratio: 1.35;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side,
    rgba(240, 168, 96, .32), rgba(240, 168, 96, .1) 55%, transparent 74%);
  opacity: calc(.3 + var(--glut, 0) * .7);
  pointer-events: none;
}

/* Das Scan-Fenster: Foto auf dunklem Paneel, weich gerundet und
   beschattet. Foto und Overlay füllen exakt denselben Rahmen —
   die Füße stehen dadurch über die ganze Scroll-Strecke fest. */
.scan-fenster {
  position: relative; margin: 0;
  width: min(92vw, 700px, calc(62vh * 1.25));
  aspect-ratio: 1402 / 1122;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #1b0f19;                /* dunkles Paneel hinter dem Foto */
  box-shadow: 0 6px 18px rgba(10, 4, 10, .55),   /* enger Kernschatten */
              0 32px 80px rgba(10, 4, 10, .48),  /* weiter Wurf */
              0 0 0 1px rgba(244, 192, 110, .25);
}
/* Nur in der Scroll-Bühne: 3D-Auftritt (JS setzt transform am GANZEN
   Rahmen — Foto und Overlay bleiben dadurch eine Einheit), Vignette
   auf dem Foto und die wandernde Scanner-Lichtbahn. */
.anatomie-scroller .scan-fenster {
  z-index: 1;                         /* über der Glut */
  will-change: transform;
  transform-origin: 50% 62%;
}
.anatomie-scroller .scan-fenster::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 90px rgba(16, 6, 14, .4),
              inset 0 1px 0 rgba(255, 240, 214, .14);
}
.anatomie-scroller .scan-fenster::after {
  content: ""; position: absolute; left: 0; right: 0; top: -24%;
  height: 24%; z-index: 3; pointer-events: none;
  transform: translateY(calc(var(--scan-p, 0) * 520%));
  background: linear-gradient(to bottom,
    transparent,
    rgba(247, 224, 122, .12) 32%,
    rgba(255, 247, 232, .3) 50%,
    rgba(247, 224, 122, .12) 68%,
    transparent);
  mix-blend-mode: screen;
  opacity: var(--scan-sicht, 0);
}
.scan-foto {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.scan-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--bernstein);            /* Kontur erbt diese Farbe */
}
.scan-overlay .kontur { opacity: .5; }
/* Overlay über der Kanten-Vignette (::before, z-index 2): Beschriftungen
   nahe dem Rahmen dürfen nicht im Randschatten ertrinken. */
.scan-overlay { position: relative; z-index: 4; }
.scan-overlay [data-art="label"], .scan-overlay .lb { font-size: 34px; }
[data-art="ebene"], [data-art="label"], .scan-foto { will-change: opacity; }
[data-art="ebene"] { opacity: 0; }
[data-art="label"] { opacity: 0; }

/* Beschriftungen: Linien-/Kreisfarben stehen als Attribute im Symbol
   (CSS-Selektoren greifen nicht in <use>-Schattenbäume). Schrift und
   Textfarbe VERERBEN über das <use>-Element in den Schattenbaum hinein. */
[data-art="label"], .lb {
  fill: #f7e8d2;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* Leiser Tiefen-Anzeiger (kein Tafel-Titel) */
.buehne-fuss-leiste {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.stufen-anzeige {
  list-style: none; display: flex; align-items: center; gap: .35rem;
  margin: 0; padding: .3rem .5rem;
  border: 1px solid rgba(244, 192, 110, .3);
  border-radius: var(--pille);
  background: rgba(34, 20, 32, .55);
}
.stufen-anzeige li { display: flex; align-items: center; }
.stufen-anzeige li + li::before {
  content: "→"; color: rgba(244, 192, 110, .55); margin-inline: .35rem;
  font-size: .8rem;
}
.stufen-anzeige button {
  font: inherit; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em;
  color: rgba(247, 236, 217, .6);
  background: none; border: 0; border-radius: var(--pille);
  padding: .3rem .7rem; cursor: pointer;
  transition: color var(--uebergang), background var(--uebergang);
}
.stufen-anzeige button:hover { color: var(--buehne-text); }
.stufen-anzeige button[aria-current="true"] {
  color: var(--buehne-grund);
  background: var(--bernstein);
}
.scroll-hinweis {
  margin: 0; font-size: .8rem; color: rgba(247, 236, 217, .55);
  letter-spacing: .08em;
  animation: schweben 3.2s ease-in-out infinite;
}
.scroll-hinweis span { display: inline-block; animation: nicken 1.6s ease-in-out infinite; }
@keyframes nicken {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@keyframes schweben {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Statische Fassung: dasselbe eine Bild, alle Ebenen gleichzeitig
   durchscheinend übereinander, mit allen Beschriftungen. */
.anatomie-statisch {
  background:
    radial-gradient(80rem 50rem at 50% 60%, var(--buehne-warm) 0%, var(--buehne-grund) 62%, #221420 100%);
  color: var(--buehne-text);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.anatomie-statisch .buehne-kopf { margin-inline: auto; margin-bottom: 2rem; }
.statisch-fuesse {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap;
  gap: clamp(.75rem, 3vw, 2rem);
  margin-top: 1rem;
}
.statisch-fuesse .scan-fenster { width: min(92vw, 500px); }
.statisch-fuesse .kontur { opacity: .5; }
.scan-anatomie .scan-foto { opacity: .28; }
.statisch-fuesse .st-baender { opacity: .7; }
.statisch-fuesse .st-knochen { opacity: .95; }

/* ---------- Abschnitte ---------- */
.abschnitt { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.abschnitt-hell { background: var(--flaeche); }
.abschnitt-einleitung { color: var(--text-leise); max-width: 40em; margin-bottom: 2.5rem; }

/* ---------- Die Praxis: echte Raeume ----------
   Der Behandlungsraum traegt den Abschnitt und nimmt die volle Breite; die
   drei uebrigen stehen als Reihe darunter. Kein Rahmen, keine Schlagschatten
   — die Bilder sollen wie Abzuege auf Papier liegen. */
.raeume {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  /* Die Vorlagen sind 900 px breit. Ohne diese Grenze zoege die volle Huelle
     das grosse Bild auf 1040 px auf — sichtbar weich. Lieber schmaler und
     scharf; nebenbei liest sich der Block dadurch wie eine Bildstrecke. */
  max-width: 900px;
}

.raum-gross { grid-column: 1 / -1; }

.raum {
  margin: 0;
}

.raum img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  /* Die Vorlagen sind 900x500 — ein einheitlicher Ausschnitt haelt die Reihe
     ruhig, auch wenn ein Motiv anders aufgebaut ist. */
  aspect-ratio: 9 / 5;
  object-fit: cover;
}

.raum-gross img {
  aspect-ratio: 16 / 7;
}

.raum figcaption {
  margin-top: .6rem;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-leise);
}

@media (max-width: 720px) {
  .raeume { grid-template-columns: 1fr 1fr; }
  .raum-gross img { aspect-ratio: 9 / 5; }
}

@media (max-width: 460px) {
  .raeume { grid-template-columns: 1fr; }
}

/* ---------- Leistungen: weiße Karten, handgezeichnete 3D-Motive ---------- */
/* ---------- Leistungen als gesetzte Preisliste ----------
   Keine Symbole, keine Karten: Name links, Preis rechts, dazwischen eine
   Fuehrungslinie wie in einer gut gesetzten Karte. Das zeigt Leistung und
   Preis auf einen Blick und kommt ohne Dekoration aus. */
.preisliste {
  list-style: none; margin: 3rem 0 0; padding: 0;
  border-top: 1px solid var(--rand);
  max-width: 54rem;
}
/* Jede Leistung als Zeile mit Foto links und Text rechts. Die Bilder sind
   alle auf 4:3 geschnitten, damit die Liste eine ruhige Kante behaelt. */
.posten {
  display: grid;
  grid-template-columns: minmax(0, 19rem) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
  align-content: start;
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--rand);
}
.posten-bild {
  /* Ueber alle Zeilen der Textspalte, sonst zerrt die Bildhoehe den Text
     auseinander (jedes Textelement bekaeme sonst eine eigene Rasterzeile). */
  align-self: start;
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-klein);
  background: var(--flaeche);
}
/* Der Text steht als eigener Block in der zweiten Spalte. Ohne diese
   Klammer bekaeme jeder Absatz eine eigene Rasterzeile und das Bild
   koennte sie nicht ueberspannen (grid-row 1/-1 greift nur bei fest
   definierten Zeilen, nicht bei impliziten). */
.posten-spalte { min-width: 0; }
.posten-kopf {
  display: flex; align-items: baseline; gap: .9rem;
  margin: 0 0 .55rem;
}
.posten-name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, .9rem + 1.1vw, 1.75rem);
  font-variation-settings: "opsz" 40, "SOFT" 20;
  font-weight: 500;
  color: var(--navy-tief);
  letter-spacing: -0.01em;
}
/* Die Fuehrungslinie fuellt genau den Platz zwischen Name und Preis. */
.posten-fuehrung {
  flex: 1 1 auto;
  height: 1px;
  min-width: 1.5rem;
  background: var(--rand);
  transform: translateY(-.25rem);
}
.posten-preis {
  font-family: var(--serif);
  font-size: clamp(1.15rem, .95rem + .6vw, 1.4rem);
  font-variation-settings: "opsz" 30;
  color: var(--gruen);
  white-space: nowrap;
}
.posten-text {
  margin: 0 0 .7rem;
  color: var(--text-leise);
  max-width: 46em;
}
/* Die Stichpunkte laufen als eine Zeile mit Trennpunkten — als Liste
   untereinander waeren sie laenger als die Beschreibung selbst. */
.posten-punkte {
  margin: 0;
  font-size: .88rem;
  letter-spacing: .02em;
  color: var(--gruen);
}

.preishinweis { margin-top: 2rem; max-width: 62em; }
.preishinweis p { font-size: .88rem; color: var(--text-leise); margin: 0 0 .5rem; }

/* ---------- Team ---------- */
.team-karten {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem; margin-top: 2.5rem; max-width: 820px;
  perspective: 1200px;
}
.team-karte {
  background: var(--karte); border: 1px solid rgba(217, 154, 62, .26);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 20px 60px rgba(120, 70, 20, .12),
              0 8px 20px rgba(120, 70, 20, .06);
  transition: transform 600ms cubic-bezier(.16, 1, .3, 1),
              box-shadow 600ms cubic-bezier(.16, 1, .3, 1);
  transform-style: preserve-3d;
}
/* Wie auf der Original-Website: Die beiden Karten kippen einander leicht zu
   und richten sich beim Überfahren mit einem sanften Heben fast gerade. */
.team-karte:nth-child(1) { transform: perspective(800px) rotateY(5deg); }
.team-karte:nth-child(2) { transform: perspective(800px) rotateY(-5deg); }
.team-karte:nth-child(1):hover {
  transform: perspective(800px) translateY(-10px) rotateY(3deg) rotateX(2deg);
}
.team-karte:nth-child(2):hover {
  transform: perspective(800px) translateY(-10px) rotateY(-3deg) rotateX(2deg);
}
.team-karte:hover {
  box-shadow: 0 40px 80px rgba(120, 70, 20, .16),
              0 15px 35px rgba(120, 70, 20, .09);
}
@media (max-width: 768px) {
  .team-karte:nth-child(1), .team-karte:nth-child(2) { transform: none; }
  .team-karte:nth-child(1):hover, .team-karte:nth-child(2):hover {
    transform: translateY(-5px);
  }
}
/* Porträts: warm gerahmt, weicher Schattenwurf, Ring in Bernstein */
.team-portraet {
  margin: 0 0 1.2rem;
  width: min(180px, 60%);
  border-radius: var(--radius-klein);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(120, 70, 20, .22),
              0 0 0 1px rgba(217, 154, 62, .35),
              0 0 0 5px var(--bernstein-blass);
}
.team-portraet img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3 / 4; object-fit: cover;
}
.team-karte h3 { margin-bottom: .1rem; }
/* Gedeckt statt Kupfer: Der Akzent wirkt nur, wenn er selten bleibt. */
.rolle {
  color: var(--text-leise); font-weight: 600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.team-karte p:last-child { color: var(--text-leise); margin: 0; }

/* ---------- Baden TV Reportage: Datenschutz-Vorschaltbild ---------- */
.video-buehne {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--buehne-text);
  background:
    radial-gradient(46rem 26rem at 50% 74%, var(--buehne-warm) 0%, var(--buehne-grund) 64%, #221420 100%);
  box-shadow: 0 6px 18px rgba(10, 4, 10, .3),
              0 26px 60px rgba(10, 4, 10, .22),
              0 0 0 1px rgba(244, 192, 110, .3);
}
.video-buehne::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(16, 6, 14, .38),
              inset 0 1px 0 rgba(255, 240, 214, .14);
}
.video-play { width: clamp(84px, 18vw, 120px); height: auto; }
.video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-zustimmung { margin-top: 1.2rem; text-align: center; }
.video-hinweis {
  font-size: .88rem; color: var(--text-leise);
  max-width: 46em; margin: 0 auto 1rem;
}

/* ---------- Buchung ---------- */
.buchung { margin-top: 1rem; }
.schritt {
  border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.6rem; margin: 0 0 1.4rem;
  background: var(--karte);
  box-shadow: var(--schatten);
  /* Fieldsets weigern sich sonst, schmaler als ihr Inhalt zu werden —
     die Tagesleiste muss aber IM Kasten scrollen, nicht die Seite. */
  min-inline-size: 0;
}
.schritt legend {
  font-weight: 650; font-size: 1.05rem; color: var(--navy-tief);
  padding-inline: .5rem;
  display: flex; align-items: center; gap: .6rem;
}
/* Haarfeiner Kupferkreis mit Serifenziffer — der fruehere Goldknopf war der
   letzte Rest der alten, lauten Farbwelt. */
.schritt-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: none;
  border: 1px solid var(--bernstein);
  box-shadow: none;
  color: var(--bernstein-tief);
  font-family: var(--serif);
  font-size: .95rem; font-weight: 500;
  font-variation-settings: "opsz" 20;
}

.lade-hinweis { color: var(--text-leise); margin: 0; }
.lade-hinweis::before {
  content: ""; display: inline-block; vertical-align: -2px;
  width: .85em; height: .85em; margin-right: .5em;
  border: 2px solid var(--rand); border-top-color: var(--gruen);
  border-radius: 50%;
  animation: drehen .8s linear infinite;
}
@keyframes drehen { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .lade-hinweis::before, .scroll-hinweis span, .scroll-hinweis,
  .held::before, .held::after { animation: none; }
  .leistung, .team-karte, .kopf nav > a, .knopf { transition: none; }
  .team-karte:nth-child(1), .team-karte:nth-child(2),
  .leistung:hover, .team-karte:hover, .kopf nav > a:hover,
  .knopf:hover, .knopf:active { transform: none; }
  .anatomie-scroller .scan-fenster { transform: none !important; }
}

.wahl-karten { display: grid; gap: .6rem; }
.wahl-karte {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left;
  font: inherit;
  background: var(--grund); color: var(--text);
  border: 1px solid var(--rand); border-radius: var(--radius-klein);
  padding: .8rem 1.1rem; min-height: var(--treffer-min);
  cursor: pointer;
  transition: border-color var(--uebergang), background var(--uebergang);
}
.wahl-karte:hover { border-color: var(--gruen); }
.wahl-karte[aria-checked="true"] {
  background: var(--gruen-blass);
  border-color: var(--gruen);
  box-shadow: inset 0 0 0 1px var(--gruen);
  font-weight: 650;
}
.wahl-karte .dauer-inline { font-size: .85rem; color: var(--text-leise); white-space: nowrap; }

.tag-leiste {
  display: flex; gap: .5rem; overflow-x: auto;
  padding-bottom: .5rem;
  scrollbar-width: thin;
}
.tag-chip {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center;
  font: inherit;
  min-width: 4.6rem; min-height: var(--treffer-min);
  padding: .5rem .7rem;
  background: var(--grund); color: var(--text);
  border: 1px solid var(--rand); border-radius: var(--radius-klein);
  cursor: pointer;
  transition: border-color var(--uebergang), background var(--uebergang);
}
.tag-chip:hover { border-color: var(--gruen); }
.tag-chip[aria-checked="true"] {
  background: var(--gruen); border-color: var(--gruen);
  color: var(--auf-gruen);
}
.tag-chip .wochentag { font-size: .78rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.tag-chip .datum { font-size: .95rem; }

.behandler-gruppe { margin-bottom: 1.1rem; }
.behandler-gruppe:last-child { margin-bottom: 0; }
.behandler-name {
  font-weight: 650; font-size: .95rem; color: var(--text-leise);
  margin: 0 0 .5rem;
}
.slot-leiste { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot-knopf {
  font: inherit; font-weight: 600;
  min-height: var(--treffer-min);
  padding: .45rem 1.1rem;
  background: var(--karte); color: var(--gruen-dunkel);
  border: 1px solid var(--gruen); border-radius: var(--pille);
  cursor: pointer;
  transition: background var(--uebergang), color var(--uebergang);
}
.slot-knopf:hover { background: var(--gruen-blass); }
.slot-knopf[aria-pressed="true"] {
  background: var(--gruen); color: var(--auf-gruen);
}
.keine-slots { color: var(--text-leise); margin: 0; }

.zusammenfassung {
  background: var(--bernstein-blass);
  border-radius: var(--radius-klein);
  padding: .8rem 1.1rem;
  font-weight: 600;
  color: var(--navy-tief);
}

.feld-reihe {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 560px) { .feld-reihe { grid-template-columns: 1fr; gap: 0; } }
.feld { margin-bottom: 1.1rem; }
.feld label { display: block; font-weight: 600; margin-bottom: .3rem; }
.optional { font-weight: 400; color: var(--text-leise); }
.feld input[type="text"], .feld input[type="tel"],
.feld input[type="email"], .feld input[type="date"] {
  width: 100%; min-height: var(--treffer-min);
  font: inherit; color: var(--text);
  background: var(--grund);
  border: 1px solid var(--rand); border-radius: var(--radius-klein);
  padding: .55rem .8rem;
}
.feld input:focus-visible { outline: 2px solid var(--gruen-dunkel); outline-offset: 1px; border-color: var(--gruen); }
.feld input[aria-invalid="true"] { border-color: var(--fehler); background: var(--fehler-blass); }
.feld-fehler { color: var(--fehler); font-size: .9rem; margin: .3rem 0 0; }
/* Erklaerung unter einem Eingabefeld — anders als .feld-hinweis nicht
   eingerueckt, denn davor steht keine Ankreuzflaeche. */
.feld-notiz { color: var(--text-leise); font-size: .9rem; margin: .3rem 0 0; }

.feld-zustimmung { margin-top: .4rem; }
.zustimmung { display: flex; gap: .7rem; align-items: flex-start; font-weight: 400; }
.zustimmung input {
  width: 1.25rem; height: 1.25rem; margin-top: .2rem;
  accent-color: var(--gruen);
  flex: 0 0 auto;
}

/* Erinnerung per E-Mail: ausgegraut, solange keine E-Mail-Adresse da ist. */
.feld-erinnerung { margin-top: -.4rem; }
.feld-erinnerung input[disabled] { cursor: not-allowed; opacity: .55; }
.feld-erinnerung input[disabled] + span { opacity: .55; }
.feld-hinweis {
  color: var(--text-leise); font-size: .9rem;
  margin: .3rem 0 0 1.95rem;
}
#erfolg-mail { color: var(--text-leise); }

/* Honigtopf: für Menschen unsichtbar */
.hp-feld {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
}

.alarm {
  background: var(--fehler-blass);
  border: 1px solid var(--fehler);
  border-radius: var(--radius-klein);
  color: var(--fehler);
  padding: .9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 550;
}

.erfolg {
  background: var(--karte);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 2.5rem;
  text-align: center;
}
.erfolg-haken { width: 56px; height: 56px; color: var(--gruen); margin-bottom: .75rem; }
.erfolg h3 { font-family: var(--serif); font-size: 1.6rem; }
.erfolg p:last-child { margin: 0; color: var(--text-leise); }
#erfolg-details { font-weight: 650; color: var(--gruen-dunkel); }

/* ---------- Kontakt ---------- */
.kontakt-innen {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(1.5rem, 4vw, 4rem); align-items: center;
}
.adresse { font-style: normal; font-size: 1.1rem; line-height: 1.7; margin-bottom: 1rem; }
.kontakt-motiv svg { display: block; width: min(260px, 60vw); margin-inline: auto; }

/* Kleine plastische Zeilen-Motive (eingebettete SVGs, keine Fremdaufrufe) */
.kontakt-zeile { position: relative; padding-left: 2.5rem; }
.kontakt-zeile::before {
  content: ""; position: absolute; left: 0; top: .12rem;
  width: 1.75rem; height: 1.75rem;
  background-repeat: no-repeat; background-size: contain;
}
.kz-telefon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='.6' y2='1'%3E%3Cstop offset='0' stop-color='%237fae95'/%3E%3Cstop offset='.5' stop-color='%235b8a72'/%3E%3Cstop offset='1' stop-color='%233c5f4c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx='16' cy='28.6' rx='10' ry='2.2' fill='%23d99a3e' opacity='.28'/%3E%3Cpath fill='url(%23g)' d='M9.5 4C7.6 4 6 5.6 6 7.5 6 17.7 14.3 26 24.5 26c1.9 0 3.5-1.6 3.5-3.5v-3.2c0-1.1-.8-2.1-1.9-2.3l-4.3-1c-.9-.2-1.8.1-2.4.9l-1.2 1.5c-3.2-1.6-5.9-4.2-7.4-7.4l1.5-1.2c.7-.6 1.1-1.5.9-2.4l-1-4.3C12 4.8 11 4 9.9 4Z'/%3E%3Cellipse cx='10.5' cy='7.5' rx='2.7' ry='1.6' transform='rotate(-32 10.5 7.5)' fill='%23fff' opacity='.4'/%3E%3C/svg%3E");
}
.kz-chat::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='.6' y2='1'%3E%3Cstop offset='0' stop-color='%237fae95'/%3E%3Cstop offset='.5' stop-color='%235b8a72'/%3E%3Cstop offset='1' stop-color='%233c5f4c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx='16' cy='28.6' rx='10' ry='2.2' fill='%23d99a3e' opacity='.28'/%3E%3Cpath fill='url(%23g)' d='M16 4.5C9.6 4.5 4.5 8.7 4.5 13.8c0 3 1.7 5.6 4.4 7.3-.3 1.6-1.1 3-2.2 4.1 2.3-.2 4.4-1 6.1-2.3 1 .2 2.1.3 3.2.3 6.4 0 11.5-4.2 11.5-9.4S22.4 4.5 16 4.5Z'/%3E%3Cellipse cx='10.5' cy='8.5' rx='4.5' ry='2.4' transform='rotate(-18 10.5 8.5)' fill='%23fff' opacity='.35'/%3E%3Ccircle cx='11' cy='14' r='1.5' fill='%23fdf9f2'/%3E%3Ccircle cx='16' cy='14' r='1.5' fill='%23fdf9f2'/%3E%3Ccircle cx='21' cy='14' r='1.5' fill='%23fdf9f2'/%3E%3C/svg%3E");
}
.kz-uhr::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='.6' y2='1'%3E%3Cstop offset='0' stop-color='%237fae95'/%3E%3Cstop offset='.5' stop-color='%235b8a72'/%3E%3Cstop offset='1' stop-color='%233c5f4c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx='16' cy='28.6' rx='10' ry='2.2' fill='%23d99a3e' opacity='.28'/%3E%3Ccircle cx='16' cy='14.5' r='11' fill='url(%23g)'/%3E%3Cellipse cx='11.5' cy='9' rx='5' ry='2.8' transform='rotate(-24 11.5 9)' fill='%23fff' opacity='.35'/%3E%3Ccircle cx='16' cy='14.5' r='7.6' fill='%23fdf9f2'/%3E%3Cpath fill='none' stroke='%233c5f4c' stroke-width='2' stroke-linecap='round' d='M16 9.8v4.7l3.1 2.6'/%3E%3C/svg%3E");
}

/* ---------- Fußzeile ---------- */
.fuss-zeile {
  position: relative;
  background: var(--navy-tief); color: rgba(255, 251, 242, .85);
  padding-block: 2.75rem 2.5rem;
}
.fuss-zeile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(244, 192, 110, .65) 50%, transparent);
}
.fuss-innen { display: grid; gap: .85rem; }
.fuss-zeile p { margin: 0; }
.fuss-zeile nav { display: flex; gap: 1.5rem; }
.fuss-zeile a { color: var(--bernstein); }
.fuss-zeile a:hover { color: var(--sonne-gelb); }
.testhinweis { font-size: .85rem; color: rgba(255, 251, 242, .55); }

/* ---------- Sanftes Aufscheinen beim ersten Sichtbarwerden ----------
   JS vergibt .enthuellen (Startzustand) und .enthuellt (sichtbar).
   Ohne JS oder bei reduzierter Bewegung wird nichts versteckt. */
.js .enthuellen {
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s ease var(--verz, 0s),
    transform .55s ease var(--verz, 0s);
}
.js .enthuellen.enthuellt { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .enthuellen { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 860px) {
  .kontakt-innen { grid-template-columns: 1fr; }
}

/* Unter 768px scrollt der Kopf mit (kein fixes Band mehr): Wortmarke und
   Navigations-Pillen stehen im normalen Fluss untereinander — nichts kann
   die Hero-Überschrift überlappen. */
@media (max-width: 767px) {
  .kopf {
    position: static;
    background: var(--grund);
    box-shadow: inset 0 -1px 0 var(--rand);
  }
  .kopf.gescrollt {
    background: var(--grund);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: inset 0 -1px 0 var(--rand);
  }
  .kopf-innen {
    flex-direction: column; align-items: flex-start;
    gap: .55rem;
    padding-block: .85rem .95rem;
  }
  .marke { font-size: 1.15rem; }
  .kopf nav { gap: 1.1rem; }
  /* Auch klein bleiben es Textmarken — Kaesten wirkten wie Spielzeug. */
  .kopf nav > a,
  .kopf.gescrollt nav > a {
    font-size: .7rem;
    letter-spacing: .1em;
    padding: .2rem 0;
    background: none;
  }
  .kopf nav > a[aria-current="page"],
  .kopf.gescrollt nav > a[aria-current="page"] { color: var(--gruen); }
  /* Kennzeile eng genug fuer eine Zeile auf schmalen Geraeten. */
  .vorzeile { font-size: .66rem; letter-spacing: .11em; }
  .vorzeile::before { width: 1.6rem; }

  /* Ohne feste Leiste braucht der Hero kein Freihalte-Polster mehr. */
  .held-innen { padding-block: 2.75rem 3.5rem; }
}

@media (max-width: 700px) {
  /* Schmal bricht der Name um, dann sieht die Fuehrungslinie neben der
     ersten Zeile aus wie ein Versehen. Preis kommt darunter. */
  /* Schmal steht das Foto oben, darunter der Text in voller Breite. */
  .posten { grid-template-columns: 1fr; gap: 1.1rem; }
  .posten-bild { max-width: 22rem; }

  .posten-kopf { display: block; }
  .posten-fuehrung { display: none; }
  .posten-preis { display: block; margin-top: .3rem; }


  /* Ein Scan-Fenster, kompakter; größere Beschriftung im Foto-Raum */
  .scan-fenster { width: min(94vw, 440px); }
  .scan-overlay [data-art="label"], .scan-overlay .lb { font-size: 44px; }
  .stufen-anzeige button { padding-inline: .45rem; font-size: .74rem; }
  .statisch-fuesse { flex-direction: column; align-items: center; }
  .statisch-fuesse .scan-fenster { width: min(94vw, 440px); }
}

/* Sprungziele: unter dem fixen Desktop-Header landen Überschriften
   sonst hinter der Leiste. Mobil (statischer Kopf) schadet der
   Abstand nicht — er wirkt dort schlicht als kleine Atempause. */
section[id], [id="buchung"], [id="reportage"] { scroll-margin-top: 84px; }

/* Erreichbarkeits-Kanäle: Anbieter-Chips mit plastischen Logos.
   SMS/WhatsApp/Telegram verlinken die Mobilnummer; Threema braucht
   eine ID und bleibt bis dahin ohne Link. */
.kanal-liste {
  list-style: none; margin: .5rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.kanal {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .85rem .4rem .5rem;
  border-radius: var(--pille);
  background: #fff;
  border: 1px solid rgba(120, 70, 20, .16);
  box-shadow: 0 2px 6px rgba(45, 45, 58, .08);
  text-decoration: none; color: var(--navy-tief);
  font-weight: 600; font-size: .92rem;
  transition: transform var(--uebergang), box-shadow var(--uebergang);
}
a.kanal:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(45, 45, 58, .14); }
.kanal svg { width: 26px; height: 26px; flex: none; filter: drop-shadow(0 1px 2px rgba(30, 30, 38, .25)); }
.kanal-still { cursor: default; }

/* Kontakt: Miniaturkarte mit Klick-Freigabe statt des Pin-Motivs. */
.kontakt-karte { max-width: 400px; }
.karten-buehne { display: flex; flex-direction: column; }
.mini-karte {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  border: 1px solid rgba(120, 70, 20, .18);
  box-shadow: 0 10px 28px rgba(45, 45, 58, .12);
}
.karten-hinweis {
  font-size: .82rem; color: var(--text-leise);
  margin: .7rem 0 .6rem; line-height: 1.5;
}
.karten-aktionen { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.karten-link { font-weight: 600; color: var(--gruen-dunkel); }
.karten-iframe {
  width: 100%; aspect-ratio: 340 / 260; border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(45, 45, 58, .12);
}

/* Rechtsseiten: Kopf im Seitenfluss statt fixiert (kein Hero dahinter). */
.kopf-statisch { position: static; }

/* ---------- Storno-Seite ---------- */
.storno-karte {
  background: var(--karte);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 1.5rem;
}
.storno-termin { margin: 0 0 1.25rem; }
.storno-termin dt {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-leise);
  margin: 0 0 .1rem;
}
.storno-termin dd {
  margin: 0 0 .9rem; font-size: 1.1rem; font-weight: 600;
  color: var(--navy-tief);
}
.storno-termin dd:last-child { margin-bottom: 0; }
.knopf-storno {
  background: var(--fehler);
  border-color: var(--fehler);
  color: #fff;
  box-shadow: 0 6px 16px rgba(180, 35, 24, .25);
}
.knopf-storno:hover {
  background: #9a1e14;
  border-color: #9a1e14;
  box-shadow: 0 8px 20px rgba(180, 35, 24, .3);
}
.knopf-storno:active { box-shadow: 0 4px 10px rgba(180, 35, 24, .25); }
.storno-hinweis { color: var(--text-leise); font-size: .95rem; margin: .9rem 0 0; }

/* Doppel-Opt-In: Die Bestätigungs-Aufforderung muss sofort ins Auge fallen. */
.opt-in-warnung {
  display: block;
  color: var(--fehler);
  font-weight: 700;
  font-size: 1.06em;
  margin-bottom: .35rem;
}
