/* ===== Self-hosted Inter (keine Anfrage an Google) =====
   Die fünf inter-*.woff2 sind byte-identisch — es ist der Inter-Variable-Font.
   Ein einziger @font-face mit font-weight:100 900 bedient alle Gewichte (400/500/600/700/800
   rendern pixelgleich weiter) und lädt nur EINE Datei (48 kB statt 5×48 = 242 kB). */
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('assets/fonts/inter-400.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

/* ===================================================================
   OKUYUCU — Praxis Hannover
   Schrift: Inter (Open-Source-Verwandte zur Logo-Schrift)
   Logo-DNA: Rote vertikale Pipes als wiederkehrendes Akzent-Element
   =================================================================== */

:root {
  --red: #E30613;
  --red-dark: #B70510;

  --ink: #0A0A0A;
  --ink-80: #2D2D2D;
  --ink-60: #5A5A5A;
  --ink-40: #888888;
  --ink-20: #D4D4D4;
  --ink-12: #E5E5E5;
  --ink-08: #EFEFEF;
  --ink-04: #F7F7F6;

  --paper: #FAFAF8;
  --paper-alt: #F4F2EC;
  --white: #FFFFFF;
  --dark: #0A0A0A;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 6px;
  --ease: cubic-bezier(.22,.7,.22,1);
  --header-h: 72px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Lange URLs und E-Mail-Adressen dürfen umbrechen, statt das Layout zu sprengen.
   Ohne das lief die ODR-URL im Impressum (274,8px) aus einem 214px breiten Absatz.
   Bewusst nur http/mailto: dort ist der Linktext ein unbrechbares Token.
   KEIN tel: — die Notfall-/Kontaktkarten sind <a href="tel:..."> um Fließtext, und
   overflow-wrap vererbt sich in die Karte hinein; "Bereitschaftsdienst" bräche dann
   bei 740–800px mitten im Wort. Telefonnummern brauchen den Umbruch ohnehin nie.
   'anywhere' statt 'break-word', weil nur 'anywhere' auch die min-content-Breite senkt
   und damit lange URLs auch in Grid-/Flex-Karten abfängt. */
a[href^="http"],
a[href^="mailto:"] {
  word-break: normal;
  overflow-wrap: anywhere;
}

ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  margin: 0; font-family: var(--font); font-weight: 600;
  line-height: 1.15; letter-spacing: -0.02em; color: var(--ink);
}
/* The "em" element — used for subtle hierarchy in headlines.
   No italic, no serif — just lighter weight + mid-gray. Same family. */
em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-60);
  letter-spacing: -0.025em;
}
section { scroll-margin-top: calc(var(--header-h) + 24px); }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.skip-link {
  position: absolute; top: -100px; left: 12px; background: var(--ink); color: var(--white);
  padding: 12px 18px; z-index: 1000; font-weight: 700; font-size: 14px; border-radius: 4px;
}
.skip-link:focus { top: 12px; }

/* ===== Logo-DNA: Pipe ===== */
.pipe {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--red);
  vertical-align: -2px;
  margin: 0 12px;
}

/* ===== Topbar (Notfall + Sprache) ===== */
.notfall {
  background: var(--paper-alt);
  color: var(--ink-80);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink-12);
}
.notfall-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.notfall-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; }
.notfall-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(227,6,19,.7);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(227,6,19,0); } 100% { box-shadow: 0 0 0 0 rgba(227,6,19,0); } }
.notfall-numbers {
  display: inline-flex; align-items: center;
  justify-content: center;
}
.notfall-numbers a strong { color: var(--ink); font-weight: 700; }
.notfall-numbers a:hover strong { color: var(--red); }
.notfall-numbers .pipe { margin: 0 14px; height: 12px; }

/* Sprache rechts in der Topbar */
.topbar-lang {
  display: inline-flex; align-items: center; gap: 10px;
  justify-self: end;
}
.topbar-lang-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-60);
}

/* (Topbar-Urlaubshinweis 16.07.2026 entfernt — "weitere Informationen"
   sitzt jetzt als Button im Hinweis-Streifen, s. .site-banner-cta) */

/* Responsive: Topbar 1-spaltig, alles zentriert untereinander */
@media (max-width: 860px) {
  /* Topbar raus — Notfall + Sprache wandern ins Burger-Menue (.mnav-topbar).
     .mobile-nav davor: schlaegt die spaeter im File stehenden Default-Regeln. */
  .notfall { display: none; }
  .mobile-nav .mnav-info { display: flex; flex-direction: column; margin-top: 8px; }
  .mobile-nav .mnav-topbar {
    display: block;
    margin-top: 20px; padding-top: 18px;
    border-top: 1px solid var(--ink-12);
  }
  .notfall-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .notfall-tag, .notfall-numbers, .topbar-lang { justify-content: center; justify-self: center; }
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--ink-12);
  box-shadow: 0 4px 16px -8px rgba(10,10,10,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  min-height: var(--header-h);
}
.logo img { height: 48px; width: auto; }

.primary-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.primary-nav a {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 14.5px; font-weight: 500; color: var(--ink-80);
  letter-spacing: -0.005em;
  border-radius: 6px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.primary-nav a:hover { color: var(--red); background: var(--ink-04); }
/* Aktiver Menüpunkt beim Scrollen: rote Linie unter dem Text */
.primary-nav a::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.primary-nav a.is-active { color: var(--red); }
.primary-nav a.is-active::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .primary-nav a::after { transition: none; }
}

.header-cta { display: flex; align-items: center; gap: 14px; margin-left: 16px; }
.tel-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 14.5px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em;
  transition: color .2s var(--ease);
}
.tel-link svg { color: var(--red); }
.tel-link:hover { color: var(--red); }


/* Info-Block im Mobil-Menü */
.mnav-info { display: none; }
/* Selektor schlaegt bewusst ".mobile-nav a" (20px Menuschrift) —
   die Infozeilen sollen kleiner und lesbar sein, nicht wie Menuepunkte. */
.mobile-nav .mnav-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 2px;
  font-size: 14.5px; font-weight: 400; letter-spacing: 0;
  color: var(--ink-80); line-height: 1.4;
  border-bottom: none;
}
.mnav-info-row + .mnav-info-row { border-top: 1px solid var(--ink-12); }
.mnav-info-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mnav-info-txt strong { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.mnav-info-sub { font-size: 13px; font-weight: 400; color: var(--ink-60); line-height: 1.4; }
.mnav-info-ic { color: var(--red); flex-shrink: 0; display: flex; margin-top: 1px; }
.mnav-info-ic svg { width: 20px; height: 20px; }

/* Topbar-Inhalt (Notfall + Sprache) im Burger-Menue — ersetzt auf Mobil die Topbar */
.mnav-topbar { display: none; }
.mnav-notfall-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.mnav-notfall-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0;
}
.mnav-notfall-nums { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.mobile-nav .mnav-notfall-nums a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 11px 2px;
  font-size: 14.5px; font-weight: 400; letter-spacing: 0;
  color: var(--ink-80); border-bottom: none;
}
.mnav-notfall-nums a + a { border-top: 1px solid var(--ink-12); }
.mnav-notfall-nums strong { font-size: 16px; font-weight: 700; color: var(--red); }
.mnav-lang {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--ink-12);
}
.mnav-lang-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-60);
}

.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  position: relative; z-index: 101;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--paper);
  padding: 24px 28px; z-index: 99; overflow-y: auto;
}
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 18px 4px;
  font-family: var(--font); font-size: 20px; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--ink-12);
  letter-spacing: -0.015em;
}
.mobile-nav a.btn { border-bottom: none; margin-top: 14px; justify-content: center; font-size: 15px; }
body.nav-open { overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--font); font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer; border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: transform .12s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 6px 14px -4px rgba(227,6,19,.4);
}
.btn-primary:hover {
  background: var(--ink); color: var(--white);
  box-shadow: 0 10px 22px -6px rgba(10,10,10,.35);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink-20); }
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn.full { width: 100%; }

