/* ============================================================
   Privatpraxis für Prävention · v2 — Cinematic Premium Edition
   Fonts: Inter (self-hosted, alle Gewichte)
   System: 6 Farben — Oliv / Creme / Maroon / Ink / Muted / Paper
   Dark/Light · Glassmorphism · Canvas · Parallax
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --font-head: 'Inter', system-ui, sans-serif;
  --olive: #a0a352;
  --olive-hi: #b8bb6e;
  --olive-deep: #6b6e33;
  --cream: #f8fac6;
  --paper: #fffdf3;
  --maroon: #89304c;
  --ink: #26281a;  /* ungenutzt-Legacy (Kontrast-Referenz) */
  --heading: #6b6e33;  /* Ueberschriften: dunkles Weyenberg-Gruen */
  --muted: #6f7261;
  --white: #ffffff;
  --bg: var(--paper);
  --bg-2: #ffffff;
  --bg-3: var(--cream);
  --fg: var(--olive);
  --fg-muted: var(--muted);
  --line: rgba(38, 40, 26, .13);
  --glass: rgba(255, 255, 255, .55);
  --glass-brd: rgba(255, 255, 255, .65);
  --shadow: 0 14px 44px rgba(38, 40, 26, .10);
  --shadow-lg: 0 24px 70px rgba(38, 40, 26, .16);
  --radius: 20px;
  --wrap: 1180px;
  --grad: linear-gradient(115deg, #a0a352 0%, #a0a352 100%);
  --grad-soft: linear-gradient(135deg, rgba(160,163,82,.12), rgba(160,163,82,.06));
  color-scheme: light;
}
[data-theme="dark"] {
  --bg: #14160e;
  --bg-2: #1b1e13;
  --bg-3: #202415;
  --fg: #d6d9a8;
  --fg-muted: #b3b6a4;
  --heading: var(--olive-hi);
  --line: rgba(242, 243, 232, .14);
  --glass: rgba(27, 30, 19, .55);
  --glass-brd: rgba(242, 243, 232, .14);
  --shadow: 0 14px 44px rgba(0, 0, 0, .4);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .55);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--olive); color: #fff; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.15; margin: 0 0 .55em; letter-spacing: -.01em; color: var(--heading); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }
a { color: var(--olive-deep); text-decoration: none; }
[data-theme="dark"] a { color: var(--olive-hi); }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.note { font-size: .88rem; color: var(--fg-muted); }
.ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--olive);
  border-radius: 8px; border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--olive-deep); }
html { scrollbar-width: thin; scrollbar-color: var(--olive) var(--bg); }

