/* Kurvatur – gemeinsames Stylesheet (Art Direction „Achse") */

:root {
  --paper: #f1f3f2;
  --paper-2: #e5e9e9;
  --paper-3: #d6dcdd;
  --ink: #14213d;
  --ink-2: #48546e;
  --ink-3: #7d869a;
  --line: rgba(20, 33, 61, 0.14);
  --line-strong: rgba(20, 33, 61, 0.34);
  --navy-2: #1d2c4e;
  --on-ink: #f1f3f2;
  --on-ink-2: rgba(241, 243, 242, 0.7);
  --on-ink-line: rgba(241, 243, 242, 0.16);
  --signal: #e4472d;
  --signal-deep: #c23a22;

  --font: "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --m: clamp(20px, 5vw, 76px);
  --gut: clamp(14px, 1.7vw, 24px);
  --hh: 72px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

@media (max-width: 900px) {
  :root { --hh: 60px; }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hh) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

@media (max-width: 600px) {
  body { font-size: 16px; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p, h1, h2, h3, h4, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 700; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: var(--m); top: -60px;
  z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
}
.skip:focus { top: 12px; }

/* ---------- Typografie ---------- */

.t-mega {
  font-size: clamp(56px, 8vw, 136px);
  font-weight: 780;
  letter-spacing: -0.052em;
  line-height: 0.88;
}
.t-display {
  font-size: clamp(46px, 6.6vw, 110px);
  font-weight: 760;
  letter-spacing: -0.047em;
  line-height: 0.92;
}
.t-h2 {
  font-size: clamp(36px, 4.3vw, 68px);
  font-weight: 720;
  letter-spacing: -0.038em;
  line-height: 0.98;
}
.t-h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 660;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.t-small {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.t-muted { color: var(--ink-2); }
.measure { max-width: 34em; }

/* ---------- Grundraster ---------- */

.wrap { padding-inline: var(--m); }
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
}

/* ---------- Buttons & Links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  background: var(--ink);
  color: var(--paper);
  font: 600 16px/1.1 var(--font);
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { background: var(--signal-deep); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--sm { min-height: 42px; padding: 0 16px; font-size: 15px; }
.btn--wide { width: 100%; }

.link {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.2s;
}
.link:hover { text-decoration-color: var(--signal); }

/* ---------- Kopfzeile ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--hh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: var(--m);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo svg { width: 13px; height: 26px; flex: none; }

.nav { display: flex; align-items: center; gap: clamp(22px, 2.8vw, 44px); }
.nav__links { display: flex; gap: clamp(22px, 2.8vw, 40px); }
.nav__links a {
  position: relative;
  padding-block: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 520;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease), background-color 0.2s;
}
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a:hover::after { transform: scaleX(1); background: var(--signal); }

.menu-btn {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 4px;
  background: none;
  border: 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.menu-btn__bars { position: relative; width: 20px; height: 10px; }
.menu-btn__bars::before, .menu-btn__bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.menu-btn__bars::before { top: 0; }
.menu-btn__bars::after { top: 8px; }
.nav-open .menu-btn__bars::before { top: 4px; transform: rotate(45deg); }
.nav-open .menu-btn__bars::after { top: 4px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--hh) 0 0 0;
  z-index: 49;
  background: var(--paper);
  padding: 32px var(--m) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s var(--ease), visibility 0s linear 0.25s;
}
.nav-open .mobile-nav { visibility: visible; opacity: 1; transition: opacity 0.25s var(--ease); }
.mobile-nav ul { display: grid; gap: 4px; }
.mobile-nav a:not(.btn) {
  display: block;
  padding-block: 10px;
  font-size: 40px;
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-decoration: none;
}
.mobile-nav a[aria-current="page"] { color: var(--ink-2); }
.mobile-nav__meta { display: grid; gap: 18px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .logo { font-size: 21px; }
}

/* Mobile: Termin-Leiste unten */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: none;
  padding: 10px var(--m) calc(10px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.dock.is-visible { transform: none; }
@media (max-width: 900px) {
  .dock { display: block; }
  body.has-dock { padding-bottom: 72px; }
}

/* ---------- Kurvatur-Linie ---------- */

.kurve {
  position: fixed;
  left: 0; top: 0;
  width: var(--m);
  height: 100vh;
  z-index: 40;
  pointer-events: none;
  overflow: visible;
}
.kurve path, .kurve line { fill: none; vector-effect: non-scaling-stroke; }
.kurve .k-base { stroke-width: 1; opacity: 0.16; }
.kurve .k-draw { stroke-width: 1.4; stroke-linecap: round; }
.kurve .k-tick { stroke-width: 1; opacity: 0.18; transition: opacity 0.4s; }
.kurve .k-tick.is-on { opacity: 0.9; }
.kurve .k-label { font: 600 10.5px/1 var(--font); letter-spacing: 0.02em; }
.kurve .k-ink { stroke: var(--ink); color: var(--ink); }
.kurve .k-paper { stroke: var(--paper); color: var(--paper); }
.kurve .k-ink text, .kurve .k-paper text { fill: currentColor; stroke: none; }
.kurve .k-ink circle, .kurve .k-paper circle { fill: currentColor; stroke: none; }
@media (max-width: 1100px) {
  .kurve .k-label { display: none; }
}
@media (max-width: 600px) {
  .kurve .k-tick { display: none; }
  .kurve .k-draw { stroke-width: 1; }
}

/* ---------- Reveal (nur mit JS, mit Sicherheits-Timeout) ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js [data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease);
}
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }

/* ================= STARTSEITE ================= */

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  padding-inline: var(--m);
  min-height: clamp(620px, calc(100svh - var(--hh)), 960px);
}
.hero__text {
  grid-column: 1 / 7;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(24px, 4vh, 44px) clamp(36px, 7vh, 72px);
  position: relative;
  z-index: 2;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  color: var(--ink-2);
}
.hero__title { margin-block: 48px 36px; }
.hero__title .ln { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__title .ln > span { display: block; }
.hero__foot p { max-width: 27em; }
.hero__actions { display: flex; align-items: center; gap: 16px 32px; flex-wrap: wrap; margin-top: 30px; }

.hero__media {
  grid-column: 7 / 13;
  grid-row: 1;
  position: relative;
  margin-right: calc(-1 * var(--m));
}
.hero__crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--paper-2);
}
.hero__crop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

/* Befund-Markierung auf dem Foto */
.pin {
  position: absolute;
  left: var(--pin-x, 58%);
  top: var(--pin-y, 54%);
  width: 0; height: 0;
  z-index: 3;
}
.pin__dot {
  position: absolute;
  left: -7px; top: -7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(241, 243, 242, 0.9);
}
.pin__ring {
  position: absolute;
  left: -22px; top: -22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--signal);
  opacity: 0;
  animation: pulse 2.6s var(--ease) infinite;
}
.pin__ring--2 { animation-delay: 1.3s; }
@keyframes pulse {
  0% { transform: scale(0.35); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.befund {
  position: absolute;
  z-index: 3;
  right: calc(100% - var(--pin-x, 58%) + 22px);
  top: var(--pin-y, 54%);
  width: 280px;
  margin-top: -0.75px;
  border-top: 1.5px solid var(--ink);
  padding-top: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}
.befund strong,
.befund span {
  display: block;
  width: fit-content;
  background: rgba(241, 243, 242, 0.86);
  padding: 5px 9px 6px;
}
.befund strong { font-weight: 700; padding-bottom: 0; }
.befund span { padding-top: 2px; }

/* Lade-Choreografie Hero */
.js .hero__title .ln > span { transform: translateY(105%); transition: transform 1.1s var(--ease); }
.js .hero__crop img { transform: scale(1.06); transition: transform 1.8s var(--ease); }
.js .hero__crop { clip-path: inset(0 0 0 100%); transition: clip-path 1.2s var(--ease); }
.js .hero .pin, .js .hero .befund { opacity: 0; transition: opacity 0.6s var(--ease); }
.js .hero .befund { transform: translateX(-12px); transition: opacity 0.6s var(--ease), transform 0.8s var(--ease); }
.js .hero.is-ready .hero__title .ln > span { transform: none; }
.js .hero.is-ready .hero__title .ln:nth-child(2) > span { transition-delay: 0.08s; }
.js .hero.is-ready .hero__title .ln:nth-child(3) > span { transition-delay: 0.16s; }
.js .hero.is-ready .hero__crop { clip-path: inset(0 0 0 0); }
.js .hero.is-ready .hero__crop img { transform: none; }
.js .hero.is-ready .pin { opacity: 1; transition-delay: 1s; }
.js .hero.is-ready .befund { opacity: 1; transform: none; transition-delay: 1.2s; }

@media (max-width: 900px) {
  .hero {
    display: block;
    min-height: 0;
    padding-inline: 0;
  }
  .hero__text { display: contents; }
  .hero__meta { padding: 20px var(--m) 0; }
  .hero__title { margin: 22px 0 26px; padding-inline: var(--m); font-size: clamp(52px, 16.4vw, 96px); }
  .hero__media {
    margin: 0;
    height: min(118vw, 520px);
  }
  .hero__foot { padding: 26px var(--m) 8px; }
  .hero__actions { margin-top: 22px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .befund {
    right: auto;
    left: var(--m);
    top: auto;
    bottom: 16px;
    width: auto;
    max-width: calc(100% - 2 * var(--m));
    border-top: 0;
    padding: 0;
    margin: 0;
  }
  .befund strong, .befund span { background: rgba(241, 243, 242, 0.94); }
}

/* ---------- Körperkarte ---------- */

.bodymap {
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(80px, 8vw, 128px) var(--m) clamp(80px, 9vw, 136px);
  position: relative;
}
.bodymap__head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: end;
}
.bodymap__title { grid-column: 1 / 8; }
.bodymap__intro { grid-column: 9 / 13; color: var(--on-ink-2); padding-bottom: 10px; }

.bodymap__stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  margin-top: clamp(40px, 4vw, 64px);
  align-items: start;
}

.zone-list {
  grid-column: 1 / 4;
  border-top: 1px solid var(--on-ink-line);
}
.zone-btn {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  width: 100%;
  padding: 14px 0 15px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--on-ink-line);
  text-align: left;
  cursor: pointer;
  color: var(--on-ink-2);
  transition: color 0.2s;
}
.zone-btn__dot {
  align-self: center;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.6;
  transition: background-color 0.2s, border-color 0.2s, transform 0.3s var(--ease), opacity 0.2s;
}
.zone-btn__name {
  font-size: clamp(20px, 1.75vw, 26px);
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.zone-btn__sub { grid-column: 2; font-size: 14px; line-height: 1.35; margin-top: 3px; opacity: 0.8; }
.zone-btn:hover { color: var(--on-ink); }
.zone-btn:hover .zone-btn__dot { border-color: var(--signal); opacity: 1; }
.zone-btn[aria-pressed="true"] { color: var(--on-ink); }
.zone-btn[aria-pressed="true"] .zone-btn__dot {
  background: var(--signal);
  border-color: var(--signal);
  opacity: 1;
  transform: scale(1.35);
}

.figure {
  grid-column: 4 / 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.figure__canvas {
  position: relative;
  height: clamp(480px, 46vw, 660px);
  aspect-ratio: 240 / 570;
  transition: transform 0.22s cubic-bezier(0.5, 0, 0.75, 0);
}
.figure__canvas.is-flipping { transform: scaleX(0.02); }
.figure__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fig-outline { fill: rgba(241, 243, 242, 0.05); stroke: rgba(241, 243, 242, 0.78); stroke-width: 1.15; stroke-linejoin: round; }
.fig-detail path { fill: none; stroke: rgba(241, 243, 242, 0.3); stroke-width: 1; stroke-linecap: round; }
.fig-detail[hidden] { display: none; }

.marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 50%;
}
.marker[hidden] { display: none; }
.marker__dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--signal);
  transform: scale(0.62);
  transition: transform 0.3s var(--ease);
}
.marker__ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(241, 243, 242, 0.28);
  transform: scale(0.8);
  transition: border-color 0.2s, transform 0.3s var(--ease);
}
.marker:hover .marker__ring { border-color: var(--signal); transform: scale(1.1); }
.marker.is-active .marker__dot { transform: scale(1.25); }
.marker:hover .marker__dot { transform: scale(0.9); }
.marker.is-active .marker__ring { border-color: transparent; }
.marker.is-active .marker__ring::before,
.marker.is-active .marker__ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid var(--signal);
  animation: pulse 2.4s var(--ease) infinite;
}
.marker.is-active .marker__ring::after { animation-delay: 1.2s; }