/* ===== HERO ===== */
.hero {
  padding: 72px 0 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  margin-bottom: 72px;
}
.hero-text { max-width: 580px; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 14px;
  border: 1px solid var(--ink-12); border-radius: 999px;
  font-family: var(--font);
  font-size: 12.5px; font-weight: 600; color: var(--ink-80);
  letter-spacing: 0.005em;
  margin-bottom: 32px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(10,10,10,.04);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(227,6,19,.5);
  animation: pulse 2.4s infinite;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.08; letter-spacing: -0.025em; font-weight: 600;
  color: var(--ink); margin-bottom: 24px;
}
.hero h1 em {
  font-weight: 400;
  color: var(--ink);
  border-bottom: 3px solid var(--red);
  padding-bottom: 1px;
  display: inline;
}

.lead {
  font-size: 19px; line-height: 1.55; color: var(--ink-80);
  margin-bottom: 32px; max-width: 540px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-photo {
  margin: 0;
  overflow: hidden; border-radius: 10px;
  aspect-ratio: 5/6;
  background: var(--ink-08);
  box-shadow: 0 20px 40px -20px rgba(10,10,10,.15), 0 6px 12px -6px rgba(10,10,10,.08);
  position: relative;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.08) 100%);
  pointer-events: none;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: contrast(1.02) saturate(0.95);
  transition: transform .8s var(--ease);
}
.hero-photo:hover img { transform: scale(1.02); }

/* Hero meta (4-Spalten Daten) — rote Pipe-Trenner */
.hero-meta {
  /* Standard: alle vier Spalten gleich breit (z. B. Videosprechstunde-Seite) */
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink-12);
}
.hero-meta .meta-item {
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.hero-meta .meta-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 3px; height: 40px; background: var(--red);
  margin-top: -20px;
}
/* Startseite: die 3. Spalte traegt die lange Sprechzeiten-Zeile und braucht
   etwas mehr Platz — sonst bricht sie zwischen 1100-1280px zweizeilig um. */
.hero-meta--praxis { grid-template-columns: 1fr 1fr 1.25fr 1fr; }
.meta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.meta-item strong {
  font-family: var(--font); font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.015em;
}
.meta-sub { font-size: 13.5px; color: var(--ink-60); }
.meta-sub--hours { font-weight: 700; color: var(--ink-80); }

/* ===== Schwerpunkte-Strip — warm (Logo-DNA: kontrastiert zur weißen Hero-Meta) ===== */
.strip {
  background: var(--paper-alt);
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  padding: 20px 0;
}
.strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.strip span {
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--ink-80); letter-spacing: -0.005em;
  display: inline-flex; align-items: center;
}
.strip span:not(:last-child)::after {
  content: ""; display: inline-block; width: 2px; height: 12px; background: var(--red);
  margin-left: 24px; vertical-align: middle;
}

/* ===== Sections — strikt alternierende Backgrounds =====
   Sequence: notfall(warm) → hero(paper) → hero-meta(white) → strip(warm) →
             §01(paper) → §02(warm) → §03(white) → §04(paper) → §05(white) →
             §06(paper) → §07(warm) → footer(white)
*/
.section { padding: 104px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--ink-08); border-bottom: 1px solid var(--ink-08); }
.section-dark { background: var(--paper-alt); }

/* Mast — kleine Caps "§ 01 | LEISTUNGEN", dann Headline + Lead, alles zentriert */
.mast {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.mast-index {
  display: inline-flex; align-items: center; justify-content: center; gap: 0;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 22px;
}
/* Replace the "—" character with a styled pipe via attribute selector trick: keep the dash but tighten */
.mast h2 {
  font-family: var(--font);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18; letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 18px;
}
.mast-lead {
  font-size: 18px; line-height: 1.55; color: var(--ink-60);
  max-width: 620px; margin: 0 auto;
}
.mast-dark h2 { color: var(--ink); }

/* Videosprechstunde-Teaser: Headline einzeilig auf Desktop, umbrechend auf Mobil.
   Selektor .mast h2.video-mast-h2 schlägt bewusst .mast h2 (Spezifität).
   Der Video-Mast wird auf Desktop verbreitert, damit die lange Zeile hineinpasst. */
.mast h2.video-mast-h2 { font-size: clamp(22px, 5vw, 28px); }
@media (min-width: 900px) {
  #video .mast { max-width: 940px; }
  .mast h2.video-mast-h2 { white-space: nowrap; font-size: clamp(22px, 2.6vw, 33px); }
}
/* Türkisch: "muayenehanedekinden" ist bei 320px 294,8px breit, die Zeilenbox nur 264px —
   ein einzelnes Wort ohne Umbruchpunkt. Bewusst nur :lang(tr): die längsten deutschen und
   englischen Wörter passen (264,9px vs. 264px) und würden bei globalem break-word für
   0,9px mitten im Wort umbrechen. */
html:lang(tr) .mast h2 { overflow-wrap: break-word; }

.mast-dark .mast-lead { color: var(--ink-60); }

/* ===== Cards (Leistungen) ===== */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  border-color: var(--ink-20);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(10,10,10,.12), 0 4px 12px -4px rgba(10,10,10,.06);
}
.card-img {
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-08);
  border-bottom: 1px solid var(--ink-12);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92);
  transition: transform .7s var(--ease);
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.card h3 {
  font-family: var(--font); font-size: 23px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 14px;
}
.card > .card-body > p {
  color: var(--ink-60); font-size: 15.5px; line-height: 1.55;
  margin-bottom: 20px;
}
.card-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--ink-12);
  margin-top: 4px;
}
.card-list li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--ink-12);
  font-size: 14.5px; line-height: 1.45; color: var(--ink-80);
  position: relative;
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 2px; height: 12px;
  margin-top: -6px;
  background: var(--red);
}
.card-list li:last-child { border-bottom: none; padding-bottom: 0; }

/* Sub-Label innerhalb einer card-list (z. B. "Nach Absprache für Selbstzahler …") */
.card-list li.card-list-label {
  padding: 12px 14px;
  margin: 10px 0 2px;
  background: var(--ink-04);
  border: 1px solid var(--ink-12);
  border-radius: 6px;
  font-size: 14.5px; font-weight: 700;
  letter-spacing: 0; line-height: 1.4;
  color: var(--ink);
}
.card-list li.card-list-label::before { display: none; }

/* Telefon-Icon im CTA-Button */
.btn-tel-ic { flex-shrink: 0; }

/* Split-Eyebrow für Video-Sektion */
.split-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  align-self: flex-start;
  width: fit-content;
}

/* ===== Video-Intro (oben Bild + Text) ===== */
.video-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.video-intro-img {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-08);
  max-height: 420px;
  box-shadow: 0 20px 40px -20px rgba(10,10,10,.15), 0 6px 12px -6px rgba(10,10,10,.06);
}
.video-intro-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
  transition: transform .7s var(--ease);
}
.video-intro-img:hover img { transform: scale(1.02); }
.video-intro-body { display: flex; flex-direction: column; gap: 14px; }
.video-intro-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  align-self: flex-start;
  width: fit-content;
}
.video-intro-text {
  font-size: 17px; line-height: 1.6; color: var(--ink-80);
  margin: 0;
}
.video-intro-cta {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.video-intro-cta .btn { align-self: flex-start; }
.video-intro-foot {
  font-size: 12px; color: var(--ink-60); letter-spacing: 0.02em;
}

/* ===== Usecases (5 horizontale Cards) ===== */
.usecases {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  list-style: none; padding: 0; margin: 0;
}
.usecase-step {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  padding: 22px 20px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .25s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
}
.usecase-step:hover {
  border-color: var(--ink-20);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(10,10,10,.12);
}
.usecase-num {
  display: inline-block;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--red);
  padding-bottom: 8px; margin-bottom: 4px;
  border-bottom: 2px solid var(--red);
  align-self: flex-start;
}
.usecase-step h3 {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 0 0 4px;
  color: var(--ink);
}
.usecase-step p {
  font-size: 13.5px; line-height: 1.5; color: var(--ink-60);
  margin: 0;
}

