/* ==========================================================================
   Physio- und Schmerztherapie Sabine Zeidler
   Design-System "Klinisch warm" — mobile first, self-hosted fonts,
   keine externen Requests, Light & Dark.
   ========================================================================== */

/* ---------- 0. Schriften (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Inter var';
  src: url('../fonts/inter.woff2') format('woff2-variations'),
       url('../fonts/inter.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/instrument-serif.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../fonts/instrument-serif-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: light dark;

  /* Neutrale Basis */
  --paper:      #FBFAF8;
  --paper-2:    #F3F0EB;
  --paper-3:    #E9E4DC;
  --ink:        #101010;
  --ink-2:      #3D3B39;
  --ink-3:      #6E6A66;
  --hair:       color-mix(in oklab, var(--ink) 12%, transparent);
  --hair-soft:  color-mix(in oklab, var(--ink) 7%, transparent);
  --surface:    #FFFFFF;

  /* Signal (Praxisrot) */
  --sig:        #DC2418;
  --sig-2:      #B31B11;
  --sig-tint:   #FCEEEC;
  --sig-glow:   color-mix(in oklab, var(--sig) 22%, transparent);

  /* Dunkle Flächen */
  --night:      #121110;
  --night-2:    #1C1A18;
  --on-night:   rgba(255,255,255,.72);

  /* Typografie */
  --f-sans: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --f-serif: 'Instrument Serif', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  --t-xs:   .75rem;
  --t-sm:   .875rem;
  --t-base: clamp(1rem, .965rem + .17vw, 1.0938rem);
  --t-lg:   clamp(1.0938rem, 1.02rem + .38vw, 1.3125rem);
  --t-xl:   clamp(1.25rem, 1.13rem + .6vw, 1.625rem);
  --t-h3:   clamp(1.3125rem, 1.16rem + .78vw, 1.875rem);
  --t-h2:   clamp(1.95rem, 1.4rem + 2.7vw, 3.6rem);
  --t-h1:   clamp(2.45rem, 1.55rem + 4.4vw, 5.25rem);
  --t-mega: clamp(3.2rem, 1.4rem + 8.6vw, 9rem);

  /* Raster */
  --wrap: 1240px;
  --narrow: 720px;
  --pad: clamp(1.15rem, .7rem + 2.1vw, 2.5rem);
  --gap: clamp(1rem, .75rem + 1.1vw, 1.5rem);
  --block: clamp(4rem, 2.4rem + 6.6vw, 9rem);

  /* Radien */
  --r1: 12px;
  --r2: 20px;
  --r3: 28px;
  --r4: 40px;
  --pill: 999px;

  /* Schatten */
  --sh1: 0 1px 2px rgba(16,16,16,.04), 0 6px 18px rgba(16,16,16,.05);
  --sh2: 0 2px 6px rgba(16,16,16,.05), 0 18px 44px rgba(16,16,16,.09);
  --sh3: 0 4px 12px rgba(16,16,16,.07), 0 34px 80px rgba(16,16,16,.14);

  --ease: cubic-bezier(.2, .7, .25, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:   #100F0E;
    --paper-2: #171614;
    --paper-3: #201E1C;
    --ink:     #F4F1EC;
    --ink-2:   #C4BFB8;
    --ink-3:   #8C8781;
    --hair:    rgba(255,255,255,.14);
    --hair-soft: rgba(255,255,255,.08);
    --surface: #191715;
    --sig:     #FF5546;
    --sig-2:   #FF7466;
    --sig-tint:#2A1512;
    --night:   #080807;
    --night-2: #131211;
  }
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--f-sans);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -.006em;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); letter-spacing: -.042em; }
h2 { font-size: var(--t-h2); letter-spacing: -.038em; }
h3 { font-size: var(--t-h3); letter-spacing: -.028em; line-height: 1.12; }
h4 { font-size: var(--t-xl); letter-spacing: -.024em; line-height: 1.16; }
p { text-wrap: pretty; }

/* Serif-Akzent in Überschriften */
em.acc, .acc {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--sig);
}