.viewtoggle {
  display: inline-flex;
  border: 1px solid rgba(241, 243, 242, 0.3);
  border-radius: 2px;
  padding: 3px;
}
.viewtoggle button {
  min-height: 38px;
  min-width: 84px;
  padding: 0 16px;
  background: none;
  border: 0;
  border-radius: 1px;
  color: var(--on-ink-2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.viewtoggle button:hover { color: var(--on-ink); }
.viewtoggle button[aria-pressed="true"] { background: var(--on-ink); color: var(--ink); }

.zone-panels { grid-column: 8 / 13; min-height: 600px; padding-top: 8px; }
.bodymap__note {
  margin-top: clamp(48px, 5vw, 80px);
  padding-top: 18px;
  border-top: 1px solid var(--on-ink-line);
  font-size: 14px;
  color: var(--on-ink-2);
  max-width: 60em;
}
.zone { animation: zoneIn 0.5s var(--ease); }
.zone[hidden] { display: none; }
@keyframes zoneIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.zone__kicker { color: var(--on-ink-2); font-size: 14px; font-weight: 500; }
.zone__name {
  margin-top: 6px;
  font-size: clamp(48px, 5.2vw, 84px);
  font-weight: 760;
  letter-spacing: -0.048em;
  line-height: 0.95;
}
.zone__grid {
  display: grid;
  gap: 30px;
  margin-top: 34px;
}
.zone__grid p { max-width: 34em; }
.zone__list--cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--gut); }
.zone__label { font-size: 14px; font-weight: 600; color: var(--on-ink-2); margin-bottom: 10px; }
.zone__list li {
  padding: 8px 0 9px;
  border-top: 1px solid var(--on-ink-line);
  line-height: 1.35;
}
.zone__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: start;
  gap: 16px clamp(24px, 3vw, 48px);
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--on-ink-line);
}
.zone__facts dt { font-size: 14px; color: var(--on-ink-2); font-weight: 500; }
.zone__facts dd { margin-top: 4px; font-size: 21px; font-weight: 640; letter-spacing: -0.02em; line-height: 1.2; }
.zone__facts dd a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.zone__facts dd a:hover { text-decoration-color: var(--signal); }
.zone__cta { margin-top: 34px; }