/* Bullet-Note (Sub-Hinweis in card-list) */
.bullet-note {
  display: block;
  font-size: 13px; color: var(--ink-40); font-weight: 400;
  margin-top: 2px;
  line-height: 1.4;
}
.bullet-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: rgba(227,6,19,.08);
  color: var(--red);
  border-radius: 3px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}

/* ===== IGEL Grid — hell ===== */
.igel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.igel-item {
  padding: 32px 28px;
  background: var(--white);
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  transition: background .2s var(--ease);
  position: relative;
}
.igel-item:hover { background: var(--ink-04); }
.igel-item::before {
  content: ""; position: absolute; left: 0; top: 32px; width: 3px; height: 0;
  background: var(--red); transition: height .3s var(--ease);
}
.igel-item:hover::before { height: 32px; }
.igel-item:nth-child(3n) { border-right: none; }
.igel-item:nth-last-child(-n+3) { border-bottom: none; }
.igel-num {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--red); margin-bottom: 14px;
}
.igel-num::after {
  content: ""; display: inline-block; width: 2px; height: 10px;
  background: var(--red);
}
.igel-item h3 {
  font-family: var(--font); font-size: 19px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.igel-item p {
  color: var(--ink-60); font-size: 14.5px; line-height: 1.55; margin: 0;
}

.igel-note {
  margin-top: 32px; padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  color: var(--ink-80);
  font-size: 14.5px; line-height: 1.55;
}

/* ===== Split (Video, Praxis) ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split-img {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-08);
}
.split-img-portrait { aspect-ratio: 4/5; }
.split-img {
  box-shadow: 0 20px 40px -20px rgba(10,10,10,.15), 0 6px 12px -6px rgba(10,10,10,.06);
}
.split-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
  transition: transform .7s var(--ease);
}
.split-img:hover img { transform: scale(1.02); }
.split-img figcaption {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 14px;
  border-top: 2px solid var(--red);
}
.split-img figcaption strong {
  font-family: var(--font); font-size: 16px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.split-img figcaption span {
  font-size: 13px; color: var(--ink-60);
}

.split-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--ink-12); }
.split-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-12);
  display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: baseline;
}
.split-num {
  font-family: var(--font); font-size: 22px; font-weight: 800;
  color: var(--red); letter-spacing: -0.03em;
}
.split-list strong {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  letter-spacing: -0.015em; display: block; margin-bottom: 4px;
}
.split-list p {
  font-size: 14.5px; color: var(--ink-60); margin: 0; line-height: 1.5;
  grid-column: 2;
}
.split-foot {
  font-size: 12px; letter-spacing: 0.04em; color: var(--ink-60);
  margin-top: 18px;
}

.praxis-lead {
  font-family: var(--font);
  font-size: 22px; font-weight: 500; line-height: 1.4;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 24px;
}
.split-body p { font-size: 16px; line-height: 1.65; color: var(--ink-60); }

/* (Stats-Block 16.07.2026 entfernt — Kunde will keine Zahlen auf der Seite) */

/* ===== Sprechzeiten / Info-Cards ===== */
.hours-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  padding: 36px;
}
.info-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-12);
  text-align: left; font-weight: 500; font-size: 15px;
}
.hours-table th {
  font-family: var(--font); font-weight: 600;
  color: var(--ink); width: 38%;
}
.hours-table td { color: var(--ink-80); font-variant-numeric: tabular-nums; }
.hours-table td.muted { color: var(--ink-60); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; padding-bottom: 0; }

.info-foot {
  margin: 20px 0 0;
  font-size: 13.5px; color: var(--ink-60); line-height: 1.5;
}
.info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.info-list li {
  font-size: 15px; color: var(--ink-80); line-height: 1.45;
  display: grid; grid-template-columns: 12px 1fr; gap: 14px; align-items: baseline;
}
.info-list li::before {
  content: ""; width: 2px; height: 12px; background: var(--red);
  align-self: center; display: inline-block;
}
.info-link {
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  transition: color .2s var(--ease);
}
.info-link:hover { color: var(--red); }

/* ===== FAQ ===== */
.faq {
  max-width: 880px; margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--ink-12);
  transition: background .2s var(--ease);
}
.faq details[open] { background: var(--ink-04); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 56px 22px 4px;
  font-family: var(--font); font-weight: 600; font-size: 17px;
  color: var(--ink); position: relative; user-select: none;
  letter-spacing: -0.015em;
  transition: color .15s var(--ease), padding-left .2s var(--ease);
}
.faq summary:hover { color: var(--red); padding-left: 8px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
  color: var(--red);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  padding: 0 56px 22px 4px; margin: 0;
  font-size: 15.5px; line-height: 1.65; color: var(--ink-60);
}
.faq a { color: var(--red); font-weight: 600; }
.faq strong { color: var(--ink); font-weight: 700; }

/* ===== Breadcrumb (Unterseite) ===== */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--ink-08);
  padding: 14px 0;
  font-size: 13.5px; color: var(--ink-60);
}
.breadcrumb a { color: var(--ink-80); font-weight: 500; transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .bc-sep { margin: 0 10px; color: var(--ink-40); }
.breadcrumb [aria-current="page"] { color: var(--red); font-weight: 600; }

/* Hero-sub — Unterseiten-Hero (kompakter) */
.hero-sub { padding-top: 56px; }
.hero-sub .hero-grid { margin-bottom: 56px; }
.hero-sub h1 { font-size: clamp(40px, 5.5vw, 64px); }
/* Die Headline trägt weiche Trennstriche (Video&shy;sprech&shy;stunde.), damit das
   Kompositum auf schmalen Geräten umbrechen kann statt die Seite seitwärts zu ziehen.
   Ab 721px ist die Trennung abgeschaltet: dort ist genug Platz, und die Headline soll
   unverändert so stehen wie abgenommen (ab 1180px würde sie sonst zweizeilig). */
@media (min-width: 721px) {
  .hero-sub h1 { -webkit-hyphens: none; hyphens: none; }
}

/* Aria-current für Nav-Items auf Unterseite */
.primary-nav a[aria-current="page"] { color: var(--red); background: var(--ink-04); }
.mobile-nav a[aria-current="page"] { color: var(--red); }

/* ===== Steps (Videosprechstunde § 01) ===== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  list-style: none; padding: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  padding: 32px 28px 28px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.step:hover { border-color: var(--ink-20); transform: translateY(-3px); }
.step-num {
  display: inline-block;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--red);
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 2px solid var(--red);
}
.step h3 {
  font-family: var(--font); font-size: 19px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 10px;
}
.step p {
  color: var(--ink-60); font-size: 14.5px; line-height: 1.55; margin: 0;
}

/* ===== Usecase Grid (§ 02 Geeignet / Nicht geeignet) ===== */
.usecase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.usecase {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  padding: 36px;
}
.usecase-tag {
  display: inline-block;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.usecase-tag-yes {
  background: rgba(16,217,87,.12); color: #0F8C3F;
  border: 1px solid rgba(16,217,87,.25);
}
.usecase-tag-no {
  background: rgba(227,6,19,.08); color: var(--red);
  border: 1px solid rgba(227,6,19,.2);
}
.usecase-list { display: flex; flex-direction: column; gap: 0; }
.usecase-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-08);
  font-size: 15px; line-height: 1.55; color: var(--ink-80);
}
.usecase-list li:last-child { border-bottom: none; padding-bottom: 0; }
.usecase-list strong { color: var(--ink); font-weight: 700; }
.usecase-list a { color: var(--red); font-weight: 600; }