/* ---------- Typo helpers ---------- */
.serif { font-family: 'Inter', system-ui, sans-serif; letter-spacing: -.01em; }
.eyebrow {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--olive-deep); margin-bottom: .8em; font-weight: 600;
}
[data-theme="dark"] .eyebrow { color: var(--olive-hi); }
.sec-title { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; }
.sec-title em {
  font-style: italic;
  color: var(--olive);
  padding-right: .08em;
}
.sec-head { max-width: 720px; margin: 0 auto 3rem; }
.sec-head.split {
  max-width: none; display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: end;
}
.sec-sub { color: var(--fg-muted); margin: 0; font-size: 1.02rem; }
.grad-text {
  background: var(--grad); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-logo { width: 90px; height: auto; margin: 0 auto 18px; animation: preFloat 2s ease-in-out infinite; }
@keyframes preFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.pre-bar { width: 160px; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.pre-bar span {
  display: block; height: 100%; width: 40%; background: var(--grad);
  border-radius: 3px; animation: preBar 1.1s ease-in-out infinite;
}
@keyframes preBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(420%); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 210;
  background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: var(--grad); border-radius: 0 3px 3px 0;
}

/* ---------- Skip / a11y ---------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 300; }
.skip:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background-color .25s ease, color .25s;
  will-change: transform;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--olive);
  color: #fff; box-shadow: 0 8px 26px rgba(160,163,82,.4);
}
.btn-primary:hover { box-shadow: 0 12px 34px rgba(160,163,82,.55); }
/* Floating + pulsing CTA (hero) — translate-Property komponiert mit Hover-transform */
@keyframes cta-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(160,163,82,.4); }
  50% { box-shadow: 0 15px 40px rgba(160,163,82,.62); }
}
.cta-float { animation: cta-float 3.6s ease-in-out infinite, cta-pulse 3.6s ease-in-out infinite; }
.btn-glass {
  background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-color: var(--glass-brd); color: var(--fg);
}
.btn-glass:hover { background: rgba(255,255,255,.75); }
[data-theme="dark"] .btn-glass:hover { background: rgba(27,30,19,.8); }
.btn-ghost { border-color: var(--olive); color: var(--olive-deep); background: transparent; }
[data-theme="dark"] .btn-ghost { color: var(--olive-hi); }
.btn-ghost:hover { background: rgba(160,163,82,.12); }
.magnetic { position: relative; }
.linklike {
  background: none; border: none; padding: 0; font: inherit; color: inherit;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- Glassmorphism helpers ---------- */
.glass-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd);
  border-radius: 999px; padding: 8px 16px; font-size: .84rem;
}
.glass-chip .ico { width: 17px; height: 17px; color: var(--olive-deep); }
[data-theme="dark"] .glass-chip .ico { color: var(--olive-hi); }
.glass-card {
  background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-brd); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--olive);
  box-shadow: 0 4px 30px rgba(38,40,26,.18);
}
[data-theme="dark"] .site-header { background: #6f7238; }
.site-header .brand, .site-header .site-nav a, .site-header .brand-txt span { color: #fff; }
.site-header .brand-txt small { color: #fff; }
.site-header .site-nav a:hover { color: var(--creme); }
.site-header .tool-btn { color: #fff; border-color: rgba(255,255,255,.4); }
.site-header .burger span { background: #fff; }
.site-header.scrolled {
  background: var(--olive);
  box-shadow: 0 4px 30px rgba(38,40,26,.18);
  border-bottom: 0;
}
[data-theme="dark"] .site-header.scrolled { background: #6f7238; }
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--fg); }
.brand:hover { text-decoration: none; }
.brand-logo { width: 46px; height: auto; filter: drop-shadow(0 2px 8px rgba(38,40,26,.15)); }
.brand-txt { display: flex; flex-direction: column; line-height: 1.2; }
.brand-txt strong { font-weight: 500; font-size: 1rem; }
.brand-txt small { color: var(--fg-muted); font-size: .74rem; letter-spacing: .05em; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 14px; border-radius: 10px; color: var(--fg); font-size: .92rem; font-weight: 500;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { text-decoration: none; }
.nav-tools { display: flex; align-items: center; gap: 8px; margin-left: 14px; }
.tool-btn {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: transparent; color: var(--fg); cursor: pointer;
  transition: background-color .2s, border-color .2s, transform .2s;
}
.tool-btn:hover { background: rgba(160,163,82,.14); border-color: var(--olive); transform: translateY(-1px); }
.tool-btn .ico { width: 17px; height: 17px; }
.lang-btn span { font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
[data-theme="dark"] .icon-sun { display: block; } [data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; } [data-theme="light"] .icon-moon { display: block; }
.tool-btn { margin-left: 4px; }

/* Burger */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; z-index: 220; }
.burger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: transform .3s ease, opacity .3s ease, background-color .3s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Offenes Menue: Panel (creme) schiebt sich unter den Burger —
   Striche muessen von Weiss auf Dunkel kippen, sonst unsichtbar */
.site-header .burger[aria-expanded="true"] span { background: var(--fg); }

/* ---------- Search ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 500; background: rgba(20,22,14,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; padding: 12vh 24px 40px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-close {
  position: absolute; top: 24px; right: 28px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.1);
  color: #fff; font-size: 1.4rem; cursor: pointer;
}
.search-box {
  display: flex; align-items: center; gap: 14px; width: min(640px, 100%);
  background: rgba(255,253,243,.97); border-radius: 18px; padding: 18px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.search-box .ico { color: var(--olive-deep); width: 24px; height: 24px; }
.search-box input {
  flex: 1; border: none; outline: none; font: inherit; font-size: 1.05rem;
  background: transparent; color: var(--ink);
}
.search-results { width: min(640px, 100%); margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.search-result {
  background: rgba(255,253,243,.95); border-radius: 12px; padding: 13px 18px;
  color: var(--ink); display: block; transition: transform .15s ease;
}
.search-result:hover { transform: translateX(6px); text-decoration: none; }
.search-result strong { display: block; font-size: .98rem; }
.search-result small { color: var(--muted); }

/* ---------- HERO ---------- */
.hero2 {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 0; overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  pointer-events: none;
}

.hero2-grid {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: clamp(36px, 6vw, 80px); align-items: center;
  padding-bottom: 56px;
}
.hero-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .92rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 700;
  color: var(--olive-deep); margin-bottom: 1.1em;
}
[data-theme="dark"] .hero-name { color: var(--olive-hi); }
.hero-title { margin-bottom: .35em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > * { display: inline-block; }
.hero-title .line { animation: none; }
.hero-title .line:nth-child(1) { animation: lineUp .9s cubic-bezier(.22,1,.36,1) .15s both; }
.hero-title .line:nth-child(2) { animation: lineUp .9s cubic-bezier(.22,1,.36,1) .3s both; }
@keyframes lineUp { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-typed { min-height: 1.8em; font-size: 1.06rem; color: var(--fg-muted); margin-bottom: 1.1em; }
.hero-lead { font-size: 1.06rem; max-width: 34em; margin-bottom: 1.7em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.9em; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.hero2-fig { margin: 0; perspective: 1000px; }
.hero2-fig > img {
  display: block; width: 100%; aspect-ratio: 684/841; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(38,40,26,.22));
  transform-style: preserve-3d; transition: transform .3s ease;
}
.hero2-fig figcaption { margin-top: 16px; }
.hero2-fig figcaption strong { display: block; font-size: .98rem; }
.hero2-fig figcaption span { font-size: .82rem; color: var(--fg-muted); }

/* ---------- Marquee ---------- */
.hero-bio { margin-top: 18px; max-width: 46ch; }
.hero-bio p { font-size: .92rem; color: var(--fg-muted); line-height: 1.65; }
.bio-toggle {
  background: none; border: none; cursor: pointer; padding: 4px 0; margin-top: 2px;
  font: inherit; font-size: .85rem; font-weight: 700; color: var(--olive-deep);
  border-bottom: 1.5px solid currentColor;
}
.bio-toggle:hover { color: var(--fg); }
.hero2 > .wrap { width: 100%; }
.info-band-outer {
  width: 100%; background: var(--olive);
}
[data-theme="dark"] .info-band-outer { background: #6f7238; }
.info-band {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
  margin-top: 0;
}
.info-band .info-tile + .info-tile { border-left: 1px solid rgba(255,255,255,.28); }
.hours-lines { display: flex; flex-direction: column; gap: 4px; }
.hours-lines em { font-style: italic; opacity: .92; margin-top: 2px; }
.tile-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tile-contact a, .tile-contact span { display: flex; align-items: flex-start; gap: 10px; color: inherit; text-decoration: none; line-height: 1.45; }
.tile-contact a:hover { text-decoration: underline; }
.tile-contact .ico { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; }
.mini-form { display: flex; flex-direction: column; gap: 10px; }
.mini-form .mf-row { display: flex; gap: 10px; }
.mini-form .mf-row input { flex: 1; min-width: 0; }
.mini-form input[color] { color-scheme: dark; }
.mini-form input[type="date"], .mini-form input[type="time"] { min-height: 40px; }
.mini-form input {
  width: 100%; padding: 10px 12px; border: 0; border-bottom: 1.5px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16); color: #fff; border-radius: 8px 8px 0 0; font: inherit;
}
.mini-form input::placeholder { color: rgba(255,255,255,.75); }
.mini-form input:focus { outline: none; background: rgba(255,255,255,.24); border-bottom-color: #fff; }
.mini-form select {
  width: 100%; padding: 10px 12px; border: 0; border-bottom: 1.5px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16); color: #fff; border-radius: 8px 8px 0 0; font: inherit; cursor: pointer;
}
.mini-form select option { color: var(--fg, #2c2c28); background: #fff; }
.mini-form select:focus { outline: none; background: rgba(255,255,255,.24); border-bottom-color: #fff; }
.mini-form .btn-cta { margin-top: 4px; }
.mf-status { font-size: .85rem; margin: 0; color: #fff; }
.mf-status.ok { color: var(--creme, #f8fac6); }
.mf-status.err { color: #ffb4c4; }
.info-tile {
  background: transparent; color: #fff; padding: 30px 34px;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.info-tile.info-tile h3 {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.15rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; opacity: .96; margin: 0 0 2px;
}
.info-tile p { font-size: 1.02rem; line-height: 1.6; font-weight: 500; }
.info-tile .btn-cta {
  background: #fff; color: var(--maroon); padding: 11px 22px; border-radius: 999px;
  font-weight: 700; font-size: .92rem;
}
.info-tile .btn-cta:hover { background: var(--creme); }
.tile-phone {
  color: #fff; font-weight: 600; font-size: .98rem; display: inline-flex; align-items: center; gap: 8px;
}
.tile-phone .ico { width: 17px; height: 17px; }
.tile-phone:hover { text-decoration: underline; }
[data-theme="dark"] .info-tile { background: #6f7238; }
[data-theme="dark"] .info-tile .btn-cta { color: var(--maroon); }
@media (max-width: 720px) {
  .info-band { grid-template-columns: 1fr; } .info-band .info-tile + .info-tile { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }
  .info-tile { padding: 24px 26px; }
}

.marquee-clip { overflow: hidden; margin: 0; clip-path: inset(-1px -1px); position: relative; z-index: 150; }
.marquee-clip.docked { position: fixed; top: var(--header-h, 78px); left: 0; right: 0; z-index: 150; box-shadow: 0 6px 24px rgba(38,40,26,.22); pointer-events: none; }
body.marquee-placeholder { }
.marquee {
  background: var(--maroon); color: #fff; overflow: hidden; padding: 14px 0;
}
[data-theme="dark"] .marquee { background: #6d263c; }
.marquee-track {
  display: flex; align-items: center; gap: 34px; white-space: nowrap;
  animation: marquee 30s linear infinite; width: max-content;
}
.marquee-track span { font-family: 'Inter', system-ui, sans-serif; font-style: italic; font-size: 1.05rem; letter-spacing: .04em; }
.marquee-track i { color: var(--creme); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding: clamp(56px, 8vw, 96px) 0 30px; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat-num {
  font-family: 'Inter', system-ui, sans-serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1;
}
.stat-label { display: block; font-weight: 600; margin-top: 10px; }
.stat-sub { display: block; font-size: .82rem; color: var(--fg-muted); margin-top: 4px; }

/* ---------- Sections generic ---------- */
.praxis, .services2, .process, .journeys, .symptoms, .about2, .gallery2, .blog2, .values2, .faq2, .contact2 {
  padding: clamp(64px, 9vw, 120px) 0;
}
.alt-bg { background: var(--bg-2); }

/* ---------- Praxis ---------- */
.praxis-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); gap: clamp(32px, 5vw, 64px); }
.check-list { list-style: none; padding: 0; margin: 1.4em 0 0; }
.check-list li {
  padding: 12px 0 12px 38px; position: relative; border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  width: 24px; height: 24px; border-radius: 50%; background: var(--grad);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}
.p-side { display: flex; flex-direction: column; gap: 22px; }
.img-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-card img { width: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.img-card:hover img { transform: scale(1.05); }
.team-mini .tm-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
}
.team-mini .tm-row:last-child { border-bottom: none; }
.team-mini .tm-row small { color: var(--fg-muted); }

/* ---------- Services (filterbar) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; color: var(--fg); font: inherit; font-weight: 500; font-size: .92rem;
  cursor: pointer; transition: all .22s ease;
}
.filter-btn:hover { border-color: var(--olive); color: var(--olive-deep); }
[data-theme="dark"] .filter-btn:hover { color: var(--olive-hi); }
.filter-btn.active {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 6px 20px rgba(160,163,82,.35);
}
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.svc-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, opacity .3s ease;
}
/* kachel ist jetzt ein link */
a.svc-card { display: block; color: inherit; }
a.svc-card:hover, a.svc-card:focus-visible { text-decoration: none; }
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0; transition: opacity .3s ease;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(160,163,82,.5); }
.svc-card:hover::before { opacity: 1; }
.svc-card.hidden-f { display: none; }
.svc-card.fade-in { animation: cardIn .45s cubic-bezier(.22,1,.36,1) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
.svc-media { margin: -30px -28px 20px; aspect-ratio: 4/3; overflow: hidden; background: var(--creme); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.has-img .svc-ico {
  position: absolute; top: 12px; left: 12px; margin: 0;
  background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.svc-strip { margin: -8px 0 14px; height: 44px; overflow: hidden; border-radius: 8px; opacity: .85; }
.svc-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; margin-bottom: 18px; position: relative; z-index: 1;
  box-shadow: 0 8px 22px rgba(160,163,82,.35);
}
.svc-ico .ico { width: 26px; height: 26px; }
.svc-card h3 { position: relative; z-index: 1; }
.svc-card p { color: var(--fg-muted); font-size: .95rem; position: relative; z-index: 1; }
.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; position: relative; z-index: 1; }
.svc-tags span {
  font-size: .74rem; padding: 4px 12px; border-radius: 999px;
  background: rgba(160,163,82,.14); color: var(--olive-deep); font-weight: 600;
}
[data-theme="dark"] .svc-tags span { color: var(--olive-hi); }
/* weiterlesen-affordance am kartenende */
.svc-more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--line);
  width: 100%;
  font-size: .86rem; font-weight: 600; letter-spacing: .02em;
  color: var(--olive-deep);
  position: relative; z-index: 1;
  transition: color .25s ease;
}
.svc-more .arr { transition: transform .25s ease; font-size: .95em; line-height: 1; }
a.svc-card:hover .svc-more, a.svc-card:focus-visible .svc-more { color: var(--olive-deep); }
a.svc-card:hover .svc-more .arr, a.svc-card:focus-visible .svc-more .arr { transform: translateX(5px); }
[data-theme="dark"] .svc-more { color: var(--olive-hi); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding: 10px 0; }
.tl-line {
  position: absolute; left: 27px; top: 0; bottom: 0; width: 2.5px;
  background: var(--line); border-radius: 3px; overflow: hidden;
}
.tl-line span { display: block; width: 100%; height: 0; background: var(--grad); transition: height .2s linear; }
.tl-item { position: relative; padding-left: 78px; margin-bottom: 34px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--fg);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.tl-item.lit .tl-dot {
  border-color: var(--olive); box-shadow: 0 0 0 7px rgba(160,163,82,.18); transform: scale(1.06);
}
.tl-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.tl-card:hover { transform: translateX(6px); }
.tl-card p { margin: 0; color: var(--fg-muted); }

/* ---------- Journeys ---------- */
.journeys { background: var(--bg-2); }
/* ---- Patientenwege-Carousel ---- */
.j-carousel { position: relative; margin: 30px 0 10px; }
.jc-viewport { overflow: hidden; }
.jc-slide { display: none; }
.jc-slide.active { display: block; animation: jcIn .55s cubic-bezier(.22,1,.36,1) both; }
@keyframes jcIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.jc-prev, .jc-next {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.72); color: var(--olive-deep, #7a7d3f);
  border: 1px solid var(--line); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  z-index: 3; backdrop-filter: blur(4px);
  flex: 0 0 auto;
}
.jc-prev:hover, .jc-next:hover { background: var(--olive); color: #fff; border-color: var(--olive); }
[data-theme="dark"] .jc-prev, [data-theme="dark"] .jc-next { background: rgba(30,30,26,.72); color: var(--olive); }
[data-theme="dark"] .jc-prev:hover, [data-theme="dark"] .jc-next:hover { background: var(--olive); color: #fff; }
/* steuerzeile: pfeile + dots in einer reihe */
.jc-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin: 22px auto 8px;
}
.jc-controls .jc-dots { margin: 0; gap: 12px; }
.jc-dots { display: flex; justify-content: center; gap: 10px; margin: 18px 0 8px; }
.jc-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: 0; background: var(--line); cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.jc-dot:hover { transform: scale(1.25); }
.jc-dot.active { background: var(--olive); transform: scale(1.35); }
@media (max-width: 720px) {
  /* steuerzeile kompakt, pfeile bleiben in der dots-zeile */
  .jc-controls { gap: 14px; margin-top: 16px; }
  .jc-prev, .jc-next { width: 42px; height: 42px; }
}
.j-panel { display: none; }
.j-panel.active { display: block; animation: cardIn .5s cubic-bezier(.22,1,.36,1) both; }
.j-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap: 34px; align-items: stretch; }
.j-tag {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: var(--maroon); display: inline-block; margin-bottom: .8em;
}
.j-info h3 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.5rem; }
.j-info > p { margin-top: .6em; color: var(--fg-muted); }
.j-steps { margin-top: 2.2em; display: flex; flex-direction: column; gap: 22px; }
.j-step { display: flex; gap: 18px; align-items: flex-start; }
.j-step strong { display: block; font-size: 1.04rem; }
.j-step small { color: var(--fg-muted); display: block; margin-top: 3px; }
.j-n {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; margin-top: 2px;
  background: transparent; color: var(--olive); border: 1.5px solid var(--olive);
  font-weight: 700; font-size: .84rem;
  display: flex; align-items: center; justify-content: center;
}
.j-result {
  display: flex; flex-direction: column; gap: 26px; justify-content: center;
  background: transparent; border-left: 1px solid var(--line); border-radius: 0;
  padding: 8px 0 8px 44px;
}
.j-score { text-align: left; }
.j-val {
  font-family: 'Inter', system-ui, sans-serif; font-size: 3.4rem; font-weight: 700; line-height: 1; color: var(--olive);
}
.j-score small { display: block; color: var(--fg-muted); margin-top: 8px; max-width: 260px; }
.j-quote {
  margin: 0; padding: 0; border: 0;
  font-family: 'Inter', system-ui, sans-serif; font-style: italic; font-size: 1.02rem; color: var(--fg);
}

/* ---------- Symptoms ---------- */
.sym-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sym-tag {
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--bg-2); color: var(--fg); font-weight: 500; font-size: .95rem;
  transition: all .25s cubic-bezier(.34,1.56,.64,1); cursor: pointer;
}
.sym-tag:hover {
  border-color: var(--maroon); color: var(--maroon); transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 26px rgba(137,48,76,.2); text-decoration: none;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.a-txt .sec-title { margin-bottom: .6em; }
.vita-tl { margin: 1.6em 0; border-left: 2px solid var(--line); padding-left: 26px; display: flex; flex-direction: column; gap: 20px; }
.vt-item { position: relative; }
.vt-item::before {
  content: ''; position: absolute; left: -33px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px var(--bg);
}
.vt-year { font-weight: 700; color: var(--olive-deep); font-size: .88rem; letter-spacing: .04em; }
[data-theme="dark"] .vt-year { color: var(--olive-hi); }
.vt-item small { color: var(--fg-muted); }
.quote2 {
  margin: 1.6em 0; padding: 22px 28px; border-radius: var(--radius);
  background: var(--grad-soft); font-family: 'Inter', system-ui, sans-serif; font-style: italic; font-size: 1.08rem;
}
.quote2 p { margin: 0; }
.team-row { display: flex; gap: 16px; align-items: center; margin-top: 1.4em; }
.tm-avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--olive); }

/* ---------- Stress band ---------- */
.stress2 { position: relative; overflow: hidden; color: #fff; padding: clamp(80px, 11vw, 140px) 0; }
.parallax-bg { position: absolute; inset: -22% 0; z-index: 0; }
.parallax-bg img { width: 100%; height: 100%; object-fit: cover; }
.overlay2 {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,22,14,.82), rgba(20,22,14,.58) 55%, rgba(20,22,14,.8));
}
.stress2-inner { position: relative; z-index: 2; max-width: 780px; }
.stress2-inner h2 { font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.faq-teaser2 { display: flex; flex-direction: column; gap: 6px; margin-top: 1.8em; }
.faq-teaser2 a {
  color: #fff; padding: 13px 20px; border-radius: 12px;
  background: rgba(255,253,243,.12); border: 1px solid rgba(255,253,243,.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; justify-content: space-between; transition: background-color .2s, transform .2s;
}
.faq-teaser2 a:hover { background: rgba(255,253,243,.22); transform: translateX(6px); text-decoration: none; }

/* ---------- Gallery ---------- */
.gal2-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.gal2-item {
  position: relative; border: none; padding: 0; cursor: pointer; border-radius: 16px; overflow: hidden;
  background: var(--bg-2); transition: opacity .3s ease, transform .3s ease;
}
.gal2-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.gal2-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,22,14,.45));
  opacity: 0; transition: opacity .3s;
}
.gal2-item:hover img { transform: scale(1.07); }
.gal2-item:hover::after { opacity: 1; }
.gal2-item.hidden-f { display: none; }
.gal2-item.fade-in { animation: cardIn .45s cubic-bezier(.22,1,.36,1) both; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 600; background: rgba(16,17,11,.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 30px;
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1000px, 90vw); text-align: center; }
.lightbox img { max-height: 80vh; width: auto; margin: 0 auto; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox figcaption { color: var(--cream); margin-top: 14px; font-size: .92rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,253,243,.1); color: #fff;
  border: 1px solid rgba(255,253,243,.3); border-radius: 50%;
  width: 50px; height: 50px; font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: background-color .2s, transform .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,253,243,.25); transform: scale(1.08); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; } .lb-next { right: 18px; }

/* ---------- Blog ---------- */
.blog2 { background: var(--bg-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.blog-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  background: var(--bg); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card:hover::after { transform: scaleX(1); }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.blog-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px; background: rgba(160,163,82,.16); color: var(--olive-deep);
}
[data-theme="dark"] .blog-tag { color: var(--olive-hi); }
.blog-meta time { font-size: .8rem; color: var(--fg-muted); }
.blog-card h3 { font-size: 1.12rem; }
.blog-card p { color: var(--fg-muted); font-size: .93rem; }
.blog-more { color: var(--olive-deep); font-weight: 600; font-size: .9rem; }
[data-theme="dark"] .blog-more { color: var(--olive-hi); }

/* ---------- Testimonials ---------- */
.testi-viewport { overflow: hidden; position: relative; }
.testi-track { display: flex; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.testi-slide {
  flex: 0 0 100%; margin: 0; padding: 40px clamp(20px, 8vw, 90px); text-align: center;
}
.testi-quote { width: 40px; height: 40px; margin: 0 auto 18px; color: var(--olive); opacity: .8; }
.testi-slide p {
  font-family: 'Inter', system-ui, sans-serif; font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.55; max-width: 46em; margin: 0 auto 1.4em;
}
.testi-slide footer strong { display: block; }
.testi-slide footer span { color: var(--fg-muted); font-size: .88rem; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; }
.t-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--fg); font-size: 1.3rem; cursor: pointer;
  transition: all .2s;
}
.t-btn:hover { background: var(--grad); color: #fff; border-color: transparent; }
.testi-dots { display: flex; gap: 8px; }
.t-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--line); transition: all .25s ease;
}
.t-dot.active { background: var(--olive); transform: scale(1.35); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.value-card {
  text-align: center; padding: 36px 24px; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform .28s ease, box-shadow .28s ease;
}
.value-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.value-card .ico {
  width: 46px; height: 46px; margin: 0 auto 16px; padding: 11px; border-radius: 14px;
  background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(160,163,82,.32);
}
.value-card p { color: var(--fg-muted); font-size: .93rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq2 { background: var(--bg-2); }
.faq-wrap { max-width: 820px; }
.faq2-list { display: flex; flex-direction: column; gap: 12px; }
.faq2-list details {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
.faq2-list details[open] { border-color: rgba(160,163,82,.55); box-shadow: var(--shadow); }
.faq2-list summary {
  cursor: pointer; padding: 19px 24px; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq2-list summary::-webkit-details-marker { display: none; }
.faq2-list summary i {
  font-style: normal; font-size: 1.5rem; font-weight: 300; color: var(--olive-deep);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1); flex-shrink: 0;
}
[data-theme="dark"] .faq2-list summary i { color: var(--olive-hi); }
.faq2-list details[open] summary i { transform: rotate(135deg); }
.faq-body { padding: 0 24px 22px; color: var(--fg-muted); }
.faq-body p { margin: 0; }

/* ---------- Contact ---------- */
.c2-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 34px; align-items: start; }
.c2-card { display: flex; flex-direction: column; gap: 18px; }
.c2-row { display: flex; gap: 16px; align-items: center; }
.c2-row > .ico { width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: var(--grad); color: #fff; flex-shrink: 0; }
.c2-row small { color: var(--fg-muted); }
.map-wrap { margin-top: 22px; }
.map-placeholder {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: rgba(160,163,82,.08); display: flex; align-items: center; justify-content: center;
  min-height: 220px; backdrop-filter: blur(4px);
}
.map-load {
  border: 1px solid var(--olive); background: var(--bg-2); color: var(--olive-deep);
  padding: 14px 26px; border-radius: 999px; cursor: pointer; font: inherit; font-weight: 600;
}
[data-theme="dark"] .map-load { color: var(--olive-hi); }
.map-load span { font-weight: 400; color: var(--fg-muted); font-size: .85rem; }
.map-placeholder iframe { width: 100%; height: 360px; border: 0; display: block; }
.partners2 { margin-top: 22px; }
.partners2 > span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-muted); display: block; margin-bottom: 10px; }
.partners2 div { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; justify-content: center; background: var(--olive); border-radius: 14px; padding: 18px 22px; }
.partners2 img { height: 40px; width: auto; opacity: .95; }

.termin2 {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 36px 34px; position: relative; overflow: hidden;
}
.termin2::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad);
}
.form-step-label { display: flex; gap: 8px; margin: 0 0 22px; }
.fstep {
  width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; border: 1.5px solid var(--line); color: var(--fg-muted);
  transition: all .3s ease;
}
.fstep.active { background: var(--grad); color: #fff; border-color: transparent; }
.fstep.done { background: rgba(160,163,82,.2); color: var(--olive-deep); border-color: var(--olive); }
[data-theme="dark"] .fstep.done { color: var(--olive-hi); }
.fpage { animation: cardIn .4s ease both; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .87rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--fg); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 4px rgba(160,163,82,.16);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--maroon); }
.radio-row { display: flex; gap: 10px; }
.radio-pill {
  flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 11px; text-align: center;
  cursor: pointer; transition: all .2s; font-weight: 500;
}
.radio-pill input { display: none; }
.radio-pill:has(input:checked) { background: var(--grad); color: #fff; border-color: transparent; }
.form-nav-row { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.form-nav-row .btn-primary { margin-left: auto; }
.field-check .check-label { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; font-weight: 400; cursor: pointer; }
.field-check input { width: auto; margin-top: 4px; }
.form-status { margin: 14px 0 0; padding: 13px 18px; border-radius: 12px; font-size: .92rem; }
.form-status.ok { background: rgba(160,163,82,.18); color: var(--olive-deep); }
[data-theme="dark"] .form-status.ok { color: var(--olive-hi); }
.form-status.err { background: rgba(137,48,76,.12); color: var(--maroon); }
[data-theme="dark"] .form-status.err { color: #d98ca3; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--olive); color: #fff; padding: clamp(64px, 9vw, 110px) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 20%, rgba(255,255,255,.18), transparent);
}
.cta-inner { text-align: center; position: relative; }
.cta-inner h2 { font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.cta-inner .hero-cta { justify-content: center; margin: 1.6em 0 0; }
.cta-band .btn-glass { border-color: rgba(255,255,255,.5); color: #fff; }

/* ---------- Footer ---------- */
.footer2 { background: var(--olive); color: var(--cream); padding-top: 64px; }
[data-theme="dark"] .footer2 { background: #6f7238; }
.footer2-grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr); gap: 32px; }
.f2-brand .brand { color: var(--cream); margin-bottom: 14px; }
.f2-brand p { color: rgba(248,250,198,.75); font-size: .92rem; }
.footer2 h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1em; color: var(--olive-hi); }
.footer2 address { font-style: normal; margin-bottom: .8em; }
.footer2 a { color: var(--cream); }
.f2-links { list-style: none; padding: 0; margin: 0; }
.f2-links li { margin-bottom: .55em; }
.hours { list-style: none; padding: 0; margin: 0 0 .8em; }
.hours li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid rgba(248,250,198,.18); }
.footer2 .note { color: rgba(248,250,198,.65); }
.footer2-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-top: 1px solid rgba(248,250,198,.16); margin-top: 46px; padding-top: 22px; padding-bottom: 26px;
}
.footer2-bottom p { margin: 0; font-size: .82rem; color: rgba(248,250,198,.6); }
.to-top {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(248,250,198,.3);
  background: transparent; color: var(--cream); font-size: 1.1rem; cursor: pointer;
  transition: all .25s;
}
.to-top:hover { background: var(--olive); border-color: var(--olive); transform: translateY(-3px); }

/* ---------- Floating CTA ---------- */
.float-cta {
  position: fixed; right: 26px; bottom: 26px; z-index: 190;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad); color: #fff; padding: 15px 24px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; box-shadow: 0 12px 34px rgba(160,163,82,.5);
  transform: translateY(110px); transition: transform .4s cubic-bezier(.22,1,.36,1);
  animation: ctaPulse 3s ease-in-out infinite;
}
.float-cta.show { transform: translateY(0); }
.float-cta:hover { text-decoration: none; transform: translateY(-3px); }
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 12px 34px rgba(160,163,82,.5); }
  50% { box-shadow: 0 12px 44px rgba(160,163,82,.75); }
}
@media (max-width: 720px) { .float-cta { right: 16px; bottom: 16px; padding: 12px 18px; } }