@media (max-width: 1180px) and (min-width: 901px) {
  .zone-list { grid-column: 1 / 5; }
  .figure { grid-column: 5 / 9; }
  .zone-panels { grid-column: 1 / 13; margin-top: 56px; min-height: 0; }
  .figure__canvas { height: 500px; }
}

@media (max-width: 900px) {
  .bodymap__head { display: block; }
  .bodymap__intro { margin-top: 18px; padding: 0; }
  .bodymap__stage { display: flex; flex-direction: column; align-items: stretch; margin-top: 36px; }
  .figure { order: 1; position: relative; gap: 0; }
  .figure__canvas { height: min(96vw, 420px); }
  .viewtoggle { position: absolute; right: 0; top: 0; }
  .viewtoggle button { min-width: 0; padding: 0 12px; }
  .zone-list {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
    border: 0;
  }
  .zone-btn {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    padding: 12px 12px;
    min-height: 52px;
    border: 1px solid var(--on-ink-line);
    border-radius: 2px;
  }
  .zone-btn[aria-pressed="true"] { border-color: var(--signal); }
  .zone-btn__name { font-size: 17px; }
  .zone-btn__sub { display: none; }
  .zone-panels { order: 3; margin-top: 40px; min-height: 0; }
  .zone__grid { gap: 26px; }
  .zone__list--cols { grid-template-columns: 1fr; }
  .zone__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zone__facts > div:last-child { grid-column: 1 / -1; }
  .zone__cta .btn { width: 100%; }
}

/* ---------- Schwerpunkte ---------- */

.focus { padding: clamp(96px, 12vw, 190px) var(--m) clamp(80px, 9vw, 140px); }
.focus__head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.focus__head h2 { grid-column: 7 / 13; grid-row: 1; }
.focus__head p { grid-column: 1 / 5; grid-row: 1; color: var(--ink-2); }

.focus__body {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: start;
}
.focus__media {
  grid-column: 1 / 6;
  position: sticky;
  top: calc(var(--hh) + 28px);
  aspect-ratio: 4 / 5;
  max-height: calc(100vh - var(--hh) - 56px);
  width: 100%;
  overflow: hidden;
  background: var(--paper-2);
}
.focus__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s var(--ease), transform 1.2s var(--ease);
}
.focus__media img.is-active { opacity: 1; transform: none; }

.focus__list { grid-column: 7 / 13; border-top: 1px solid var(--line-strong); }
.focus__item a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  padding: clamp(26px, 2.6vw, 38px) 0;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
}
.focus__thumb { display: none; }
.focus__name {
  position: relative;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: transform 0.45s var(--ease);
}
.focus__name::before {
  content: "";
  position: absolute;
  left: -26px; top: 50%;
  width: 10px; height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--signal);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.focus__dur { font-size: 14px; font-weight: 600; color: var(--ink-2); padding-top: 6px; white-space: nowrap; }
.focus__desc { grid-column: 1 / 2; color: var(--ink-2); max-width: 30em; }
.focus__item a:hover .focus__name,
.focus__item a:focus-visible .focus__name,
.focus__item.is-active .focus__name { transform: translateX(26px); }
.focus__item a:hover .focus__name::before,
.focus__item a:focus-visible .focus__name::before,
.focus__item.is-active .focus__name::before { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .focus { padding-inline: 0; }
  .focus__head { display: block; padding-inline: var(--m); margin-bottom: 32px; }
  .focus__head p { margin-top: 16px; }
  .focus__body { display: block; }
  .focus__media { display: none; }
  .focus__list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 var(--m) 12px;
    scroll-padding-inline: var(--m);
    border: 0;
    scrollbar-width: none;
  }
  .focus__list::-webkit-scrollbar { display: none; }
  .focus__item { flex: 0 0 min(78vw, 340px); scroll-snap-align: start; }
  .focus__item a { display: block; padding: 0; border: 0; }
  .focus__thumb { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--paper-2); }
  .focus__name { display: block; margin-top: 16px; font-size: 26px; }
  .focus__name::before { display: none; }
  .focus__item.is-active .focus__name, .focus__item a:hover .focus__name { transform: none; }
  .focus__dur { display: block; padding-top: 8px; }
  .focus__desc { display: block; margin-top: 6px; font-size: 15px; }
  .focus__more { padding: 20px var(--m) 0; }
}
.focus__more { margin-top: 36px; }
@media (min-width: 901px) {
  .focus__more { grid-column: 7 / 13; }
}

/* ---------- Erste Sitzung ---------- */

.ablauf {
  background: var(--paper-2);
  padding: clamp(88px, 10vw, 150px) var(--m) 0;
}
.ablauf__head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: end;
}
.ablauf__head h2 { grid-column: 1 / 7; }
.ablauf__head p { grid-column: 8 / 12; color: var(--ink-2); }

.timebar {
  margin-top: clamp(56px, 6vw, 90px);
  display: grid;
  grid-template-columns: 20fr 5fr 15fr 5fr;
  position: relative;
}
.timebar__seg {
  position: relative;
  height: 64px;
  border-left: 1px solid var(--ink);
}
.timebar__seg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 28px;
  height: 6px;
  background: var(--ink);
  transform-origin: left;
}
.timebar__seg b { position: absolute; left: 9px; top: 0; font-size: 15px; font-weight: 700; }
.timebar__seg:nth-child(2)::after, .timebar__seg:nth-child(4)::after { background: var(--ink-2); }
.timebar__seg span {
  position: absolute; left: 9px; bottom: 0;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.timebar__end {
  position: absolute; right: 0; bottom: 0;
  font-size: 13px; font-weight: 600;
}
.js .timebar__seg::after { transform: scaleX(0); transition: transform 0.8s var(--ease); }
.js .timebar.is-in .timebar__seg::after { transform: none; }
.js .timebar.is-in .timebar__seg:nth-child(2)::after { transition-delay: 0.5s; }
.js .timebar.is-in .timebar__seg:nth-child(3)::after { transition-delay: 0.75s; }
.js .timebar.is-in .timebar__seg:nth-child(4)::after { transition-delay: 1.2s; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--gut);
  margin-top: 40px;
  counter-reset: step;
}
.step-item { padding-right: clamp(0px, 2vw, 32px); }
.step-item__num {
  display: block;
  font-size: clamp(64px, 7vw, 116px);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.8;
}
.step-item h3 { margin-top: 26px; }
.step-item p { margin-top: 10px; color: var(--ink-2); }
.step-item__time { display: block; margin-top: 14px; font-size: 14px; font-weight: 600; }