a { color: var(--sig); text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { color: var(--sig-2); }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--sig);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection { background: var(--sig); color: #fff; }

/* Seitenwechsel weich (moderne Browser) */
@view-transition { navigation: auto; }

/* ---------- 3. Struktur ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: var(--narrow); }
.block { padding-block: var(--block); }
.block--tight { padding-block: clamp(2.6rem, 1.8rem + 3.4vw, 5rem); }
.tint { background: var(--paper-2); }
.night { background: var(--night); color: var(--on-night); }
.night h1, .night h2, .night h3, .night h4 { color: #fff; }
.night .kicker { color: rgba(255,255,255,.5); }
.night .kicker::before { background: var(--sig); }

.skip {
  position: absolute; left: 50%; top: 0; z-index: 300;
  transform: translate(-50%, -130%);
  background: var(--ink); color: var(--paper);
  padding: .8rem 1.4rem; border-radius: 0 0 var(--r1) var(--r1);
  text-decoration: none; font-weight: 600; font-size: var(--t-sm);
}
.skip:focus { transform: translate(-50%, 0); color: var(--paper); }

.kicker {
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--sig); flex: none; }
.kicker--c { justify-content: center; }

.lede { font-size: var(--t-lg); color: var(--ink-2); line-height: 1.55; letter-spacing: -.012em; }
.night .lede { color: rgba(255,255,255,.74); }

.head { max-width: 22ch; }
.head--wide { max-width: 30ch; }
.head + .lede { margin-top: 1.2rem; max-width: 56ch; }
.sec-head { margin-bottom: clamp(2rem, 1.4rem + 2.4vw, 3.6rem); }
.center { text-align: center; margin-inline: auto; }
.center .head, .center .lede { margin-inline: auto; }

/* Feines Körnungs-Overlay für Tiefe */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 500; pointer-events: none;
  opacity: .028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) { body::after { mix-blend-mode: screen; opacity: .05; } }

/* ---------- 4. Scroll-Fortschritt ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 210;
  background: var(--sig); transform-origin: 0 50%; transform: scaleX(0);
  transition: transform .1s linear;
}
@supports (animation-timeline: scroll()) {
  .progress { animation: grow linear both; animation-timeline: scroll(root block); transition: none; }
  @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--paper); --btn-bd: transparent;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: .95rem 1.5rem; min-height: 52px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--pill);
  font-size: var(--t-sm); font-weight: 580; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }

.btn--sig { --btn-bg: var(--sig); --btn-fg: #fff; box-shadow: 0 10px 26px var(--sig-glow); }
.btn--sig:hover { --btn-bg: var(--sig-2); box-shadow: 0 16px 34px var(--sig-glow); }

.btn--ink { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn--ink:hover { --btn-bg: var(--ink-2); }

.btn--line { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--hair); }
.btn--line:hover { --btn-bg: var(--surface); --btn-bd: var(--ink); box-shadow: var(--sh1); }

.btn--onnight { --btn-bg: #fff; --btn-fg: var(--night); }
.btn--onnight-line { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.34); }
.btn--onnight-line:hover { --btn-bg: rgba(255,255,255,.1); --btn-bd: #fff; }

.btns { display: flex; flex-wrap: wrap; gap: .7rem; }
.btns--c { justify-content: center; }
@media (max-width: 400px) { .btns > .btn { width: 100%; } }

.arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--t-sm); font-weight: 580; text-decoration: none; color: var(--ink);
  transition: color .2s var(--ease), gap .25s var(--ease-out);
}
.arrow::after {
  content: ""; width: 16px; height: 16px; flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h13M13 6l6 6-6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h13M13 6l6 6-6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease-out);
}
.arrow:hover { color: var(--sig); }
.arrow:hover::after { transform: translateX(4px); }

/* ---------- 6. Kopfzeile: schwebende Glas-Leiste ---------- */
.hdr {
  position: sticky; top: 0; z-index: 200;
  padding: .7rem var(--pad) 0;
  transition: padding .3s var(--ease);
}
.hdr__in {
  display: flex; align-items: center; gap: .8rem;
  max-width: var(--wrap); margin-inline: auto;
  padding: .5rem .5rem .5rem 1rem;
  min-height: 62px;
  border: 1px solid transparent; border-radius: var(--pill);
  transition: background-color .35s var(--ease), border-color .35s var(--ease),
              box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.hdr.stuck .hdr__in {
  background: color-mix(in oklab, var(--paper) 78%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-color: var(--hair-soft);
  box-shadow: var(--sh1);
}

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.logo__mark {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  background: var(--sig); color: #fff;
  display: grid; place-items: center;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
}
.logo__txt { display: flex; flex-direction: column; line-height: 1.2; }
.logo__txt b { font-size: .97rem; font-weight: 620; letter-spacing: -.028em; color: var(--ink); }
.logo__txt i { font-style: normal; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 550; }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: .1rem; }
.nav a {
  display: block; padding: .5rem .8rem; border-radius: var(--pill);
  font-size: var(--t-sm); font-weight: 500; color: var(--ink-2); text-decoration: none;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav a:hover { background: var(--paper-3); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 620; }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; width: 14px; margin: .18rem auto 0;
  background: var(--sig); border-radius: 2px;
}
.hdr__cta { display: none; }

.burger {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  border: 1px solid var(--hair); border-radius: var(--pill);
  background: var(--surface); cursor: pointer;
}
.burger i { position: relative; display: block; width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: background-color .2s; }
.burger i::before, .burger i::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease-out), top .3s var(--ease-out);
}
.burger i::before { top: -5.5px; }
.burger i::after { top: 5.5px; }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