/* Floating-CTA Inline-Formular */
.float-cta-wrap { position: fixed; right: 26px; bottom: 26px; z-index: 190; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.float-cta-wrap .float-cta { position: static; }

/* Nach-oben-Pfeil im CTA-Stapel */
.to-top-float {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid transparent; background: var(--olive);
  color: #fff; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, border-color .25s, background-color .25s, color .25s;
  box-shadow: var(--shadow);
}
.to-top-float .ico { width: 20px; height: 20px; }
.to-top-float.show { display: inline-flex; opacity: 1; transform: translateY(0); }
/* Kontext-Invertierung: über grünen Flächen exakt wie Termin-CTA (.inverted) — gleiche Creme */
.to-top-float.on-green { background: var(--paper, #fdfdf3); color: var(--olive-deep, #6f7238); border-color: var(--olive); }
/* Farbwechsel nur bei echter Maus (hover:hover) — auf Touch klebt :hover sonst fest */
@media (hover: hover) {
  .to-top-float:hover { background: var(--olive-deep); color: var(--cream); }
  .to-top-float.on-green:hover { background: #fff; color: var(--olive-deep); }
}
/* Touch-Feedback: :active wird beim Loslassen garantiert zurückgesetzt */
.to-top-float:active { background: var(--olive-deep); color: var(--cream); }
.to-top-float.on-green:active { background: #fff; color: var(--olive-deep); }
.to-top-float:focus-visible { outline: 2px solid var(--olive-hi); outline-offset: 3px; }
/* Bei offenem Inline-Formular weicht der Pfeil aus (kein Konkurrenz-Klick) */
.float-cta-wrap.form-open .to-top-float { display: none !important; }
@media (max-width: 720px) {
  .float-cta-wrap { right: 16px; bottom: 16px; }
  .to-top-float { width: 40px; height: 40px; }
}
.float-cta-form {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px;
  width: min(92vw, 340px); box-shadow: 0 18px 50px rgba(38,40,26,.18);
  display: flex; flex-direction: column; gap: 10px; animation: fcfIn .28s cubic-bezier(.22,1,.36,1);
}
.float-cta-form[hidden] { display: none; }
@keyframes fcfIn { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.float-cta-form h4 { font-family: var(--font-head); font-size: 1rem; color: var(--maroon); margin: 0 26px 2px 0; }
.float-cta-form input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px;
  font-size: .95rem; background: var(--creme, #f8fac6); color: var(--fg);
}
.float-cta-form input:focus, .float-cta-form select:focus { outline: 2px solid var(--olive); border-color: var(--olive); }
.float-cta-form .btn-cta {
  background: var(--olive); color: #fff; margin-top: 4px;
  box-shadow: 0 6px 20px rgba(160,163,82,.4);
}
.float-cta-form .btn-cta:hover { background: var(--olive-deep, #8a8d45); }
.float-cta-form .btn-cta:disabled { opacity: .65; cursor: wait; }
.float-cta-form select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px;
  font-size: .95rem; background: var(--creme, #f8fac6); color: var(--fg); cursor: pointer;
}
.fcf-row { display: flex; gap: 10px; }
.fcf-row input { flex: 1; }
.fcf-close {
  position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border: 0; border-radius: 8px;
  background: transparent; color: var(--fg-muted); cursor: pointer; display: grid; place-items: center;
}
.fcf-close:hover { background: var(--creme, #f8fac6); color: var(--maroon); }
.float-cta-form { position: relative; }
.fcf-status { font-size: .85rem; margin: 0; }
.fcf-status.ok { color: #4d6b1f; }
.fcf-status.err { color: var(--maroon); }
@media (max-width: 720px) {
  .float-cta-wrap { right: 16px; bottom: 16px; }
  .float-cta-form { width: min(92vw, calc(100vw - 32px)); }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%);
  background: var(--ink); color: var(--cream); padding: 14px 26px; border-radius: 999px;
  font-size: .92rem; z-index: 700; box-shadow: var(--shadow-lg);
  animation: toastIn .35s cubic-bezier(.22,1,.36,1);
}
@keyframes toastIn { from { transform: translate(-50%, 30px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

/* ---------- Modals ---------- */
.modal {
  position: fixed; inset: 0; z-index: 800; background: rgba(16,17,11,.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: fadeIn .25s ease;
}
.modal[hidden] { display: none; }
.modal-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  max-width: 720px; width: 100%; max-height: 84vh; overflow-y: auto;
  padding: 42px 44px; position: relative; box-shadow: var(--shadow-lg);
}
.m-close {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--bg-2);
  font-size: 1.35rem; cursor: pointer; color: var(--fg); line-height: 1;
}
.m-close:hover { background: rgba(160,163,82,.15); }
.modal-card h3 { margin-top: 1.5em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero2-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero2 { padding-top: 110px; }
  .hero2-fig { max-width: 480px; }
  .praxis-grid, .j-grid, .about-grid, .c2-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gal2-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .sec-head.split { grid-template-columns: 1fr; align-items: start; }
  .footer2-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .burger { display: block; }
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw);
    background: var(--bg); flex-direction: column; align-items: stretch; gap: 4px;
    padding: 90px 24px 30px; box-shadow: -12px 0 44px rgba(0,0,0,.16);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.22,1,.36,1);
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .nav-tools { margin: 14px 0 0; justify-content: flex-start; }
  .site-nav a { justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-wide { grid-column: span 1; }
  .gal2-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer2-grid { grid-template-columns: 1fr; }
  .footer2-bottom { flex-direction: column; align-items: flex-start; }
  .modal-card { padding: 30px 22px; }
  .termin2 { padding: 26px 20px; }
  .sec-head.split { margin-bottom: 2rem; }
  .j-grid { gap: 22px; }
  .hero-badges { gap: 8px; }
  .glass-chip { font-size: .78rem; padding: 7px 13px; }
  .lb-prev { left: 4px; } .lb-next { right: 4px; }
  .testi-slide { padding: 30px 12px; }
  .marquee { transform: none; }
}


/* ---------- Band-Guards: helle Schrift auf gruenen Baendern ---------- */
.cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4 { color: #fff; }
.footer2 h1, .footer2 h2, .footer2 h3, .footer2 h4 { color: var(--cream); }
.site-header h1, .site-header h2, .site-header h3 { color: #fff; }

/* ---------- Dark band overrides (flat olive bands) ---------- */
[data-theme="dark"] .cta-band { background: #6f7238; }

/* ---- Article Overlay ---- */
.art-overlay { position: fixed; inset: 0; z-index: 700; display: flex; align-items: flex-start; justify-content: center; }
.art-overlay[hidden] { display: none; }
.art-backdrop { position: absolute; inset: 0; background: rgba(20,22,12,.55); backdrop-filter: blur(3px); }
.art-panel {
  position: relative; margin: 5vh 16px 5vh; max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: clamp(28px, 5vw, 56px);
  animation: artIn .35s cubic-bezier(.22,1,.36,1) both;
}
@keyframes artIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.art-close {
  position: sticky; top: 0; float: right; margin: -8px -8px 0 0; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--fg); cursor: pointer; transition: all .2s ease;
}
.art-close:hover { background: var(--olive); color: #fff; border-color: var(--olive); }
.art-close svg { width: 20px; height: 20px; }
.art-body { outline: none; }
.art-body .blog-tag { display: inline-block; }
.art-date { display: block; margin: 6px 0 14px; font-size: .85rem; color: var(--fg-2); }
.art-body h2 { font-family: var(--font-head); line-height: 1.15; margin-bottom: 8px; }
.art-body h3 { font-family: var(--font-head); font-size: 1.15rem; margin: 26px 0 8px; color: var(--olive-deep); }
.art-body p { margin: 12px 0; line-height: 1.75; }
.art-body ul { margin: 12px 0 12px 4px; list-style: none; }
.art-body li { position: relative; padding-left: 24px; margin: 8px 0; line-height: 1.6; }
.art-body li::before { content: ''; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }
.blog-more { all: unset; cursor: pointer; display: inline-block; margin-top: 6px; font-weight: 600; font-size: .95rem; color: var(--olive-deep); border-bottom: 1.5px solid currentColor; }
.blog-more:hover { color: var(--fg); }

/* ---------- Artikel-Unterseiten (/wissen/) ---------- */
.art-header { background: var(--olive); padding: 18px 0; }
[data-theme="dark"] .art-header { background: #6f7238; }
.art-header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.art-header .brand { color: #fff; text-decoration: none; }
.art-header .brand-txt span { color: var(--creme); font-size: .8rem; }
.art-back { color: var(--creme); text-decoration: none; font-size: .92rem; white-space: nowrap; }
.art-back:hover { color: #fff; text-decoration: underline; }
.art-page { max-width: 800px; padding: 60px 24px 30px; }
.art-page .art-body h2 { font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.18; margin: 10px 0 8px; }
.art-page .art-body h3 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.25rem; margin: 34px 0 8px; color: var(--olive-deep, var(--olive)); }
.art-page .art-body p { margin: 14px 0; line-height: 1.8; font-size: 1.04rem; }
.art-page .art-body ul { margin: 14px 0 14px 4px; list-style: none; }
.art-page .art-body li { position: relative; padding-left: 26px; margin: 10px 0; line-height: 1.65; }
.art-page .art-body li::before { content: ''; position: absolute; left: 2px; top: .6em; width: 9px; height: 9px; border-radius: 50%; background: var(--olive); }
.art-cta { margin: 56px 0 30px; background: var(--olive); border-radius: var(--radius, 16px); padding: 40px clamp(24px, 5vw, 48px); color: #fff; }
.art-cta h2 { font-family: 'Inter', system-ui, sans-serif; color: #fff; margin: 0 0 8px; font-size: 1.5rem; }
.art-cta p { margin: 0 0 20px; color: var(--creme); }
.art-cta .btn-primary { display: inline-block; background: var(--maroon); color: #fff; padding: 13px 30px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.art-cta .btn-primary:hover { transform: translateY(-2px); }
.art-footer { background: var(--olive); color: var(--creme); padding: 22px 0; margin-top: 40px; font-size: .85rem; }
[data-theme="dark"] .art-cta { background: #6f7238; }
@media (max-width: 640px) { .art-header-in { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ---------- Parallax-Bänder (zwischen Blöcken) ---------- */
.parallax-band {
  position: relative; min-height: 340px; overflow: hidden; z-index: 0;
  border-top: 3px solid var(--olive); border-bottom: 3px solid var(--olive);
}
@media (min-width: 760px) { .parallax-band { min-height: 420px; } }
.parallax-bg { position: absolute; inset: 0; overflow: hidden; }
.parallax-bg-img {
  position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; will-change: transform;
  /* parallax shift happens via translate3d; extra scale prevents gaps */
  scale: 1.25;
}
/* Mobile: Parallax mit kleinem Hub — Zoom-Reserve deckt ±28px Shift randfrei */
@media (hover: none), (pointer: coarse) {
  .parallax-bg-img { scale: 1.32; }
}

/* ---------- Service-Card Videos (Hover) ---------- */
.svc-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
.svc-media { position: relative; }
.svc-card.playing .svc-video { opacity: 1; }
.svc-card.playing .svc-media > img { opacity: 0; }
.svc-media > img { transition: opacity .45s ease; }
@media (prefers-reduced-motion: reduce) { .svc-video { display: none; } }

/* Info-Kacheln: inhalt vertikal mittig (desktop: stunden/kontakt so hoch wie termin-formular) */
.info-band .info-tile { justify-content: center; }

/* Öffnungszeiten-Kachel zentriert */
.info-tile.tile-hours { align-items: center; text-align: center; }

/* Praxismanagement: Zitat unter dem Bild */
.team-fig figcaption {
  padding: 16px 6px 2px; display: flex; flex-direction: column; gap: 4px;
  align-items: center; text-align: center;
}
.team-fig figcaption span { font-weight: 600; font-size: .95rem; }
.team-fig figcaption em { color: var(--fg-muted); font-size: .9rem; }

/* Carousel: horizontale Swipes zulassen, vertikal scrollen nativ */
.journeys { touch-action: pan-y; }

/* Typing: 2 zeilen platz reservieren (mobil brechen lange phrasen um) —
   sonst springt das portrait bei jedem phrasenwechsel 25px (schatten-flackern).
   2026-08: titel→portrait-abstand mobil um ~85px verringert (kundenwunsch);
   min-height 1.2em reicht, da phrasen bei 390px max. ~1 zeile brauchen. */
@media (max-width: 720px) {
  .hero-typed { min-height: 1.2em; margin-bottom: .3em; }
  .hero2-grid { row-gap: 12px; }
  .hero-title { margin-bottom: .1em; }
  .hero-name { margin-bottom: .5em; }
}

/* Termin-Anfrage + Unser Kontakt: kachelinhalt zentriert (wie Öffnungszeiten) */
.info-tile.tile-termin { align-items: center; text-align: center; }
.info-tile.tile-contact { align-items: center; text-align: center; }
.info-tile .tile-contact { text-align: left; }

/* Termin-Kachel: formular zentriert einfuegen (titel + inhalt stimmig) */
.tile-termin .mini-form { width: 100%; max-width: 320px; margin: 0 auto; }
.tile-termin .btn { width: 100%; }

/* Kontakt-Kachel: Liste linksbuendig als Block, Block mittig in der Kachel */
.info-tile.tile-contact .tile-contact { align-items: center; text-align: left; }

/* Filter-buttons mobil: sauberes 2x2-raster */
@media (max-width: 720px) {
  .filter-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .filter-btn { width: 100%; text-align: center; }
}

/* Mobil: ueberschriften sauber umbrechen — em nie vom rest getrennt,
   kein einzelwort in letzter zeile */
@media (max-width: 720px) {
  .sec-title { text-wrap: balance; }
  .sec-title em { display: inline-block; }
}

/* Burger-panel hat eigene helle flaeche: link-farben nie vom scrolled-header erben
   (sonst weisse links auf creme = leeres menue) */
@media (max-width: 720px) {
  .site-header .site-nav.open a { color: var(--fg); }
  .site-header .site-nav.open .tool-btn { color: var(--fg); border-color: var(--line); }
  .site-nav.open a:hover { color: var(--olive-deep); }
}

/* Horizontal-scroll auf mobile hart verriegeln: html+body clippen.
   (body-overflow-x:hidden allein erlaubt auf iOS Safari noch rubber-banding
   des DOKUMENTS, wenn auch nur 1px breiter content durchrutscht) */
html { overflow-x: clip; }
body { overflow-x: clip; }
@media (max-width: 720px) {
  html, body { overscroll-behavior-x: none; }
}

/* Divider zwischen sektionskopf und journey-karte: kurze mittige oliv-linie */
.sec-divider {
  width: 56px; height: 2px; border-radius: 2px;
  background: var(--olive); margin: 0 auto 30px;
}

/* Floating-CTA invertiert auf oliv-flaechen: heller button, oliv-text */
.float-cta.inverted {
  background: var(--paper, #fdfdf3); color: var(--olive-deep, #6f7238);
  border-color: var(--olive);
  box-shadow: 0 12px 34px rgba(38,40,26,.35);
}

/* Datum/Zeit-picker: sichtbares mini-label ueber dem feld */
.mf-field { flex: 1; min-width: 0; display: flex; }

/* iOS: date/time haben keinen platzhalter -> overlay-text im feld,
   verschwindet wenn wert gesetzt (.has-val via JS) */
.mf-wrap { position: relative; display: block; flex: 1; min-width: 0; }
.mf-wrap input { width: 100%; }
.mf-ph {
  position: absolute; inset: 0; display: flex; align-items: center;
  padding-left: 12px; pointer-events: none;
  color: rgba(255,255,255,.75); font-size: .92rem;
}
.float-cta-form .mf-ph { color: var(--fg-muted); }
.mf-wrap input.has-val ~ .mf-ph { display: none; }
/* picker bleiben nebeneinander, exakt so breit wie feld darueber */
@media (max-width: 720px) {
  .mf-row.mf-row-dt { flex-direction: row; }
  .mf-row.mf-row-dt input[type="date"], .mf-row.mf-row-dt input[type="time"] { min-width: 0; width: 100%; }
}

/* iOS: nativer platzhalter + icon im leeren feld unsichtbar (overlay uebernimmt) */
.mf-wrap input:not(.has-val) { color: transparent !important; -webkit-text-fill-color: transparent; }
.mf-wrap input:not(.has-val)::-webkit-calendar-picker-indicator { opacity: 0; }
.mf-wrap input.has-val { -webkit-text-fill-color: currentcolor; }
/* iOS-mindestbreite brechen: felder folgen strikt der flex-verteilung */
.mf-wrap input[type="date"], .mf-wrap input[type="time"] {
  -webkit-appearance: none; appearance: none;
  min-width: 0 !important; flex: 1 1 0; box-sizing: border-box;
}

/* iOS-shrink: indicator belegt keine breite mehr, input folgt strikt der reihe */
.mf-wrap input:not(.has-val)::-webkit-calendar-picker-indicator,
.mf-wrap input::-webkit-calendar-picker-indicator {
  width: 0 !important; min-width: 0 !important; padding: 0 !important; margin: 0 !important;
  opacity: 0; overflow: hidden;
}
.mf-wrap { display: flex; }
.mf-wrap input[type="date"], .mf-wrap input[type="time"] {
  width: 0; flex: 1 1 0; min-width: 0 !important; max-width: 100%;
}
.mf-row.mf-row-dt, .fcf-row.mf-row-dt { max-width: 100%; }
.mf-row-dt .mf-field { flex: 1 1 0; min-width: 0; }

/* journey-steps: kompakte abstaende (titel/unterzeile/schritte) */
.j-step strong { display: block; line-height: 1.3 !important; margin-bottom: 3px; }
.j-step small { display: block; line-height: 1.4; margin-top: 0; }
.j-step br { display: none; }
.j-steps { row-gap: 14px !important; }
@media (max-width: 720px) {
  .j-steps { row-gap: 12px !important; }
}