/* ===== Tech-Grid (§ 03) ===== */
.tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.tech-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  transition: border-color .2s var(--ease), transform .15s var(--ease);
}
.tech-card:hover { border-color: var(--red); transform: translateY(-2px); }
.tech-num {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--red);
  margin-bottom: 14px;
}
.tech-num::after {
  content: ""; display: inline-block; width: 2px; height: 10px;
  background: var(--red);
}
.tech-card h3 {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 0 0 8px;
}
.tech-card p {
  color: var(--ink-60); font-size: 14px; line-height: 1.55; margin: 0;
}

/* ===== Data-Grid (§ 04 Datenschutz, dark section) ===== */
.data-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.data-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
}
.data-card h3 {
  font-family: var(--font); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 10px;
  padding-bottom: 12px; border-bottom: 2px solid var(--red);
  display: inline-block;
}
.data-card p {
  color: var(--ink-60); font-size: 15px; line-height: 1.6; margin: 0;
}

/* ===== Booking (§ 06) ===== */
.booking-spread {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.booking-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--ink);
  transition: border-color .2s var(--ease), transform .15s var(--ease);
}
a.booking-card:hover { border-color: var(--red); transform: translateY(-2px); }
.booking-label {
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
}
.booking-value {
  font-family: var(--font); font-size: clamp(28px, 3.4vw, 44px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1; color: var(--ink);
  margin-top: 4px;
}
.booking-sub {
  font-size: 14.5px; color: var(--ink-60); line-height: 1.55;
  margin-top: 6px;
}
.booking-card-primary {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--ink);
}
.booking-card-primary .booking-label { color: var(--red); }
.booking-card-primary .booking-value { color: var(--ink); }
.booking-card-primary .booking-sub { color: var(--ink-60); }
a.booking-card-primary:hover {
  background: rgba(227,6,19,.04);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(227,6,19,.25);
}
a.booking-card-primary:hover .booking-value { color: var(--red); }

/* Jameda-Widget Card */
.booking-card-widget { padding: 32px; gap: 12px; }
.booking-widget-lead {
  font-size: 14.5px; line-height: 1.55; color: var(--ink-60);
  margin: 4px 0 8px;
}
.jameda-widget {
  margin: 4px 0 8px;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-alt);
  border-radius: 8px;
  padding: 12px;
  position: relative;
}
.jameda-widget > a {
  color: var(--ink-60);
  font-size: 13px;
  text-align: center;
  text-decoration: underline;
}
.jameda-widget iframe { max-width: 100%; border: 0; }
/* Consent-Platzhalter (Klick-zum-Laden). Solange er sichtbar ist, wird der
   Fallback-Link ausgeblendet; nach dem Klick lädt das Widget den Link in ein iframe. */
.jameda-consent { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 340px; }
.jameda-consent-text { font-size: 13.5px; line-height: 1.55; color: var(--ink-60); margin: 0 0 14px; }
.jameda-consent-foot { margin: 12px 0 0; font-size: 12.5px; }
.jameda-consent-foot a { color: var(--ink-60); text-decoration: underline; }
#jamedaConsent:not([hidden]) ~ a { display: none; }
.booking-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0; padding: 0; list-style: none;
}
.booking-pills li {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-80);
  padding: 5px 10px;
  border: 1px solid var(--ink-12);
  border-radius: 999px;
  background: var(--white);
}

/* Telefon-Card erweitert mit Quick-Facts */
.booking-card-primary { padding: 32px; gap: 8px; }
.booking-value-link {
  display: block;
  margin: -2px 0 6px;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.booking-value-link:hover .booking-value { color: var(--red); }
.booking-facts {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--ink-12);
}
.booking-facts li {
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-12);
  display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start;
  font-size: 14px; line-height: 1.5; color: var(--ink-80);
}
.booking-facts li:last-child { border-bottom: none; padding-bottom: 4px; }
.booking-fact-num {
  font-family: var(--font); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--red);
  padding-top: 2px;
}
.booking-facts strong {
  font-family: var(--font); font-weight: 700; color: var(--ink);
  letter-spacing: -0.005em;
}
.booking-facts a { color: var(--red); font-weight: 600; }

/* ===== Notfall-Sektion ===== */
.notfall-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px;
}
.notfall-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .2s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.notfall-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(10,10,10,.12);
}
.notfall-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--ink-12);
  transition: background .2s var(--ease);
}
.notfall-card:hover::before { background: var(--red); }
.notfall-card-critical {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--ink);
}
.notfall-card-critical::before { background: var(--red); }
.notfall-card-critical:hover {
  background: rgba(227,6,19,.04);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(227,6,19,.25);
}

.notfall-num {
  font-family: var(--font); font-size: clamp(40px, 5vw, 56px); font-weight: 800;
  line-height: 0.95; letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex; align-items: center;
  margin-bottom: 4px;
}
.notfall-card-critical .notfall-num { color: var(--red); }
.notfall-num .pipe-inline {
  display: inline-block; width: 3px; height: 0.65em; background: var(--red);
  margin: 0 6px;
}
.notfall-title {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.notfall-text {
  font-size: 14.5px; color: var(--ink-60); line-height: 1.5;
}

/* ===== Jobs / Karriere ===== */
.job-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.job-head {
  padding: 36px 40px 32px;
  border-bottom: 1px solid var(--ink-12);
  background: var(--paper);
}
.job-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.job-head h3 {
  font-family: var(--font); font-size: clamp(26px, 3vw, 36px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 0 20px;
}
.job-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 14.5px; color: var(--ink-60);
}
.job-meta strong { color: var(--ink); font-weight: 600; }

.job-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 36px 40px;
}
.job-body h4 {
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin: 0 0 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--red);
  display: inline-block;
}
.job-list { display: flex; flex-direction: column; gap: 0; }
.job-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-08);
  font-size: 15.5px; line-height: 1.45; color: var(--ink-80);
  display: grid; grid-template-columns: 14px 1fr; gap: 12px; align-items: baseline;
}
.job-list li::before {
  content: ""; width: 2px; height: 12px; background: var(--red);
  align-self: center; display: inline-block;
}
.job-list li:last-child { border-bottom: none; padding-bottom: 0; }

.job-cta {
  padding: 28px 40px 32px;
  background: var(--paper);
  border-top: 1px solid var(--ink-12);
  display: flex; align-items: center; justify-content: flex-end; gap: 24px; flex-wrap: wrap;
}
/* (.job-cta-hint 16.07.2026 entfernt — E-Mail-Hinweis war doppelt zum Button) */