.band {
  position: relative;
  margin: clamp(80px, 9vw, 140px) calc(-1 * var(--m)) 0;
  height: clamp(340px, 44vw, 660px);
  overflow: hidden;
}
.band img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.band__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(var(--m) + min(520px, 40vw));
  background: var(--paper);
  padding: 34px 44px 0 var(--m);
  color: var(--ink-2);
}
.band__caption strong { display: block; color: var(--ink); font-size: clamp(24px, 2.2vw, 32px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; }

@media (max-width: 900px) {
  .ablauf__head { display: block; }
  .ablauf__head p { margin-top: 16px; }
  .timebar__seg span { font-size: 12px; left: 5px; }
  .timebar__seg b { left: 6px; }
  .timebar__end { display: none; }
  .steps { grid-template-columns: 1fr; row-gap: 0; margin-top: 12px; }
  .step-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 12px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
  }
  .step-item:last-child { border-bottom: 0; }
  .step-item__num { grid-row: 1 / 4; font-size: 60px; }
  .step-item h3 { margin-top: 0; }
  .band { height: 380px; }
  .band img { object-position: 40% 50%; }
  .band__caption { position: static; width: auto; padding: 28px var(--m) 0; background: var(--paper-2); }
  .band { height: auto; }
  .band img { height: 340px; }
}

/* ---------- Kosten kurz ---------- */

.kosten {
  padding: clamp(96px, 12vw, 180px) var(--m) clamp(96px, 11vw, 170px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: start;
}
.kosten__left { grid-column: 1 / 5; grid-row: 1 / 4; }
.kosten__num {
  font-size: clamp(240px, 33vw, 520px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.74;
  margin-left: -0.05em;
}
.kosten__numlabel { margin-top: 30px; max-width: 13em; font-weight: 650; font-size: clamp(21px, 1.8vw, 26px); line-height: 1.2; letter-spacing: -0.02em; }
.kosten h2 { grid-column: 6 / 13; grid-row: 1; }
.kosten__cols {
  grid-column: 6 / 13;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--gut);
  margin-top: clamp(40px, 4vw, 64px);
}
.kosten__col { border-top: 2px solid var(--ink); padding-top: 18px; padding-right: 16px; }
.kosten__col h3 { font-size: 21px; font-weight: 680; letter-spacing: -0.02em; line-height: 1.2; }
.kosten__col ul { margin-top: 14px; }
.kosten__col li { padding: 10px 0 11px; border-top: 1px solid var(--line); color: var(--ink-2); line-height: 1.4; }
.kosten__col li:first-child { border-top: 0; padding-top: 0; }
.kosten__more { grid-column: 6 / 13; grid-row: 3; margin-top: 40px; }

@media (max-width: 900px) {
  .kosten { display: block; }
  .kosten__num { font-size: 190px; margin-bottom: 0; }
  .kosten__numlabel { margin: 18px 0 56px; }
  .kosten__cols { grid-template-columns: 1fr; row-gap: 36px; margin-top: 30px; }
}

/* ---------- Termin-CTA mit Foto ---------- */

.cta {
  position: relative;
  min-height: clamp(560px, 62vw, 900px);
  overflow: hidden;
  background: #dcdcd9;
}
.cta > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% 32%;
}
.cta__text {
  position: absolute;
  right: var(--m);
  bottom: clamp(48px, 6vw, 96px);
  width: min(460px, 40%);
}
.cta__label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.cta__slot {
  margin-top: 8px;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 740;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cta__text .btn { margin-top: 30px; }
.cta__note { margin-top: 16px; font-size: 14px; color: var(--ink-2); max-width: 26em; }

@media (max-width: 900px) {
  .cta { min-height: 0; background: var(--paper); }
  .cta > img { position: static; height: 420px; object-position: 38% 40%; }
  .cta__text { position: static; width: auto; padding: 36px var(--m) 72px; }
  .cta__text .btn { width: 100%; }
}

/* ---------- Fusszeile ---------- */

.site-footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(72px, 8vw, 120px) var(--m) 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--on-ink-line);
}
.footer__claim {
  grid-column: 1 / 10;
  text-decoration: none;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.footer__claim:hover { text-decoration: underline; text-decoration-color: var(--signal); }
.footer__link { margin-top: 10px; font-weight: 600; }
.footer__link a { text-decoration: underline !important; text-underline-offset: 4px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  row-gap: 36px;
  padding-block: 48px 72px;
}
.footer__col { grid-column: span 3; }
.footer__col h2 { font-size: 14px; font-weight: 600; color: var(--on-ink-2); margin-bottom: 12px; }
.footer__col p, .footer__col li { line-height: 1.5; }
.footer__col a { text-decoration: none; }
.footer__col a:hover { text-decoration: underline; text-decoration-color: var(--signal); text-underline-offset: 4px; }
.footer__col li + li { margin-top: 4px; }
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid var(--on-ink-line);
  font-size: 13px;
  color: var(--on-ink-2);
}
.footer__base .logo { font-size: 19px; color: var(--on-ink); }

@media (max-width: 900px) {
  .footer__top { display: block; }
  .footer__col { grid-column: span 6; }
}
@media (max-width: 520px) {
  .footer__col { grid-column: 1 / -1; }
}

/* ================= UNTERSEITEN ================= */

.pagehead {
  padding: clamp(56px, 8vw, 128px) var(--m) clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: end;
}
.pagehead__title { grid-column: 1 / 13; }
.pagehead__intro { grid-column: 7 / 12; color: var(--ink-2); margin-top: clamp(28px, 3vw, 48px); }
.pagehead__meta { grid-column: 1 / 13; margin-bottom: clamp(28px, 4vw, 56px); color: var(--ink-2); }

@media (max-width: 900px) {
  .pagehead { display: block; padding-top: 40px; }
  .pagehead__meta { margin-bottom: 20px; }
  .pagehead__intro { margin-top: 20px; }
}

/* Index-Tabelle (Behandlungen) */
.index {
  grid-column: 1 / 13;
  margin-top: clamp(56px, 7vw, 110px);
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: var(--gut);
}
.index a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 132px;
  padding: 16px 0 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}