.sheet {
  position: fixed; inset: 0; z-index: 199;
  background: var(--paper);
  padding: 92px var(--pad) 2.5rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .35s var(--ease-out), visibility .35s;
  overflow-y: auto;
}
.sheet.open { opacity: 1; visibility: visible; transform: none; }
.sheet ul { margin-bottom: auto; }
.sheet li { border-bottom: 1px solid var(--hair-soft); }
.sheet a.sheet__link {
  display: flex; align-items: baseline; gap: .8rem; padding: 1.05rem .2rem;
  font-size: clamp(1.6rem, 1.2rem + 2.2vw, 2.4rem); font-weight: 600; letter-spacing: -.04em;
  color: var(--ink); text-decoration: none;
}
.sheet a.sheet__link span { font-size: .72rem; letter-spacing: .1em; color: var(--ink-3); font-weight: 550; }
.sheet a[aria-current="page"] { color: var(--sig); }
.sheet__foot { display: grid; gap: .7rem; margin-top: 2rem; }
.sheet__meta { margin-top: 1.4rem; font-size: var(--t-sm); color: var(--ink-3); }
body.locked { overflow: hidden; }

@media (min-width: 940px) {
  .nav, .hdr__cta { display: block; }
  .hdr__cta { display: inline-flex; }
  .burger, .sheet { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; padding-block: clamp(2rem, 1rem + 4vw, 4.5rem) 0; }
.hero::before {
  content: ""; position: absolute; inset: -20% -25% 40% -25%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(42% 46% at 76% 4%, color-mix(in oklab, var(--sig) 16%, transparent), transparent 70%),
    radial-gradient(38% 42% at 6% 22%, color-mix(in oklab, var(--sig) 8%, transparent), transparent 72%);
}

.status {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .95rem .42rem .5rem; border-radius: var(--pill);
  background: var(--surface); border: 1px solid var(--hair-soft); box-shadow: var(--sh1);
  font-size: var(--t-xs); font-weight: 560; color: var(--ink-2); letter-spacing: -.005em;
  margin-bottom: 1.5rem;
}
.status .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #23A455;
  box-shadow: 0 0 0 4px color-mix(in oklab, #23A455 22%, transparent);
}

.hero h1 { margin-bottom: 1.3rem; }
.hero .lede { max-width: 46ch; }
.hero .btns { margin-top: 2rem; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  margin-top: 1.8rem; font-size: var(--t-sm); color: var(--ink-3);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__meta svg { width: 15px; height: 15px; color: var(--sig); }

.hero__stage {
  position: relative; margin-top: clamp(2.4rem, 1.6rem + 3.4vw, 4.5rem);
  border-radius: var(--r4); overflow: hidden; box-shadow: var(--sh3);
  aspect-ratio: 16 / 11;
}
.hero__stage img { width: 100%; height: 100%; object-fit: cover; }
.hero__stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,.62) 100%);
}
.hero__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; justify-content: space-between;
  padding: clamp(1.2rem, .9rem + 1.4vw, 2.2rem);
  color: #fff;
}
.hero__cap p { font-size: var(--t-sm); max-width: 34ch; color: rgba(255,255,255,.86); }
.hero__cap strong { display: block; font-size: var(--t-xl); font-weight: 600; letter-spacing: -.03em; margin-bottom: .2rem; color: #fff; }

@media (min-width: 900px) {
  .hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: end; }
  .hero__stage { aspect-ratio: 21 / 9; }
}

/* ---------- 8. Laufband ---------- */
.ticker {
  border-block: 1px solid var(--hair-soft);
  padding-block: .95rem; overflow: hidden;
  background: var(--paper);
  --speed: 46s;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: slide var(--speed) linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker li {
  display: inline-flex; align-items: center; gap: 1.6rem; padding-inline: .8rem;
  font-size: var(--t-sm); font-weight: 520; color: var(--ink-3); white-space: nowrap;
  letter-spacing: -.005em;
}
.ticker li::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--sig); opacity: .6; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- 9. Bento-Raster ---------- */
.bento { display: grid; gap: var(--gap); }
@media (min-width: 680px)  { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .bento { grid-template-columns: repeat(6, 1fr); } }