/* Split CTA (video index teaser) */
.split-cta {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.split-cta .btn { align-self: flex-start; }

/* ===== Kontakt — hell ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-form { align-self: stretch; }
.contact-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 8px;
  color: var(--ink);
  transition: border-color .25s var(--ease), transform .15s var(--ease);
}
a.contact-card:hover { border-color: var(--red); transform: translateY(-2px); }
.contact-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.contact-value {
  font-family: var(--font); font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
}
.contact-sub { font-size: 13.5px; color: var(--ink-60); }

.contact-card-primary {
  background: var(--white);
  border: 2px solid var(--red);
  position: relative;
}
.contact-card-primary .contact-label { color: var(--red); }
.contact-card-primary .contact-value { font-size: 32px; color: var(--ink); font-weight: 800; }
.contact-card-primary .contact-sub { color: var(--ink-60); }
a.contact-card-primary:hover {
  background: rgba(227,6,19,.04);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(227,6,19,.25);
}
a.contact-card-primary:hover .contact-value { color: var(--red); }

/* Combined Card — alle weißen Infos in einer Karte */
.combined-card {
  padding: 0 !important;
  display: flex; flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.combined-section {
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--ink-12);
  color: var(--ink);
  transition: background .2s var(--ease);
}
.combined-section:last-child { border-bottom: none; }
.combined-section-link { cursor: pointer; }
.combined-section-link:hover { background: var(--ink-04); }
.combined-section-link:hover .contact-value { color: var(--red); }
.combined-section-link .contact-value { transition: color .2s var(--ease); }
.combined-section-akut {
  margin-top: auto;
  background: rgba(227,6,19,.05);
}

/* Videosprechstunde-CTA: fuellt die freie Flaeche der Kontaktkarte */
.combined-section-video {
  flex: 1;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}
.combined-section-video:hover { background: var(--ink-04); }
.combined-video-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--red); color: #fff;
  margin-bottom: 6px;
}
.combined-video-ic svg { width: 18px; height: 18px; }
.combined-video-go {
  margin-top: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--red);
}
.combined-section-video:hover .combined-video-go { text-decoration: underline; }
@media (max-width: 1100px) {
  /* nebeneinander stehende Spalten: kein Streckbedarf mehr */
  .combined-section-video { flex: 0 0 auto; }
}

/* Sprechzeiten Mini-Tabelle (in combined card) */
.mini-hours {
  width: 100%; border-collapse: collapse;
  margin-top: 6px;
}
.mini-hours th,
.mini-hours td {
  padding: 7px 0;
  border-bottom: 1px solid var(--ink-08);
  text-align: left; font-size: 14px; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.mini-hours th {
  font-family: var(--font); font-weight: 600;
  color: var(--ink); width: 44%;
}
.mini-hours td { color: var(--ink-80); text-align: right; }
.mini-hours td.muted { color: var(--ink-60); }
.mini-hours tr:last-child th,
.mini-hours tr:last-child td { border-bottom: none; padding-bottom: 0; }

.contact-value-sm {
  font-family: var(--font); font-size: 15.5px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em; line-height: 1.4;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-form h3 {
  font-family: var(--font); font-size: 22px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink); margin: 0 0 4px;
}
.form-hint { font-size: 14px; color: var(--ink-60); margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: block; }
.contact-form label > span {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-80); margin-bottom: 6px;
  font-family: var(--font);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 14px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--ink-12); border-radius: 6px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  font-family: var(--font);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); background: var(--white); box-shadow: 0 0 0 4px rgba(227,6,19,.08); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-check {
  display: flex !important; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--ink-60); line-height: 1.5;
  margin: 4px 0 8px;
}
.form-check input { width: 16px !important; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-check a { color: var(--red); text-decoration: underline; }

/* ===== Footer — weiß (klares Abschluss-Element, kontrastiert zum Kontakt warm) ===== */
.site-footer {
  background: var(--white);
  color: var(--ink-80);
  padding: 72px 0 0;
  border-top: 1px solid var(--ink-12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: 40px 48px;
  padding-bottom: 56px;
  align-items: start;
}
.footer-brand {
  align-items: flex-start;
  text-align: left;
}
.footer-brand p { font-size: 14.5px; margin: 0 0 10px; color: var(--ink-80); text-align: left; }
.footer-logo {
  height: 50px; width: auto;
  margin: 20px 0 14px 0;
  align-self: flex-start;
  display: block;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong {
  display: block;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid var(--ink-12);
}
.footer-col a {
  font-size: 14.5px; color: var(--ink-80);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--ink-12);
  padding: 22px 0;
}
.footer-bottom p { margin: 0; font-size: 12.5px; color: var(--ink-60); }
.footer-bottom .footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-login { font-size: 12.5px; color: var(--ink-40); text-decoration: none; }
.footer-login:hover { color: var(--red); }

/* Footer: Kontakt-Block (Adresse · Telefon · E-Mail) */
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-style: normal; margin-top: 2px; }
.footer-contact a { font-size: 14.5px; color: var(--ink-80); text-decoration: none; transition: color .2s var(--ease); }
.footer-contact a:hover { color: var(--red); }

/* Footer: Videosprechstunde-CTA-Karte (ganz rechts) */
.footer-cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  padding: 26px 26px 28px;
  background: rgba(227,6,19,0.045);
  border: 1px solid rgba(227,6,19,0.16);
  border-radius: 14px;
}
.footer-cta-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--red); color: #fff; margin-bottom: 2px;
}
.footer-cta-ic svg { width: 20px; height: 20px; }
.footer-cta-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
}
.footer-cta-title {
  font-family: var(--font); font-size: 19px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); margin: 0;
}
.footer-cta-text { font-size: 14px; line-height: 1.5; color: var(--ink-60); margin: 0 0 4px; }
.footer-cta-btn { margin-top: 2px; }

/* Footer: Rechtstexte in der Bottom-Leiste */
.footer-legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: var(--ink-60); text-decoration: none; transition: color .2s var(--ease); }
.footer-legal a:hover { color: var(--red); }
.footer-legal a[aria-current="page"] { color: var(--red); }