.index__name { font-size: 21px; font-weight: 660; letter-spacing: -0.02em; line-height: 1.15; }
.index__dur { font-size: 14px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 10px; white-space: nowrap; flex: none; }
.index__dur::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); transition: background-color 0.2s, transform 0.3s var(--ease); }
.index a:hover .index__dur::before { background: var(--signal); transform: scale(1.3); }
.index a:hover .index__name { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 5px; }

@media (max-width: 900px) {
  .index { grid-template-columns: 1fr; margin-top: 40px; }
  .index a { flex-direction: row; align-items: center; min-height: 0; padding: 16px 0; gap: 16px; }
  .index__name { font-size: 19px; }
}

/* Behandlungs-Kapitel */
.chapter { padding: clamp(96px, 11vw, 170px) var(--m); position: relative; }
.chapter + .chapter { padding-top: 0; }
.chapter__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: start;
}
.chapter__label { font-size: 14px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 10px; }
.chapter__label::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.chapter__title { margin-top: 0; }
.chapter__lead { margin-top: 24px; max-width: 32em; }

.facts-block { margin-top: 40px; }
.facts-block h3, .sub-h {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-strong);
}
.plain-list li { padding: 10px 0 11px; border-bottom: 1px solid var(--line); line-height: 1.4; }
.seq-list { counter-reset: seq; }
.seq-list li {
  counter-increment: seq;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 14px 0 15px;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}
.seq-list li::before { content: counter(seq); font-weight: 700; }
.seq-list strong { font-weight: 650; }

.duration {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}
.duration__num { font-size: clamp(56px, 5.4vw, 88px); font-weight: 780; letter-spacing: -0.055em; line-height: 0.85; }
.duration__unit { font-size: 21px; font-weight: 650; }
.duration__text { margin-left: auto; font-size: 14px; color: var(--ink-2); max-width: 15em; text-align: right; line-height: 1.4; }
.duration--light { border-top-color: var(--on-ink); }
.duration--light .duration__text { color: var(--on-ink-2); }

/* A: Rücken und Nacken – Bild links angeschnitten */
.ch-a__media { grid-column: 1 / 8; margin-left: calc(-1 * var(--m)); position: sticky; top: calc(var(--hh) + 28px); }
.ch-a__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 60% 50%; }
.ch-a__text { grid-column: 9 / 13; padding-top: 8px; }
.note {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.note::before { content: ""; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--ink); }
.note--warn::before { background: var(--signal); }

/* B: Sport – Vollbild mit Titel */
.ch-b { padding-inline: 0; }
.ch-b__hero { position: relative; height: clamp(520px, 56vw, 860px); overflow: hidden; }
.ch-b__hero img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.ch-b__title {
  position: absolute;
  left: var(--m);
  bottom: clamp(32px, 4vw, 64px);
  color: var(--ink);
}
.ch-b__title .chapter__label { color: var(--ink); }
.ch-b__body { padding: clamp(56px, 6vw, 96px) var(--m) 0; }
.ch-b__lead { grid-column: 1 / 6; }
.ch-b__lead p { font-size: 17px; }
.ch-b__col1 { grid-column: 7 / 10; }
.ch-b__col2 { grid-column: 10 / 13; }
.ch-b__col1 .facts-block, .ch-b__col2 .facts-block { margin-top: 0; }

/* C: Manuelle Therapie – Text links, gestaffelte Bilder */
.ch-c__text { grid-column: 1 / 6; grid-row: 1; }
.ch-c__media { grid-column: 7 / 13; grid-row: 1; position: relative; margin-right: calc(-1 * var(--m)); padding-bottom: clamp(120px, 14vw, 220px); }
.ch-c__big { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 30%; }
.ch-c__small {
  position: absolute;
  left: calc(-1 * clamp(20px, 3vw, 48px));
  bottom: 0;
  width: 46%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-left: 0;
  border-bottom: 0;
}

/* D: Reha – dunkles Kapitel mit Phasen */
.ch-d { background: var(--ink); color: var(--on-ink); }
.chapter.ch-d { padding-top: clamp(96px, 11vw, 170px); }
.ch-d + .chapter { padding-top: clamp(96px, 11vw, 170px); }
.ch-d .chapter__label { color: var(--on-ink-2); }
.ch-d .chapter__lead { color: var(--on-ink-2); }
.ch-d__text { grid-column: 1 / 6; }
.ch-d__media { grid-column: 7 / 13; margin-right: calc(-1 * var(--m)); }
.ch-d__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 55% 50%; }
.ch-d .facts-block h3 { color: var(--on-ink-2); border-color: var(--on-ink-line); }
.ch-d .plain-list li { border-color: var(--on-ink-line); }

.phases {
  grid-column: 1 / 13;
  margin-top: clamp(64px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--gut);
}
.phase { padding-top: 18px; border-top: 1px solid var(--on-ink-line); position: relative; }
.phase::before {
  content: "";
  position: absolute; left: 0; top: -4px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--on-ink);
}
.phase__when { font-size: 14px; font-weight: 600; color: var(--on-ink-2); }
.phase__name { margin-top: 8px; font-size: clamp(26px, 2.4vw, 38px); font-weight: 720; letter-spacing: -0.035em; line-height: 1; }
.phase p { margin-top: 12px; color: var(--on-ink-2); padding-right: 12px; }
.phases__note { grid-column: 1 / 13; margin-top: 36px; font-size: 14px; color: var(--on-ink-2); }

/* E: MTT – Diptychon */
.ch-e__diptych {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4px;
  margin-inline: calc(-1 * var(--m));
}
.ch-e__diptych img { width: 100%; height: clamp(360px, 40vw, 620px); object-fit: cover; }
.ch-e__diptych img:first-child { object-position: 45% 50%; }
.ch-e__diptych img:last-child { object-position: 42% 50%; }
.ch-e__head { grid-column: 1 / 7; margin-top: clamp(48px, 5vw, 80px); }
.ch-e__col1 { grid-column: 8 / 13; margin-top: clamp(48px, 5vw, 80px); }
.ch-e__row { grid-column: 1 / 13; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gut); margin-top: 56px; }
.ch-e__row > div:first-child { grid-column: 1 / 5; }
.ch-e__row > div:nth-child(2) { grid-column: 5 / 9; }
.ch-e__row > div:nth-child(3) { grid-column: 9 / 13; }
.ch-e__row .facts-block, .ch-e__row .duration { margin-top: 0; }

/* Abschluss-Band */
.closer {
  margin: 0 var(--m) clamp(96px, 10vw, 150px);
  padding-top: clamp(48px, 5vw, 72px);
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: end;
}
.closer h2 { grid-column: 1 / 8; }
.closer__side { grid-column: 9 / 13; }
.closer__side p { color: var(--ink-2); }
.closer__actions { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; margin-top: 26px; }