.tile {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--hair-soft);
  border-radius: var(--r3); overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--sh2); border-color: var(--hair); }
.tile__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-3); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.tile:hover .tile__media img { transform: scale(1.045); }
.tile__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.15rem, 1rem + .6vw, 1.7rem); }
.tile a { color: inherit; text-decoration: none; }
.tile a:hover { color: var(--sig); }
.tile--sig a:hover, .tile--night a:hover, .tile--cover a:hover { color: #fff; }
.tile h3 { margin-bottom: .5rem; }
.tile p { font-size: var(--t-sm); color: var(--ink-2); }
.tile .arrow { margin-top: auto; padding-top: 1.2rem; }
.tile--link a::after { content: ""; position: absolute; inset: 0; }
.tile__num {
  font-family: var(--f-serif); font-size: .95rem; color: var(--sig);
  letter-spacing: .04em; margin-bottom: .4rem;
}

@media (min-width: 1020px) {
  .tile--w3 { grid-column: span 3; }
  .tile--w2 { grid-column: span 2; }
  .tile--w4 { grid-column: span 4; }
  .tile--w6 { grid-column: span 6; }
}

.tile--sig { background: var(--sig); border-color: transparent; color: rgba(255,255,255,.86); }
.tile--sig h3, .tile--sig .tile__num { color: #fff; }
.tile--sig p { color: rgba(255,255,255,.86); }
.tile--sig .arrow { color: #fff; }
.tile--sig .arrow:hover { color: #fff; }

.tile--night { background: var(--night); border-color: transparent; color: var(--on-night); }
.tile--night h3 { color: #fff; }
.tile--night p { color: rgba(255,255,255,.7); }
.tile--night .arrow { color: #fff; }

.tile--flat { background: transparent; border-color: var(--hair); }

/* Kachel mit großem Bild und Text darüber */
.tile--cover { min-height: 340px; justify-content: flex-end; }
.tile--cover .tile__body { flex: 0 0 auto; }
.tile--cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile--cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 22%, rgba(10,10,10,.5) 58%, rgba(10,10,10,.88) 100%);
}
.tile--cover .tile__body { position: relative; z-index: 2; }
.tile--cover h3 { color: #fff; }
.tile--cover p { color: rgba(255,255,255,.82); }
.tile--cover .arrow { color: #fff; }

/* ---------- 10. Leistungs-Zeilen (Detailseite) ---------- */
.row {
  display: grid; gap: 1.6rem;
  padding-block: clamp(2.2rem, 1.6rem + 2.4vw, 4rem);
  border-top: 1px solid var(--hair-soft);
  scroll-margin-top: 110px;
}
.row:first-of-type { border-top: 0; padding-top: 0; }
.row__media { border-radius: var(--r3); overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-3); }
.row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.row:hover .row__media img { transform: scale(1.03); }
.row__idx {
  font-family: var(--f-serif); font-size: 1rem; color: var(--sig); letter-spacing: .06em;
  display: block; margin-bottom: .5rem;
}
.row h2 { font-size: var(--t-h3); margin-bottom: .9rem; }
.row p + p { margin-top: .8rem; }
.row ul { display: grid; gap: .55rem; margin-top: 1.4rem; }
.row ul li { position: relative; padding-left: 1.5rem; font-size: var(--t-sm); }
.row ul li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--sig); opacity: .55;
}
@media (min-width: 860px) {
  .row { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: center; }
  .row--flip .row__media { order: 2; }
}

/* ---------- 11. Ablauf mit großen Ziffern ---------- */
.steps { display: grid; gap: 0; counter-reset: s; }
.steps li {
  counter-increment: s;
  display: grid; gap: .5rem 1.6rem;
  padding-block: clamp(1.6rem, 1.2rem + 1.4vw, 2.6rem);
  border-top: 1px solid var(--hair-soft);
}
.steps li::before {
  content: "0" counter(s);
  font-family: var(--f-serif); font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem);
  line-height: .9; color: var(--sig); letter-spacing: -.02em;
}
.steps h3 { margin-bottom: .4rem; }
.steps p { font-size: var(--t-sm); max-width: 52ch; }
@media (min-width: 760px) {
  .steps li { grid-template-columns: 120px 1fr; align-items: start; }
}

/* ---------- 12. Zahlen / Fakten ---------- */
.facts { display: grid; gap: 1px; background: var(--hair-soft); border-block: 1px solid var(--hair-soft); }
.facts > div { background: var(--paper); padding: clamp(1.4rem, 1.1rem + 1.2vw, 2.2rem) 0; }
.facts b {
  display: block; font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem);
  font-weight: 600; letter-spacing: -.05em; line-height: 1; color: var(--ink);
}
.facts b .u {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: .48em; color: var(--sig); letter-spacing: 0; margin-left: .12em;
}
.facts > div > span { display: block; margin-top: .6rem; font-size: var(--t-sm); color: var(--ink-3); }
@media (min-width: 620px) { .facts { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .facts > div { padding-inline: clamp(1rem, .6rem + 1.4vw, 2rem); } }
@media (min-width: 1000px) { .facts { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 13. Split ---------- */
.split { display: grid; gap: clamp(2rem, 1.4rem + 3vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--a { grid-template-columns: 5fr 7fr; }
  .split--b { grid-template-columns: 7fr 5fr; }
  .split--top { align-items: start; }
}
.split__media { position: relative; border-radius: var(--r4); overflow: hidden; box-shadow: var(--sh2); aspect-ratio: 4 / 5; background: var(--paper-3); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--wide { aspect-ratio: 3 / 2; }

.stamp {
  position: absolute; right: clamp(.9rem, .6rem + 1vw, 1.6rem); bottom: clamp(.9rem, .6rem + 1vw, 1.6rem);
  z-index: 2; background: color-mix(in oklab, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--hair-soft); border-radius: var(--r2);
  padding: .85rem 1.1rem; box-shadow: var(--sh1); max-width: 15rem;
}
.stamp b { display: block; font-size: var(--t-sm); font-weight: 620; color: var(--ink); letter-spacing: -.02em; }
.stamp span { font-size: var(--t-xs); color: var(--ink-3); }

/* Vita-Liste */
.vita { margin-top: 1.8rem; }
.vita li {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem;
  padding-block: .8rem; border-top: 1px solid var(--hair-soft); font-size: var(--t-sm);
}
.vita li:last-child { border-bottom: 1px solid var(--hair-soft); }
.vita b { font-family: var(--f-serif); font-size: 1rem; color: var(--sig); font-weight: 400; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.6rem; }
.chips li {
  padding: .45rem .9rem; border-radius: var(--pill);
  border: 1px solid var(--hair); background: var(--surface);
  font-size: var(--t-xs); font-weight: 520; color: var(--ink-2);
}

/* ---------- 14. Zitat ---------- */
.quote { max-width: 24ch; margin-inline: auto; text-align: center; }
.quote blockquote {
  font-family: var(--f-serif); font-weight: 400; font-style: normal;
  font-size: clamp(1.9rem, 1.2rem + 3.4vw, 4rem); line-height: 1.08;
  letter-spacing: -.03em; color: #fff;
}
.quote blockquote i { color: var(--sig); }
.quote figcaption {
  margin-top: 1.8rem; font-size: var(--t-xs); letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 560;
}

/* ---------- 14b. Patientenstimmen ---------- */
.voice { }
.voice .tile__body { gap: 0; }
.voice__mark {
  display: block; font-family: var(--f-serif); font-size: 2.6rem; line-height: .55;
  color: var(--sig); opacity: .55; margin-bottom: .9rem;
}
.voice blockquote {
  font-size: var(--t-lg); line-height: 1.44; letter-spacing: -.02em;
  color: var(--ink); font-weight: 450;
}
.voice--sm blockquote { font-size: var(--t-base); line-height: 1.55; letter-spacing: -.012em; }
.voice figcaption {
  margin-top: auto; padding-top: 1.5rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: var(--t-xs); color: var(--ink-3);
}
.voice figcaption b { display: block; color: var(--ink); font-weight: 620; font-size: var(--t-sm); letter-spacing: -.015em; }
.voice__av {
  width: 36px; height: 36px; flex: none; border-radius: 50%;
  background: var(--sig-tint); color: var(--sig);
  display: grid; place-items: center; font-size: .74rem; font-weight: 700; letter-spacing: .02em;
}
.tile--night .voice__av { background: rgba(255,255,255,.12); color: #fff; }
.tile--night blockquote, .tile--night figcaption b { color: #fff; }
.tile--night figcaption { color: rgba(255,255,255,.6); }

/* ---------- 15. FAQ ---------- */
.faq { border-top: 1px solid var(--hair-soft); max-width: 60rem; }
.faq details { border-bottom: 1px solid var(--hair-soft); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.4rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-size: var(--t-xl); font-weight: 580; letter-spacing: -.028em; color: var(--ink);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sig); }
.faq summary::after {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: .18rem;
  border: 1px solid var(--hair); border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center/9px 1.4px no-repeat,
    linear-gradient(currentColor, currentColor) center/1.4px 9px no-repeat;
  transition: transform .35s var(--ease-out), border-color .2s;
}
.faq details[open] summary::after { transform: rotate(135deg); border-color: var(--sig); }
.faq details[open] summary { color: var(--sig); }
.faq__a { padding-bottom: 1.5rem; max-width: 62ch; font-size: var(--t-sm); }
.faq__a p + p { margin-top: .8rem; }

/* ---------- 16. Formular & Kontakt ---------- */
.cols { display: grid; gap: clamp(1.6rem, 1.2rem + 2vw, 3rem); }
@media (min-width: 940px) { .cols { grid-template-columns: 1fr 1.08fr; align-items: start; } }

.panel {
  background: var(--surface); border: 1px solid var(--hair-soft);
  border-radius: var(--r3); padding: clamp(1.3rem, 1rem + 1.4vw, 2.2rem);
}
.panel--sig { background: var(--sig); border-color: transparent; color: rgba(255,255,255,.88); }
.panel--sig h2, .panel--sig h3, .panel--sig dt { color: #fff; }

.dl { display: grid; gap: 1.3rem; }
.dl__row { display: flex; gap: .9rem; align-items: flex-start; }
.dl__row > svg { width: 20px; height: 20px; flex: none; margin-top: .28rem; color: var(--sig); }
.dl dt { font-size: var(--t-xs); letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 620; }
.dl dd { font-size: var(--t-base); color: var(--ink); margin-top: .12rem; }
.dl dd a { color: var(--ink); text-decoration: none; font-weight: 560; border-bottom: 1px solid var(--sig); }
.dl dd a:hover { color: var(--sig); }
.dl small { display: block; font-size: var(--t-xs); color: var(--ink-3); margin-top: .25rem; }

.hours { width: 100%; border-collapse: collapse; margin-top: .5rem; font-size: var(--t-sm); }
.hours th, .hours td { padding: .5rem 0; border-bottom: 1px solid var(--hair-soft); text-align: left; font-weight: 400; }
.hours th { color: var(--ink); font-weight: 520; }
.hours td { text-align: right; color: var(--ink-3); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .on td { color: var(--sig); font-weight: 560; }

.form { display: grid; gap: 1rem; }
.f { display: grid; gap: .35rem; }
.f label { font-size: var(--t-sm); font-weight: 550; color: var(--ink); }
.f .req { color: var(--sig); }
.f input, .f select, .f textarea {
  width: 100%; padding: .85rem 1rem; min-height: 52px;
  background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r1);
  color: var(--ink); font-size: var(--t-base);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.f textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; background: var(--surface); border-color: var(--sig);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--sig) 16%, transparent);
}
.f2 { display: grid; gap: 1rem; }
@media (min-width: 560px) { .f2 { grid-template-columns: 1fr 1fr; } }

.check { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: var(--t-xs); color: var(--ink-3); }
.check input { width: 20px; height: 20px; min-height: 0; accent-color: var(--sig); margin-top: .1rem; }
.hint { font-size: var(--t-xs); color: var(--ink-3); }
.note-ok { font-size: var(--t-sm); padding: .85rem 1rem; border-radius: var(--r1); background: var(--sig-tint); color: var(--sig-2); border: 1px solid color-mix(in oklab, var(--sig) 25%, transparent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.map { border-radius: var(--r3); overflow: hidden; border: 1px solid var(--hair-soft); background: var(--paper-2); }
.map iframe { display: block; width: 100%; height: 380px; border: 0; }
.map__ask { display: grid; place-items: center; gap: .9rem; text-align: center; padding: 3rem 1.4rem; }
.map__ask p { font-size: var(--t-sm); max-width: 38ch; }

/* ---------- 17. Hinweis-Block ---------- */
.note {
  border: 1px solid var(--hair); border-left: 3px solid var(--sig);
  background: var(--surface); border-radius: 0 var(--r2) var(--r2) 0;
  padding: 1.1rem 1.3rem; font-size: var(--t-sm); margin: 1.6rem 0;
}
.note strong { color: var(--ink); }

/* ---------- 18. CTA-Band ---------- */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: auto -20% -70% -20%; height: 130%;
  background: radial-gradient(42% 60% at 50% 100%, color-mix(in oklab, var(--sig) 34%, transparent), transparent 72%);
}
.cta__in { position: relative; text-align: center; max-width: 40rem; margin-inline: auto; }
.cta h2 { margin-bottom: 1rem; }
.cta p { margin-bottom: 2.2rem; font-size: var(--t-lg); color: rgba(255,255,255,.76); }

/* ---------- 19. Fuß ---------- */
.ftr { background: var(--night); color: rgba(255,255,255,.6); padding-block: clamp(3rem, 2.2rem + 3vw, 5rem) 2rem; font-size: var(--t-sm); }
.ftr__word {
  font-size: var(--t-mega); font-weight: 600; letter-spacing: -.055em; line-height: .88;
  color: #fff; margin-bottom: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
}
.ftr__word i { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--sig); }
.ftr__grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 2.6rem; } }
.ftr h3 { font-size: var(--t-xs); letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.42); font-weight: 620; margin-bottom: 1rem; }
.ftr a { color: rgba(255,255,255,.72); text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr ul { display: grid; gap: .55rem; }
.ftr__legal {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: var(--t-xs); color: rgba(255,255,255,.42);
}
.ftr__legal nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.ftr__note { margin-top: 1.2rem; font-size: var(--t-xs); color: rgba(255,255,255,.38); max-width: 68ch; }

/* ---------- 20. Mobile Aktionsleiste ---------- */
.dock {
  position: fixed; left: 50%; bottom: max(.85rem, env(safe-area-inset-bottom)); z-index: 190;
  transform: translate(-50%, 150%);
  display: grid; grid-auto-flow: column; align-items: stretch;
  background: color-mix(in oklab, var(--night) 92%, transparent);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--pill);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  padding: .35rem; gap: .2rem;
  transition: transform .45s var(--ease-out);
}
.dock.show { transform: translate(-50%, 0); }
.dock a {
  display: flex; align-items: center; gap: .45rem; padding: .68rem 1rem;
  border-radius: var(--pill); text-decoration: none;
  font-size: .78rem; font-weight: 560; color: rgba(255,255,255,.82); white-space: nowrap;
}
.dock a svg { width: 17px; height: 17px; }
.dock a.main { background: var(--sig); color: #fff; }
@media (min-width: 940px) { .dock { display: none; } }
@media (max-width: 939px) { body { padding-bottom: 84px; } }

/* ---------- 21. Seitenkopf (Unterseiten) ---------- */
.phead { padding-block: clamp(2rem, 1.4rem + 3vw, 4.5rem) clamp(1.6rem, 1.2rem + 2vw, 3rem); }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--t-xs); color: var(--ink-3); margin-bottom: 1.4rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--sig); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .45; }
.phead .lede { margin-top: 1.2rem; max-width: 58ch; }

/* ---------- 22. Lauftext (Recht) ---------- */
.prose { max-width: 70ch; }
.prose h2 { font-size: var(--t-h3); margin: 2.6rem 0 .9rem; }
.prose h3 { font-size: var(--t-xl); margin: 1.9rem 0 .6rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; font-size: var(--t-sm); }
.prose ul { list-style: disc; padding-left: 1.25rem; }
.prose li { margin-bottom: .35rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { word-break: break-word; }
.prose > *:first-child { margin-top: 0; }

/* ---------- 23. Auftritts-Animation ---------- */
/* Ohne JavaScript bleibt alles sichtbar: die Animation haengt an .js am <html>. */
.js .up { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.js .up.in { opacity: 1; transform: none; }
.js .up:nth-child(2) { transition-delay: .06s; }
.js .up:nth-child(3) { transition-delay: .12s; }
.js .up:nth-child(4) { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .js .up { opacity: 1; transform: none; } }

/* ---------- 23b. Weichzeichner-Auftakt ----------
   Die Seite kommt aus der Unschaerfe. Haengt an .js am <html>, damit ohne
   JavaScript alles sofort scharf und sichtbar ist. */
@keyframes unblur {
  from { opacity: 0; filter: blur(16px); transform: translateY(16px); }
  55%  { opacity: 1; }
  to   { opacity: 1; filter: blur(0); transform: none; }
}
@keyframes unblur-media {
  from { opacity: 0; filter: blur(26px) saturate(.6); transform: scale(1.045); }
  50%  { opacity: 1; }
  to   { opacity: 1; filter: blur(0) saturate(1); transform: none; }
}

.js .hero .status,
.js .hero h1,
.js .hero .lede,
.js .hero .btns,
.js .hero__meta,
.js .phead .crumbs,
.js .phead h1,
.js .phead .lede,
.js .phead .status,
.js .phead .btns {
  animation: unblur .85s var(--ease-out) both;
  will-change: filter, opacity, transform;
}
.js .hero .status,  .js .phead .crumbs { animation-delay: .04s; }
.js .hero h1,       .js .phead h1      { animation-delay: .13s; }
.js .hero .lede,    .js .phead .lede   { animation-delay: .24s; }
.js .hero .btns,    .js .phead .btns,
.js .phead .status                     { animation-delay: .34s; }
.js .hero__meta                        { animation-delay: .42s; }

.js .hero__stage {
  animation: unblur-media 1.15s var(--ease-out) both;
  animation-delay: .3s;
  will-change: filter, opacity, transform;
}

/* Sicherheitsnetz: 1,8 s nach dem Laden wird der Auftakt abgeraeumt.
   Ohne Animation ist der natuerliche Zustand scharf und sichtbar — falls die
   Animation in irgendeinem Browser nie startet, bleibt nichts unsichtbar.
   Beide Klassen sitzen am <html>, deshalb ohne Leerzeichen notiert. */
.js.intro-fertig .hero .status,
.js.intro-fertig .hero h1,
.js.intro-fertig .hero .lede,
.js.intro-fertig .hero .btns,
.js.intro-fertig .hero__meta,
.js.intro-fertig .hero__stage,
.js.intro-fertig .phead .crumbs,
.js.intro-fertig .phead h1,
.js.intro-fertig .phead .lede,
.js.intro-fertig .phead .status,
.js.intro-fertig .phead .btns {
  animation: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js .hero .status, .js .hero h1, .js .hero .lede, .js .hero .btns,
  .js .hero__meta, .js .hero__stage, .js .phead .crumbs, .js .phead h1,
  .js .phead .lede, .js .phead .status, .js .phead .btns {
    animation: none; will-change: auto;
  }
}

/* ---------- 23c. Datenschutz-Sperre ----------
   Blockierende Bestaetigung: die Seite ist erst nach Klick nutzbar.
   Wird per JavaScript eingeblendet; ohne JavaScript bleibt die Seite offen. */
.gate {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  padding: var(--pad);
  background: color-mix(in oklab, var(--night) 74%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  overscroll-behavior: contain;
}
.gate[hidden] { display: none; }
.gate.zeigen { opacity: 1; }

.gate__card {
  width: min(34rem, 100%);
  max-height: calc(100dvh - 2 * var(--pad));
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r3);
  box-shadow: var(--sh3);
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  transform: translateY(16px) scale(.985);
  transition: transform .5s var(--ease-out);
}
.gate.zeigen .gate__card { transform: none; }

.gate__kicker {
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--t-xs); font-weight: 620; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem;
}
.gate__kicker::before { content: ""; width: 20px; height: 1px; background: var(--sig); flex: none; }

.gate__card h2 { font-size: var(--t-h3); margin-bottom: 1rem; }
.gate__card p { font-size: var(--t-sm); line-height: 1.6; }
.gate__card p + p { margin-top: .8rem; }
.gate__card strong { color: var(--ink); font-weight: 620; }
.gate__list { display: grid; gap: .5rem; margin: 1.1rem 0; }
.gate__list li {
  position: relative; padding-left: 1.6rem;
  font-size: var(--t-sm); color: var(--ink-2);
}
.gate__list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--sig);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m4 12 6 6L20 6' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m4 12 6 6L20 6' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gate__ok { width: 100%; margin-top: 1.4rem; }

.gate__call {
  margin-top: 1.3rem; padding-top: 1.2rem;
  border-top: 1px solid var(--hair-soft);
  font-size: var(--t-sm); color: var(--ink-3);
}
.gate__call a {
  color: var(--ink); font-weight: 620; text-decoration: none;
  border-bottom: 1px solid var(--sig); white-space: nowrap;
}
.gate__call a:hover { color: var(--sig); }

.gate__legal { margin-top: .9rem; font-size: var(--t-xs); color: var(--ink-3); }
.gate__legal a { color: var(--ink-3); text-decoration: underline; text-underline-offset: .2em; }
.gate__legal a:hover { color: var(--sig); }

@media (prefers-reduced-motion: reduce) {
  .gate, .gate__card { transition: none; }
}

/* ---------- 24. Bild-Platzhalter (falls Datei fehlt) ---------- */
.ph { position: relative; background: linear-gradient(140deg, var(--paper-3), var(--sig-tint)); }
.ph::after {
  content: attr(data-ph); position: absolute; inset: 0; display: grid; place-content: center;
  text-align: center; padding: 1.4rem; font-size: var(--t-xs); font-weight: 620;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); opacity: 0;
}
.ph:has(img[data-broken])::after { opacity: 1; }
img[data-broken] { opacity: 0; }

/* ---------- 25. Druck ---------- */
@media print {
  .hdr, .dock, .cta, .sheet, .btn, .ticker, .progress, body::after { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .split__media, .tile__media, .row__media { display: none; }
}