/* ===== Floating call ===== */
.floating-call {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(227,6,19,.5), 0 4px 8px -2px rgba(10,10,10,.1);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.floating-call:hover { background: var(--ink); color: var(--white); transform: scale(1.05); }
.floating-call::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--red); opacity: 0;
  animation: pulseRing 2.2s infinite;
}
@keyframes pulseRing { 0% { opacity: .5; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }

/* ===== Reveal ===== */
.section, .hero, .strip {
  opacity: 0; transform: translateY(16px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.section.is-visible, .hero.is-visible, .strip.is-visible {
  opacity: 1; transform: translateY(0);
}

/* ===== Hinweis-Banner (vom Praxis-Team ueber /admin gepflegt) ===== */
.site-banner { background: var(--ink-04); border-bottom: 1px solid var(--ink-12); }
.site-banner--warning { background: #FDEBEC; border-bottom-color: #F5C2C6; }
/* WICHTIG: nur padding-top/-bottom setzen, NICHT die Kurzform `padding: 12px 0`.
   Das Element trägt beide Klassen (`container site-banner-inner`); die Kurzform hat
   dieselbe Spezifität wie `.container { padding: 0 28px }`, steht aber später und
   hätte das seitliche 28px-Padding auf 0 gesetzt — der Hinweis klebte dann an der
   Kante, während der restliche Seiteninhalt eingerückt ist. */
.site-banner-inner { display: flex; align-items: flex-start; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.site-banner-text { flex: 1; font-size: 14.5px; color: var(--ink-80); line-height: 1.5; }
.site-banner-title { color: var(--red); font-weight: 700; margin-right: 8px; }
.site-banner--warning .site-banner-title { color: var(--red-dark); }
.site-banner-close { flex-shrink: 0; background: none; border: 0; font-size: 24px; line-height: 1; cursor: pointer; color: var(--ink-40); padding: 0 4px; }
.site-banner-close:hover { color: var(--ink); }

/* "weitere Informationen" im Hinweis-Streifen — klein, aber auffaellig */
.site-banner-cta {
  flex-shrink: 0; align-self: center;
  background: var(--red); color: #fff;
  border: 0; border-radius: 999px;
  padding: 7px 15px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  line-height: 1.2; white-space: nowrap; cursor: pointer;
  box-shadow: 0 4px 10px -3px rgba(227,6,19,.45);
  transition: background .2s var(--ease), box-shadow .2s var(--ease);
}
.site-banner-cta:hover { background: var(--ink); box-shadow: 0 6px 14px -4px rgba(10,10,10,.35); }
.site-banner-cta:active { transform: translateY(1px); }
.site-banner-cta:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

@media (max-width: 860px) {
  /* Kompakter: Text volle Breite, darunter Button links + X rechts.
     Auf Mobil ist der Streifen das Erste ueber dem Header — er darf nicht
     die halbe erste Bildschirmhoehe fressen. */
  .site-banner-inner { flex-wrap: wrap; align-items: center; gap: 8px 12px; padding-top: 10px; padding-bottom: 10px; }
  .site-banner-text { flex: 1 1 100%; font-size: 13px; line-height: 1.45; }
  .site-banner-title { display: block; margin-right: 0; margin-bottom: 1px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
  .site-banner-cta { order: 2; padding: 10px 14px; font-size: 12.5px; }
  .site-banner-close { order: 3; margin-left: auto; font-size: 22px; }
}

/* ===== Standortkarte (Google Maps, Klick-zum-Laden) ===== */
.map-block { margin-top: 28px; }
.map-consent {
  background: var(--ink-04);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  padding: 48px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.map-consent-pin { color: var(--red); line-height: 0; }
.map-consent-pin svg { width: 40px; height: 40px; }
.map-consent-title { font-size: 19px; font-weight: 700; color: var(--ink); }
.map-consent-text { font-size: 14.5px; color: var(--ink-60); max-width: 460px; line-height: 1.55; }
.map-consent .btn { margin-top: 4px; }
.map-remember { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-60); cursor: pointer; }
.map-remember input { accent-color: var(--red); }
.map-consent-foot { font-size: 13px; color: var(--ink-40); margin-top: 2px; }
.map-consent-foot a { color: var(--ink-60); text-decoration: underline; }
.map-consent-foot a:hover { color: var(--red); }
.map-frame { width: 100%; height: 400px; border: 0; display: block; border-radius: var(--radius); }
@media (max-width: 720px) {
  .map-consent { padding: 36px 20px; }
  .map-frame { height: 300px; }
}

/* ===== Responsive ===== */
/* Nav frueher auf Hamburger umklappen — volle Nav braucht ~1167px, sonst Umbruch/Abschnitt */
@media (max-width: 1180px) {
  .primary-nav, .header-cta .tel-link { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-height: 480px; aspect-ratio: 16/10; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta .meta-item:nth-child(2n)::after { display: none; }
  .hero-meta .meta-item:nth-child(-n+2) { border-bottom: 1px solid var(--ink-12); }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards .card:last-child { grid-column: span 2; }
  .igel-grid { grid-template-columns: 1fr 1fr; }
  .igel-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.08); }
  .igel-item:nth-child(2n) { border-right: none; }
  .igel-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .igel-item:nth-last-child(-n+2) { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { max-width: 540px; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; padding-bottom: 24px; border-bottom: 1px solid var(--ink-12); margin-bottom: 8px; align-items: flex-start; text-align: left; }
  .footer-cta { grid-column: span 2; }
}

/* Grid-Items haben per Default min-width:auto, eine 1fr-Spur kann also nicht unter die
   min-content-Breite ihres Inhalts schrumpfen. Beide Raster brauchen darum eine Stufe
   früher weniger Spalten, sonst wird das letzte Element aus dem Viewport geschoben. */

/* .usecases: 5 gleiche Spalten passen unter 1024px nicht mehr (min-content der 5 Cards
   = 776px + 64px Gaps + 56px Container-Padding = 896px) -> 3 Spalten. */
@media (max-width: 1023px) {
  .usecases { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* .steps: 4 gleiche Spalten brauchen mindestens 789px Viewport (intrinsisches
   Grid-Minimum 760,9px ab x=28px) -> ab 860px 2x2. */
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .mnav-info { display: flex; flex-direction: column; margin-top: 8px; }
  /* Mobil: Termin-Button aus dem Header (liegt im Menü + Floating-Call), damit das größere Logo passt */
  .header-cta { display: none; }
  .nav-toggle { margin-left: auto; }
  .notfall { font-size: 12px; padding: 7px 0; }
  .notfall-inner { gap: 8px; justify-content: center; text-align: center; }

  .hero { padding-top: 48px; }
  .hero-grid { gap: 32px; margin-bottom: 48px; }
  .hero h1 { font-size: clamp(40px, 10vw, 56px); }
  .lead { font-size: 17px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta .meta-item::after { display: none !important; }
  .hero-meta .meta-item:not(:last-child) { border-bottom: 1px solid var(--ink-12); }

  .strip-inner { justify-content: center; gap: 14px 20px; }

  .section { padding: 72px 0; }
  .mast { margin-bottom: 40px; }
  .mast h2 { font-size: clamp(28px, 7vw, 40px); }
  .mast-lead { font-size: 16.5px; }

  .cards { grid-template-columns: 1fr; }
  .cards .card:last-child { grid-column: 1; }
  .igel-grid { grid-template-columns: 1fr; }
  .igel-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; }
  .igel-item:last-child { border-bottom: none !important; }

  .split-img { aspect-ratio: 4/3 !important; max-width: 100%; }

  .info-card { padding: 28px 24px; }
  .contact-info { gap: 10px; }
  .contact-card { padding: 22px; }
  .contact-card-primary .contact-value { font-size: 26px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand { grid-column: span 1; align-items: flex-start; text-align: left; }
  .footer-cta { grid-column: span 1; }
  .footer-lang-strip .footer-lang { gap: 12px 16px; }
  .footer-lang-strip .footer-lang-hint { flex-basis: 100%; margin-left: 0; max-width: 100%; text-align: left; }

  /* Notfall + Jobs responsive */
  .notfall-grid { grid-template-columns: 1fr; gap: 14px; }
  .job-body { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .job-head { padding: 28px 24px; }
  .job-meta { gap: 16px; font-size: 13.5px; }
  .job-cta { padding: 24px; }

  /* Video-Intro + Usecases responsive */
  .video-intro { grid-template-columns: 1fr; gap: 28px; }
  .video-intro-img { max-height: 320px; aspect-ratio: 16/10; }

  /* Videosprechstunde responsive */
  .usecase-grid { grid-template-columns: 1fr; gap: 16px; }
  .usecase { padding: 28px 24px; }
  .tech-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .booking-spread { grid-template-columns: 1fr; }
  .booking-card { padding: 28px 24px; }

  .floating-call { display: flex; }

  /* Lange Button-Labels (EN "To the video consultation", TR "Video görüşme hakkında
     daha fazla") dürfen auf schmalen Viewports umbrechen. Ohne das friert das
     white-space:nowrap der .btn-Basisregel die Buttonbreite auf die Textbreite ein
     und sprengt den 1fr-Track von .footer-inner bzw. .video-intro. */
  .btn { white-space: normal; }
}

/* Das 3-Spalten-Raster der .usecases braucht mindestens 619px (Worst Case Deutsch);
   darunter frieren die Tracks auf min-content ein und ragen aus der Seite. Erst ab
   660px sind die drei Spalten auch gleich breit -> darunter einspaltig.
   Zwei Spalten wären bei 5 Karten 2+2+1, also eine Waisen-Karte. */
@media (max-width: 660px) {
  .usecases { grid-template-columns: 1fr; }
}

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

/* ===== Touch-Targets: nur auf Touch-Geraeten vergroessern (Desktop pixelgleich) ===== */
@media (pointer: coarse) {
  /* Banner-x auf >=44px Klickflaeche, Icon bleibt optisch gleich */
  .site-banner-close { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  /* Sprachumschalter: Button waechst per Padding auf 40x32, die Flagge bleibt 28x20 */
  .lang-switcher [data-lang] { width: auto; height: auto; min-width: 40px; min-height: 32px; padding: 6px; }
  /* dito im Pop-up */
  #urlaub-modal .uv-lang-btn { width: auto; height: auto; min-width: 40px; min-height: 32px; padding: 6px; }
}

/* ===== Videosprechstunde: Buchen-Sektion auf dem Handy direkt hinter den Hero holen =====
   Der Buchungsteil (#termin, jameda) ist im Desktop-Aufbau die letzte Sektion. Auf dem
   Handy soll der Kunde schneller buchen können, ohne durch alle Abschnitte zu scrollen.
   Nur die Videosprechstunde-Seite (main.vid-main), nur mobil; Desktop bleibt unverändert. */
@media (max-width: 720px) {
  main.vid-main { display: flex; flex-direction: column; }
  main.vid-main > .hero    { order: -2; }
  main.vid-main > #termin  { order: -1; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .section, .hero, .strip { opacity: 1; transform: none; }
}

/* ===== Print ===== */
@media print {
  .site-header, .floating-call, .nav-toggle, .mobile-nav, .notfall, .strip, .contact-form, #cookie-banner { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .hero { padding: 24px 0; }
}

/* ===== Legal Pages (Impressum / Datenschutz) ===== */
.hero-grid-text { grid-template-columns: 1fr !important; }
.hero-grid-text .hero-text { max-width: 780px; }

/* Rechtstext startet auf gleicher linker Kante wie der Hero (linksbündig),
   nicht zentriert -> kein Rechts-Sprung; Inhalt unten merklich breiter. */
.legal-container { margin: 0 auto; }
.legal-block {
  max-width: 1000px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  padding: 36px 40px;
  margin-bottom: 20px;
}
.legal-block:last-of-type { margin-bottom: 32px; }
.legal-block h2 {
  font-family: var(--font); font-size: 24px; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.2; color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.legal-block h3 {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  letter-spacing: -0.015em; color: var(--ink);
  margin: 24px 0 10px;
}
.legal-block h3:first-of-type { margin-top: 12px; }
.legal-block p {
  font-size: 15.5px; line-height: 1.65; color: var(--ink-80);
  margin: 0 0 12px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: var(--ink); font-weight: 700; }
.legal-block em {
  font-style: italic; font-weight: 400; color: var(--ink-60);
}
.legal-block a { color: var(--red); font-weight: 600; }
.legal-block a:hover { text-decoration: underline; }
.legal-block code {
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Consolas, monospace;
  font-size: 13.5px; background: var(--paper-alt);
  padding: 2px 6px; border-radius: 4px; color: var(--ink);
}

.legal-list {
  list-style: none; padding: 0; margin: 8px 0 12px;
  display: flex; flex-direction: column; gap: 0;
}
.legal-list li {
  padding: 10px 0 10px 22px;
  font-size: 15px; line-height: 1.55; color: var(--ink-80);
  position: relative;
  border-bottom: 1px solid var(--ink-08);
}
.legal-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 10px; height: 2px; background: var(--red);
}
.legal-list li:last-child { border-bottom: none; padding-bottom: 4px; }
.legal-list strong { color: var(--ink); font-weight: 700; }

.legal-dl {
  display: flex; flex-direction: column; gap: 0;
  margin: 12px 0;
  border-top: 1px solid var(--ink-08);
}
.legal-dl > div {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-08);
}
.legal-dl dt {
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  padding-top: 3px;
}
.legal-dl dd {
  margin: 0;
  font-size: 15px; line-height: 1.55; color: var(--ink-80);
}
.legal-dl dd .muted { color: var(--ink-60); font-size: 13px; }
.legal-dl dd a { color: var(--red); font-weight: 600; }

.legal-toc {
  background: var(--paper-alt);
}
.legal-toc-list {
  list-style: decimal; padding-left: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px;
  margin: 0;
}
.legal-toc-list li {
  font-size: 14.5px; line-height: 1.5;
  padding: 4px 0; color: var(--ink-60);
}
.legal-toc-list li::marker { color: var(--red); font-weight: 700; }
.legal-toc-list a {
  color: var(--ink); font-weight: 500;
  border-bottom: 1px solid transparent;
}
.legal-toc-list a:hover { color: var(--red); border-bottom-color: var(--red); }

.legal-foot {
  text-align: center;
  font-size: 13px; color: var(--ink-60);
  margin: 32px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--ink-12);
}

/* Breadcrumb [aria-current] in legal pages */
.primary-nav a:not([href]) { color: var(--red); background: var(--ink-04); }

@media (max-width: 720px) {
  .legal-block { padding: 28px 24px; }
  .legal-block h2 { font-size: 21px; }
  .legal-dl > div { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .legal-toc-list { grid-template-columns: 1fr; gap: 0; }
}

/* ===== Sprach-Switcher mit Flaggen ===== */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--ink-12);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}
.lang-switcher [data-lang] {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 20px;
  padding: 0;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: 4px;
  background: transparent;
  transition: border-color .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
  overflow: hidden;
  opacity: .6;
}
.lang-switcher [data-lang]:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.lang-switcher [data-lang].is-active {
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 2px 6px -2px rgba(227,6,19,.3);
}
.lang-switcher .flag {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}

/* Footer-Sprach-Sektion (größer, mit Label) */
.footer-lang-strip {
  border-top: 1px solid var(--ink-12);
}
.footer-lang {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px 22px;
  padding-block: 24px;
}
.footer-lang-label {
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  flex: 0 0 auto;
}
.footer-lang .lang-switcher {
  padding: 4px;
  gap: 6px;
}
.footer-lang .lang-switcher [data-lang] {
  width: 36px; height: 26px;
  border-radius: 5px;
}
.footer-lang-hint {
  flex: 1 1 320px;
  margin: 0 0 0 auto;
  max-width: 480px;
  font-size: 12px; color: var(--ink-60); line-height: 1.5;
  text-align: right;
}

/* ===== Cookie-Banner ===== */
/* ===== Praxisurlaub-Popup ===== */
body.uv-open { overflow: hidden; }
#urlaub-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
#urlaub-modal .uv-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.42);
  animation: uvFade .25s var(--ease);
}
#urlaub-modal .uv-card {
  position: relative;
  width: 100%; max-width: 620px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 14px;
  padding: 34px 34px 30px;
  box-shadow: 0 24px 64px -16px rgba(10,10,10,.28), 0 8px 16px -8px rgba(10,10,10,.1);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  animation: uvUp .3s var(--ease);
}
@keyframes uvFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes uvUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  #urlaub-modal .uv-overlay, #urlaub-modal .uv-card { animation: none; }
}
#urlaub-modal .uv-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; border-radius: 8px;
  color: var(--ink-60); cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
#urlaub-modal .uv-close svg { width: 20px; height: 20px; }
#urlaub-modal .uv-close:hover { background: var(--ink-04); color: var(--ink); }
#urlaub-modal .uv-close:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
/* Sprachumschalter im Pop-up (das Modal verdeckt den Topbar-Umschalter) */
#urlaub-modal .uv-lang { display: inline-flex; gap: 6px; margin-bottom: 16px; }
#urlaub-modal .uv-lang-btn {
  width: 28px; height: 20px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid transparent; border-radius: 4px;
  background: transparent; cursor: pointer; overflow: hidden; opacity: .55;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
#urlaub-modal .uv-lang-btn:hover { opacity: 1; }
#urlaub-modal .uv-lang-btn.is-active { opacity: 1; border-color: var(--red); }
#urlaub-modal .uv-lang-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
#urlaub-modal .uv-lang-btn .flag { width: 100%; height: 100%; display: block; object-fit: cover; }

#urlaub-modal .uv-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 10px;
}
#urlaub-modal h2 {
  font-family: var(--font); font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 6px; padding-right: 40px;
  color: var(--ink);
}
#urlaub-modal h2::after {
  content: ""; display: block;
  width: 40px; height: 3px; background: var(--red);
  margin: 14px 0 0;
}
#urlaub-modal .uv-body { margin-top: 20px; }
#urlaub-modal .uv-body p {
  font-size: 15px; line-height: 1.6; color: var(--ink-80);
  margin: 0 0 14px;
}
#urlaub-modal .uv-salut { color: var(--ink); font-weight: 600; }
#urlaub-modal .uv-h3 {
  font-family: var(--font); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin: 26px 0 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-12);
}
#urlaub-modal .uv-list { list-style: none; padding: 0; margin: 0 0 14px; }
#urlaub-modal .uv-list li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--ink-12);
  position: relative;
}
#urlaub-modal .uv-list li:last-child { border-bottom: none; }
#urlaub-modal .uv-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 2px; height: 14px; background: var(--red);
}
#urlaub-modal .uv-list strong { font-size: 15px; color: var(--ink); }
#urlaub-modal .uv-list span { font-size: 14px; color: var(--ink-60); }
#urlaub-modal .uv-list a { font-size: 15px; font-weight: 700; color: var(--red); text-decoration: none; }
#urlaub-modal .uv-list a:hover { text-decoration: underline; }
#urlaub-modal .uv-body a { color: var(--red); font-weight: 600; text-decoration: none; }
#urlaub-modal .uv-body a:hover { text-decoration: underline; }
#urlaub-modal .uv-alert {
  background: rgba(227,6,19,.05);
  border: 1px solid rgba(227,6,19,.18);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600; color: var(--ink) !important;
}
#urlaub-modal .uv-outro {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--ink-12);
  margin-bottom: 0;
}
@media (max-width: 560px) {
  #urlaub-modal { padding: 12px; }
  #urlaub-modal .uv-card { padding: 26px 20px 24px; max-height: calc(100vh - 24px); }
  #urlaub-modal h2 { font-size: 21px; }
}