@media (max-width: 900px) {
  .chapter { padding-block: 72px; }
  .chapter.ch-d { padding-top: 72px; }
  .ch-a__media { position: relative; top: 0; }
  .chapter__grid { display: block; }
  .ch-a__media { margin: 0 calc(-1 * var(--m)) 36px; }
  .ch-a__media img { aspect-ratio: 4 / 3; }
  .ch-b__hero { height: auto; }
  .ch-b__hero img { height: 400px; object-position: 46% 60%; }
  .ch-b__title { position: static; padding: 36px var(--m) 0; }
  .ch-b__body { padding-top: 40px; }
  .ch-b__col1, .ch-b__col2 { margin-top: 36px; }
  .ch-c__media { margin: 36px calc(-1 * var(--m)) 0; padding-bottom: 0; }
  .ch-c__small { position: relative; left: auto; width: 62%; margin: -64px 0 0 auto; border: 8px solid var(--paper); border-right: 0; border-bottom: 0; }
  .ch-d__media { margin: 40px calc(-1 * var(--m)) 0; }
  .phases { grid-template-columns: 1fr; row-gap: 30px; }
  .ch-e__diptych { grid-template-columns: 1fr; margin: 0 calc(-1 * var(--m)); }
  .ch-e__diptych img { height: 300px; }
  .ch-e__row { display: block; margin-top: 0; }
  .chapter .ch-e__row > * { margin-top: 40px; }
  .ch-e__head { margin-top: 36px; }
  .ch-e__col1 { margin-top: 20px; }
  .closer { display: block; }
  .closer__side { margin-top: 20px; }
  .duration__text { text-align: left; }
  .duration { flex-wrap: wrap; }
  .duration__text { margin-left: 0; flex-basis: 100%; }
}

/* ---------- Praxis ---------- */

.haltung-photo { position: relative; height: clamp(520px, 58vw, 880px); overflow: hidden; background: #e6e6e3; }
.haltung-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.haltung-photo__text {
  position: absolute;
  left: var(--m);
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 40%);
}
.haltung-photo__text p { margin-top: 22px; color: var(--ink-2); max-width: 24em; }

.principles { padding: clamp(80px, 9vw, 140px) var(--m) clamp(96px, 11vw, 160px); }
.principle {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid var(--line-strong);
  align-items: baseline;
}
.principle:last-child { border-bottom: 1px solid var(--line-strong); }
.principle h3 { grid-column: 1 / 8; }
.principle p { grid-column: 8 / 12; color: var(--ink-2); }

.rooms { padding: 0 var(--m) clamp(96px, 11vw, 170px); }
.rooms__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gut); align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.rooms__head h2 { grid-column: 1 / 8; }
.rooms__head p { grid-column: 9 / 13; color: var(--ink-2); }

.room { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gut); align-items: start; }
.room + .room { margin-top: clamp(80px, 9vw, 140px); }
.room__media { position: relative; }
.room__media img { width: 100%; object-fit: cover; }
.room--train .room__media { grid-column: 1 / 8; margin-left: calc(-1 * var(--m)); }
.room--train .room__media img { aspect-ratio: 3 / 2; }
.room--train .room__text { grid-column: 9 / 13; }
.room--treat .room__text { grid-column: 1 / 5; grid-row: 1; }
.room--treat .room__media { grid-column: 6 / 13; grid-row: 1; margin-right: calc(-1 * var(--m)); }
.room--treat .room__media img { aspect-ratio: 16 / 10; }
.room--out .room__media { grid-column: 2 / 7; }
.room--out .room__media img { aspect-ratio: 2 / 3; object-position: 50% 60%; }
.room--out .room__text { grid-column: 8 / 12; align-self: end; padding-bottom: 12px; }
.room--out .room__text h3 { margin-top: 0; }
.room__text > .room__size { display: flex; align-items: baseline; gap: 10px; color: var(--ink); margin-top: 0; }
.room__size b { font-size: clamp(56px, 5.6vw, 92px); font-weight: 780; letter-spacing: -0.055em; line-height: 0.85; }
.room__size span { font-size: 17px; font-weight: 600; }
.room__text h3 { margin-top: 22px; }
.room__text > p { margin-top: 14px; color: var(--ink-2); }
.room__text .plain-list { margin-top: 22px; border-top: 1px solid var(--line-strong); }

.anfahrt { background: var(--paper-2); padding: clamp(88px, 10vw, 150px) var(--m); }
.anfahrt__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gut); align-items: end; }
.anfahrt__head h2 { grid-column: 1 / 7; }
.anfahrt__head p { grid-column: 8 / 12; color: var(--ink-2); }

.route {
  margin-top: clamp(56px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1fr;
  position: relative;
}
.route::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 7px;
  height: 3px;
  background: var(--ink);
}
.route__stop { position: relative; padding-top: 34px; padding-right: 20px; }
.route__stop::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 3px solid var(--ink);
}
.route__stop--end::before { background: var(--ink); }
.route__time { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.route__name { margin-top: 6px; font-size: clamp(21px, 1.9vw, 28px); font-weight: 680; letter-spacing: -0.025em; line-height: 1.1; }
.route__stop p { margin-top: 8px; color: var(--ink-2); font-size: 15px; line-height: 1.45; }

.anfahrt__grid { margin-top: clamp(64px, 7vw, 110px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gut); row-gap: 40px; }
.anfahrt__grid > div { grid-column: span 4; }
.anfahrt__grid .plain-list { border-top: 1px solid var(--line-strong); }

.costs { padding: clamp(96px, 11vw, 170px) var(--m); }
.costs__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gut); align-items: end; }
.costs__head h2 { grid-column: 1 / 8; }
.costs__head p { grid-column: 9 / 13; color: var(--ink-2); }
.costs__facts {
  margin-top: clamp(56px, 6vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--gut);
}
.cfact { border-top: 2px solid var(--ink); padding-top: 16px; padding-right: 24px; }
.cfact .cfact__big { font-size: clamp(40px, 4vw, 64px); font-weight: 780; letter-spacing: -0.05em; line-height: 0.95; color: var(--ink); margin: 0; }
.cfact .cfact__label { margin-top: 10px; font-weight: 650; color: var(--ink); }
.cfact p { margin-top: 8px; color: var(--ink-2); }
.cfact__price { margin-top: 14px; }
.cfact__price div { display: flex; justify-content: space-between; padding: 8px 0 9px; border-top: 1px solid var(--line); }
.cfact__price dt { color: var(--ink-2); }
.cfact__price dd { font-weight: 650; }

.faq {
  margin-top: clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
}
.faq__title { grid-column: 1 / 4; }
.faq__list { grid-column: 5 / 13; border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 640;
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ink-2); }
.faq__icon { position: relative; width: 28px; height: 28px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 7px; right: 7px; top: 13px; height: 2px; background: var(--ink);
  transition: transform 0.3s var(--ease), background-color 0.2s;
}
.faq__icon::after { transform: rotate(90deg); }
.faq summary:hover .faq__icon::before, .faq summary:hover .faq__icon::after { background: var(--signal); }
.faq details[open] .faq__icon::after { transform: rotate(0deg); }
.faq__answer { padding: 0 60px 26px 0; color: var(--ink-2); max-width: 44em; }
.faq__answer p + p { margin-top: 10px; }