#cookie-banner {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 20px;
  pointer-events: none;
}
#cookie-banner .cb-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.32);
  backdrop-filter: blur(2px);
  pointer-events: auto;
  animation: cbFadeIn .3s var(--ease);
}
#cookie-banner .cb-card {
  position: relative;
  width: 100%; max-width: 640px;
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  padding: 32px 32px 28px;
  box-shadow: 0 24px 64px -16px rgba(10,10,10,.25), 0 8px 16px -8px rgba(10,10,10,.1);
  pointer-events: auto;
  animation: cbSlideUp .35s var(--ease);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
@keyframes cbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cbSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

#cookie-banner h2 {
  font-family: var(--font);
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.025em; color: var(--ink);
  margin: 0 0 10px;
  padding-bottom: 12px;
  position: relative;
}
#cookie-banner h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 3px; background: var(--red);
}
#cookie-banner > .cb-card > p {
  font-size: 14.5px; color: var(--ink-60); line-height: 1.6;
  margin: 16px 0 24px;
}
#cookie-banner a { color: var(--red); font-weight: 600; }
#cookie-banner a:hover { text-decoration: underline; }

/* Sprachumschalter im Cookie-Banner (Banner erscheint vor dem Footer-Umschalter) */
.cb-lang { display: inline-flex; gap: 6px; margin-bottom: 14px; }
.cb-lang-btn {
  width: 28px; height: 20px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid transparent; border-radius: 4px;
  background: transparent; cursor: pointer; overflow: hidden; opacity: .55;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.cb-lang-btn:hover { opacity: 1; }
.cb-lang-btn.is-active { opacity: 1; border-color: var(--red); }
.cb-lang-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.cb-lang-btn .flag { width: 100%; height: 100%; display: block; object-fit: cover; }

.cb-options {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--ink-12);
  margin-bottom: 24px;
}
.cb-option {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-12);
  cursor: pointer;
  align-items: flex-start;
}
.cb-option:last-child { border-bottom: none; }
.cb-option input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--red); cursor: pointer;
}
.cb-option input[disabled] { cursor: not-allowed; opacity: .6; }
.cb-option span { display: block; }
.cb-option strong {
  display: block; font-family: var(--font); font-size: 14.5px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.005em; margin-bottom: 2px;
}
.cb-option em {
  font-style: normal; font-weight: 400; font-size: 13px;
  color: var(--ink-60); line-height: 1.5;
}