@media (max-width: 900px) {
  .haltung-photo { height: auto; background: var(--paper); }
  .haltung-photo img { height: 380px; object-position: 76% 50%; }
  .haltung-photo__text { position: static; transform: none; width: auto; padding: 36px var(--m) 0; }
  .principle { display: block; }
  .principle p { margin-top: 10px; }
  .rooms__head, .anfahrt__head, .costs__head { display: block; }
  .rooms__head p, .anfahrt__head p, .costs__head p { margin-top: 16px; }
  .room { display: flex; flex-direction: column; }
  .room__media { order: -1; }
  .room__media { margin: 0 calc(-1 * var(--m)) 28px !important; }
  .room--out .room__media { margin: 0 0 28px !important; width: 72%; }
  .route { grid-template-columns: 1fr; row-gap: 26px; padding-left: 0; }
  .route::before { left: 7px; right: auto; top: 0; bottom: 0; width: 3px; height: auto; }
  .route__stop { padding: 0 0 0 40px; }
  .anfahrt__grid > div { grid-column: 1 / -1; }
  .costs__facts { grid-template-columns: 1fr; row-gap: 40px; }
  .faq { display: block; }
  .faq__list { margin-top: 28px; }
  .faq__answer { padding-right: 0; }
}

/* ---------- Termin ---------- */

.termin {
  padding: clamp(40px, 6vw, 96px) var(--m) clamp(96px, 10vw, 150px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: start;
}
.termin__aside { grid-column: 1 / 5; position: sticky; top: calc(var(--hh) + 32px); }
.termin__aside h1 { font-size: clamp(52px, 6.2vw, 100px); }
.termin__aside > p { margin-top: 22px; color: var(--ink-2); max-width: 22em; }
.bring { margin-top: 48px; }
.termin__main { grid-column: 6 / 13; }

.form-step { border: 0; margin: 0; padding: 0 0 clamp(48px, 5vw, 72px); min-width: 0; }
.form-step + .form-step { padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line-strong); }
.form-step legend {
  float: left;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.form-step__num { flex: none; width: 38px; color: var(--ink-3); font-weight: 700; }
.form-step legend + * { clear: both; }
.form-step__hint, .form-step__body { clear: both; }
.form-step legend { margin-bottom: 10px; }
.form-step__hint { padding-left: 38px; color: var(--ink-2); font-size: 15px; }
.form-step__body { padding-top: 18px; padding-left: 38px; }

.zonepick { display: grid; grid-template-columns: minmax(0, 1fr) 112px; gap: var(--gut); align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-weight: 560;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.chip span::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-3);
  transition: background-color 0.2s, border-color 0.2s;
}
.chip input:hover + span { border-color: var(--ink); }
.chip input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.chip input:checked + span::before { background: var(--signal); border-color: var(--signal); }
.chip input:focus-visible + span { outline: 2px solid var(--signal); outline-offset: 3px; }

.minifig { position: relative; width: 112px; aspect-ratio: 240 / 570; margin-bottom: 28px; }
.minifig svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.minifig .fig-outline { fill: var(--paper-2); stroke: var(--ink); stroke-width: 1.4; }
.minifig .fig-detail path { stroke: var(--ink-3); }
.minifig__pin {
  position: absolute;
  left: var(--x, 50%); top: var(--y, 46%);
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--signal);
  transition: left 0.5s var(--ease), top 0.5s var(--ease), opacity 0.3s;
}
.minifig__pin::after {
  content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1.5px solid var(--signal);
  animation: pulse 2.4s var(--ease) infinite;
}
.minifig__pin[hidden] { display: none; }
.minifig__view { position: absolute; left: 0; right: 0; bottom: -26px; text-align: center; font-size: 13px; color: var(--ink-2); font-weight: 500; }

.choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice label { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice__box {
  display: block;
  height: 100%;
  padding: 18px 20px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.choice__box strong { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 660; letter-spacing: -0.015em; }
.choice__box strong::before { content: ""; width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--ink-3); flex: none; }
.choice__box small { display: block; margin-top: 6px; padding-left: 20px; font-size: 15px; color: var(--ink-2); line-height: 1.4; }
.choice input:hover + .choice__box { border-color: var(--ink); }
.choice input:checked + .choice__box { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.choice input:checked + .choice__box small { color: var(--on-ink-2); }
.choice input:checked + .choice__box strong::before { background: var(--signal); border-color: var(--signal); }
.choice input:focus-visible + .choice__box { outline: 2px solid var(--signal); outline-offset: 3px; }
.choice-note { margin-top: 16px; font-size: 15px; color: var(--ink-2); display: grid; grid-template-columns: 18px minmax(0, 1fr); }
.choice-note::before { content: ""; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--ink); }
.choice-note[hidden] { display: none; }

/* Slotpicker */
.slots__bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.slots__nav {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.slots__nav:hover:not(:disabled) { border-color: var(--signal); color: var(--signal-deep); }
.slots__nav:disabled { opacity: 0.35; cursor: default; }
.slots__nav svg { width: 16px; height: 16px; }
.slots__range { font-weight: 650; font-size: 19px; letter-spacing: -0.015em; min-width: 11em; }
.slots__legend { margin-left: auto; display: flex; gap: 18px; font-size: 13px; color: var(--ink-2); }
.slots__legend span { display: inline-flex; align-items: center; gap: 7px; }
.slots__legend i { width: 14px; height: 14px; border-radius: 2px; display: inline-block; }
.lg-free { border: 1px solid var(--line-strong); background: var(--paper); }
.lg-busy { background: repeating-linear-gradient(135deg, rgba(20, 33, 61, 0.22) 0 1px, transparent 1px 4px); border: 1px solid transparent; }
.lg-sel { background: var(--signal-deep); }

.slots__tabs { display: none; }
.slots__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.slots__day[hidden] { display: none; }
.slots__dayhead { padding-bottom: 10px; margin-bottom: 8px; border-bottom: 2px solid var(--ink); line-height: 1.2; }
.slots__dayhead b { display: block; font-size: 15px; font-weight: 700; }
.slots__dayhead span { font-size: 13px; color: var(--ink-2); }
.slots__times { display: grid; gap: 6px; }
.slot {
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
  font-size: 15px;
  font-weight: 560;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.slot:hover:not(:disabled) { border-color: var(--ink); }
.slot[aria-pressed="true"] { background: var(--signal-deep); border-color: var(--signal-deep); color: var(--paper); }
.slot:disabled {
  cursor: not-allowed;
  color: var(--ink-3);
  border-color: transparent;
  background: repeating-linear-gradient(135deg, rgba(20, 33, 61, 0.09) 0 1px, transparent 1px 6px);
  color: rgba(20, 33, 61, 0.34);
}
.slots__picked { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; min-height: 44px; }
.slots__picked-label { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-right: 6px; }
.picked {
  display: inline-flex; align-items: center; gap: 4px;
  min-height: 40px;
  padding: 0 4px 0 14px;
  background: var(--ink); color: var(--paper);
  border-radius: 2px;
  font-size: 15px; font-weight: 560;
}
.picked button {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; color: var(--paper); cursor: pointer; border-radius: 2px;
}
.picked button:hover { color: #ffb3a5; }
.picked svg { width: 12px; height: 12px; }
.slots__msg { margin-top: 10px; font-size: 14px; color: var(--signal-deep); font-weight: 560; }
.slots__msg[hidden] { display: none; }

.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px var(--gut); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; }
.field label small { font-weight: 500; color: var(--ink-2); font-size: 14px; }
.field input, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  background: var(--paper);
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 2px 2px 0 0;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 17px;
  transition: box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input:hover, .field textarea:hover { background: #fafbfa; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--signal); box-shadow: inset 0 0 0 1px var(--ink); background: #fafbfa; }
.field.is-invalid input { border-bottom-color: var(--signal-deep); }
.field-error { font-size: 14px; color: var(--signal-deep); font-weight: 560; }
.field-error[hidden] { display: none; }
.form-step > .field-error { margin-top: 14px; padding-left: 38px; }

.consent { display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: start; gap: 8px; font-size: 15px; color: var(--ink-2); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--ink); }
.submit-row { padding-left: 38px; }
.submit-row .btn { margin-top: 28px; min-width: 260px; }
.submit-row__note { margin-top: 14px; font-size: 14px; color: var(--ink-2); }

.erfolg { grid-column: 6 / 13; }
.erfolg[hidden] { display: none; }
.erfolg:focus { outline: none; }
.erfolg__mark { width: 64px; height: 64px; }
.erfolg h2 { margin-top: 28px; font-size: clamp(38px, 4.4vw, 68px); letter-spacing: -0.04em; line-height: 0.98; }
.erfolg__lead { margin-top: 20px; max-width: 32em; color: var(--ink-2); }
.summary { margin-top: 44px; border-top: 2px solid var(--ink); }
.summary > div { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 20px; padding: 16px 0 17px; border-bottom: 1px solid var(--line); }
.summary dt { color: var(--ink-2); font-size: 15px; }
.summary dd { font-weight: 600; }
.erfolg__next { margin-top: 48px; }
.erfolg__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }

@media (max-width: 1100px) and (min-width: 901px) {
  .termin__aside { grid-column: 1 / 5; }
  .termin__main, .erfolg { grid-column: 5 / 13; }
}

@media (max-width: 900px) {
  .termin { display: block; padding-top: 32px; }
  .termin__aside { position: static; }
  .termin__aside h1 { font-size: 56px; }
  .termin__aside .bring { display: none; }
  .termin__main { margin-top: 44px; }
  .bring--mobile { display: block !important; margin-top: 64px; }
  .form-step__hint, .form-step__body, .submit-row, .form-step > .field-error { padding-left: 0; }
  .zonepick { grid-template-columns: minmax(0, 1fr) 84px; }
  .minifig { width: 84px; }
  .minifig__view { display: none; }
  .chip span { min-height: 46px; padding: 0 14px 0 12px; }
  .choice { grid-template-columns: 1fr; }
  .slots__bar { display: none; }
  .slots__tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin: 0 calc(-1 * var(--m));
    padding: 0 var(--m) 6px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--m);
    scrollbar-width: none;
  }
  .slots__tabs::-webkit-scrollbar { display: none; }
  .daytab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 68px;
    padding: 10px 0 9px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    background: var(--paper);
    text-align: center;
    line-height: 1.15;
    cursor: pointer;
  }
  .daytab b { display: block; font-size: 14px; }
  .daytab span { display: block; font-size: 17px; font-weight: 700; margin-top: 2px; }
  .daytab small { display: block; font-size: 12px; color: var(--ink-2); margin-top: 3px; }
  .daytab[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .daytab[aria-pressed="true"] small { color: var(--on-ink-2); }
  .daytab.has-pick { box-shadow: inset 0 -3px 0 var(--signal); }
  .slots__grid { grid-template-columns: 1fr; margin-top: 18px; }
  .slots__dayhead { display: none; }
  .slots__times { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slot { min-height: 48px; }
  .fields { grid-template-columns: 1fr; }
  .submit-row .btn { width: 100%; min-width: 0; }
  .erfolg { margin-top: 0; }
  .summary > div { grid-template-columns: 1fr; gap: 4px; }
}
.bring--mobile { display: none; }

/* ---------- Review-Modus (?review=1): feste Höhen, keine Bewegung ---------- */

.review *, .review *::before, .review *::after { animation: none !important; transition: none !important; }
.review [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
.review .hero__title .ln > span, .review .hero__crop img { transform: none !important; }
.review .hero__crop { clip-path: none !important; }
.review .hero .pin, .review .hero .befund { opacity: 1 !important; transform: none !important; }
.review .timebar__seg::after { transform: none !important; }
.review .site-header { position: relative; }
.review .kurve { display: none; }
.review .dock { display: none; }
.review body.has-dock { padding-bottom: 0; }
.review .focus__media, .review .termin__aside { position: relative; top: 0; max-height: none; }
.review .hero { min-height: 828px; }
.review .ch-a__media { position: relative; top: 0; }
.review .focus__media { height: 720px; aspect-ratio: auto; }
@media (max-width: 900px) {
  .review .hero { min-height: 0; }
  .review .hero__media { height: 460px; }
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js [data-reveal] { transform: none; transition: opacity 0.5s; }
  .js [data-reveal="clip"] { clip-path: none; opacity: 0; transition: opacity 0.5s; }
  .js [data-reveal="clip"].is-in { opacity: 1; }
  .js .hero__title .ln > span { transform: none; opacity: 0; transition: opacity 0.6s; }
  .js .hero.is-ready .hero__title .ln > span { opacity: 1; }
  .js .hero__crop { clip-path: none; opacity: 0; transition: opacity 0.6s; }
  .js .hero.is-ready .hero__crop { opacity: 1; }
  .js .hero__crop img { transform: none; }
  .js .hero .befund { transform: none; }
  .figure__canvas { transition: opacity 0.2s; }
  .figure__canvas.is-flipping { transform: none; opacity: 0; }
  .focus__media img, .focus__name { transition: opacity 0.3s; transform: none !important; }
  .pin__ring, .marker.is-active .marker__ring::before, .marker.is-active .marker__ring::after, .minifig__pin::after { display: none; }
}

/* Warme Fotos leicht an die kühle Serie angleichen */
.tone { filter: saturate(0.84) contrast(1.02); }