.cb-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.cb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; flex: 1;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent; border-radius: 6px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .12s var(--ease);
  white-space: nowrap;
}
.cb-btn:active { transform: translateY(1px); }
.cb-btn-primary { background: var(--red); color: var(--white); }
.cb-btn-primary:hover { background: var(--ink); }
.cb-btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink-20); }
.cb-btn-secondary:hover { background: var(--ink-04); border-color: var(--ink); }

.cb-foot {
  display: flex; align-items: center; gap: 0;
  font-size: 12px; color: var(--ink-60);
  padding-top: 16px;
  border-top: 1px solid var(--ink-12);
}
.cb-foot a { color: var(--ink-60); font-weight: 500; }
.cb-foot a:hover { color: var(--red); }
.cb-pipe {
  display: inline-block; width: 2px; height: 10px; background: var(--red);
  margin: 0 10px;
}

@media (max-width: 540px) {
  #cookie-banner { padding: 12px; }
  #cookie-banner .cb-card { padding: 24px 22px 22px; }
  #cookie-banner h2 { font-size: 19px; }
  .cb-actions { flex-direction: column; gap: 8px; }
  .cb-btn { width: 100%; }
  .cb-lang-btn { width: auto; height: auto; min-width: 40px; min-height: 30px; padding: 6px; }
}

/* ===== Kontaktformular: Honeypot + Status ===== */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 0; padding: 14px 16px; border-radius: 8px; font-size: 14.5px; line-height: 1.5; }
.form-status[data-state="ok"] { background: rgba(20,140,70,.08); border: 1px solid rgba(20,140,70,.30); color: #11623a; }
.form-status[data-state="err"] { background: rgba(227,6,19,.06); border: 1px solid rgba(227,6,19,.30); color: #9b0510; }

/* ki-bildhinweis-2026-08-01: Kennzeichnung nach Art. 50 KI-VO.
   Die figure beschneidet ihren Inhalt (overflow:hidden + feste aspect-ratio),
   deshalb wandern Rahmen, Schatten und Seitenverhaeltnis auf das Bild selbst -
   nur so steht die Unterschrift sichtbar darunter. Optik bleibt gleich. */
.video-intro-img{overflow:visible;aspect-ratio:auto;max-height:none;background:none;box-shadow:none}
.video-intro-img>img{display:block;width:100%;height:auto;aspect-ratio:16/10;max-height:320px;object-fit:cover;border-radius:10px;background:var(--ink-08);box-shadow:0 20px 40px -20px rgba(10,10,10,.15),0 6px 12px -6px rgba(10,10,10,.06)}
.bild-ki{margin-top:.55rem;font-size:.8125rem;line-height:1.45;color:var(--muted,#5a6b7f);font-style:italic}

/* ki-bildhinweis-2026-08-01 (Teil 2): Hero der Videosprechstunde.
   Auch .hero-photo beschneidet (overflow:hidden + Ratio) und legt per ::after
   einen Verlauf ueber die volle Flaeche - beides wird aufs Bild begrenzt,
   damit die Kennzeichnung darunter sichtbar bleibt. */
.hero-photo{overflow:visible;aspect-ratio:auto;max-height:none;background:none;box-shadow:none;position:relative}
.hero-photo>img{display:block;width:100%;height:auto;aspect-ratio:16/10;max-height:480px;object-fit:cover;border-radius:10px;background:var(--ink-08);box-shadow:0 20px 40px -20px rgba(10,10,10,.15),0 6px 12px -6px rgba(10,10,10,.06)}
.hero-photo::after{inset:0 0 auto 0;aspect-ratio:16/10;max-height:480px;border-radius:10px}
