/* ═══════════════════════════════════════
   FONT-FACE FALLBACKS (verhindert CLS durch Font-Swap)
   Werte ermittelt durch Vergleich der Web-Font-Metriken
   (units-per-em, ascent, descent) mit den jeweiligen System-Fallbacks.
   ═══════════════════════════════════════ */
@font-face {
  font-family: 'Jost-Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('sans-serif');
  /* Jost 400: avg-char-width vs. Arial → size-adjust 106.3% angleicht Glyphenbreiten.
     ascent/descent dann aus Jost-Originalmetriken (1071/-269 bei upem 1000)
     normiert mit /size-adjust: 107.1/1.063 ≈ 100.8%, 26.9/1.063 ≈ 25.3%. */
  size-adjust: 106.3%;
  ascent-override: 100.8%;
  descent-override: 25.3%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'EBGaramond-Fallback';
  src: local('Georgia'), local('Times New Roman'), local('serif');
  /* EB Garamond 400 vs. Georgia: x-height-ratio führt zu size-adjust ≈ 92.7%
     (Georgia wird kleiner skaliert, damit x-Höhe und Glyphenbreite EB Garamond
     näher kommen). ascent/descent aus EB-Garamond-Metriken (1043/-272 bei upem 1000)
     normiert mit /size-adjust: 104.3/0.927 ≈ 112.5%, 27.2/0.927 ≈ 29.3%. */
  size-adjust: 92.7%;
  ascent-override: 112.5%;
  descent-override: 29.3%;
  line-gap-override: 0%;
}

/* ═══════════════════════════════════════
   SELF-HOSTED FONTS
   Spart DNS+TLS-Roundtrip zu Google Fonts (~100–250ms FCP-Gewinn).
   font-display: swap → Text bleibt während Font-Load sichtbar (mit Fallback).
   unicode-range begrenzt Glyphensatz auf latin (~25–35 KB pro Datei statt 100+).
   ═══════════════════════════════════════ */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-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+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jost-500.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+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ebgaramond-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+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ebgaramond-400italic.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+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ═══════════════════════════════════════
   CSS VARIABLEN
   ═══════════════════════════════════════ */
:root {
  --serif: 'EB Garamond', 'Cormorant Garamond', 'EBGaramond-Fallback', Georgia, serif;
  --sans:  'Jost', 'Jost-Fallback', sans-serif;

  --sage:        #5a7a5e;
  --sage-dark:   #3f5c42;
  --sage-light:  #e8f0e9;
  --gold:        #b89a5a;
  --gold-light:  #f5edd8;
  --warm-white:  #faf9f6;
  --cream:       #f2efe8;
  --text:        #1e2820;
  --text-muted:  #5a6660;
  --border:      rgba(90,122,94,.18);
  --nav-h:       74px;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* scrollbar-gutter: stable reserviert den Platz der Scrollbar permanent,
   verhindert Layout-Shift wenn der Content kürzer ist als der Viewport,
   ohne dass die Scrollbar erzwungen wird (im Gegensatz zu overflow-y: scroll). */
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* Bewegungsreduktion – respektiert OS-Setting */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 47px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color .2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ── DROPDOWN ── */
.nav-links li { position: relative; }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--sage);
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .35s;
  z-index: 200;
}
/* unsichtbare Brücke zwischen Nav-Link und Dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -14px; left: 0; right: 0; height: 14px;
  background: transparent;
}
/* Pfeil */
.nav-dropdown::after {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--sage);
}
.nav-links li:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}
.nav-dropdown a {
  display: block;
  padding: .75rem 1.2rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--sage-light); color: var(--sage-dark); }
.nav-dropdown a::after { display: none; }

.nav-cta {
  font-size: .85rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color .2s;
  white-space: nowrap;
  position: relative; padding-bottom: 3px;
}
.nav-cta::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav-cta:hover { color: var(--sage-dark); background: none; }
.nav-cta:hover::after { transform: scaleX(1); }

/* Mobile Menu */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  /* Tap-Target mindestens 44×44px (WCAG 2.5.5) bei gleichbleibender visueller Größe */
  padding: 12px; margin: -12px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); transition: .3s;
}
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw 2rem; z-index: 99;
  flex-direction: column; gap: 1.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .9rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color .2s; padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--sage-dark); }
.nav-mobile .nav-cta { text-align: center; margin-top: .4rem; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  padding: .75rem 2rem;
  background: var(--sage);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: .82rem; font-weight: 400;
  color: var(--sage-dark); letter-spacing: .06em;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════
   SCROLL-REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  contain: layout style;
}
/* will-change wird nicht mehr global gesetzt, sondern per JS unmittelbar
   vor dem Einblenden (main.js, IntersectionObserver). Globales will-change
   auf vielen Elementen frisst Speicher und kann auf schwachen Mobilgeräten
   das Compositing-Budget sprengen. */
.reveal.is-animating { will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }

/* ═══════════════════════════════════════
   SEITENHEADER (Unterseiten)
   ═══════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; color: #fff;
  letter-spacing: .04em; position: relative; z-index: 1;
}

@media (max-width: 900px) {
  .page-hero {
    background:
      linear-gradient(to bottom, rgba(10,25,12,.45) 0%, rgba(10,25,12,.55) 100%),
      image-set(
        url('../hero-bg.webp') type('image/webp'),
        url('../hero-bg.jpg') type('image/jpeg')
      ) center top / cover no-repeat;
  }
}

/* ═══════════════════════════════════════
   KONTAKT-STRIP (wiederverwendet)
   ═══════════════════════════════════════ */
#contact-strip {
  padding: 5rem 7vw;
  background: var(--sage-dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
#contact-strip .strip-eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: .6rem;
}
#contact-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; color: #fff; margin-bottom: .6rem;
}
#contact-strip > div:first-child p {
  color: rgba(255,255,255,.6); font-size: 1.05rem; font-weight: 300;
}
.contact-info { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.contact-item {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.8); font-size: 1rem;
  transition: color .2s;
}
.contact-item:hover { color: #fff; }
.contact-item svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.contact-btn {
  display: inline-block; padding: .7rem 1.8rem;
  background: var(--gold); color: #fff;
  font-size: .76rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .2s, transform .2s; margin-top: .4rem;
}
.contact-btn:hover { background: #a0893f; transform: translateY(-1px); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: #111a12;
  padding: 2.5rem 7vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
  font-size: .88rem; color: rgba(255,255,255,.72);
}
footer .footer-logo img { width: 42px; height: 39px; opacity: .7; }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { color: rgba(255,255,255,.72); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.92); }
footer strong { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 44px; height: 44px;
  background: var(--sage); color: #fff;
  border: none; border-radius: 2px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
}
.back-top.visible { opacity: 1; transform: none; }
.back-top:hover { background: var(--sage-dark); }
.back-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ═══════════════════════════════════════
   SECTION GEMEINSAM
   ═══════════════════════════════════════ */
.section-eyebrow {
  font-size: .82rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .8rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--text); line-height: 1.2;
}
.section-divider { width: 44px; height: 1.5px; background: var(--gold); margin: 1.2rem 0; }

/* Globale Fließtext-Größe */
p, li { font-size: 1.12rem; }
.kontakt-data-item a,
.kontakt-data-item span { font-size: 1.05rem; line-height: 1.7; }

/* Legal-Page-Hero (Impressum / Datenschutz / Cookie) */
.page-hero--compact {
  min-height: 160px;
  padding-top: var(--nav-h);
}
.page-hero--compact h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ═══════════════════════════════════════
   LEGAL CONTENT (Impressum / Datenschutz / Cookie)
   ═══════════════════════════════════════ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 5vw 6rem;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--text); margin: 2.5rem 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: .9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--sage-dark); margin: 1.6rem 0 .4rem;
}
.legal-content p, .legal-content li {
  font-size: .93rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.85;
  margin-bottom: .7rem;
}
.legal-content ul { padding-left: 1.4rem; margin-bottom: .7rem; }
.legal-content a { color: var(--sage-dark); }
.legal-content a:hover { text-decoration: underline; }
.legal-note {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  padding: 1rem 1.3rem;
  font-size: .88rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.75;
  margin: 1.2rem 0;
}
.toc {
  background: var(--cream); border: 1px solid var(--border);
  padding: 1.5rem 1.8rem; border-radius: 2px; margin-bottom: 2.5rem;
}
.toc h3,
.toc .toc-title { margin-top: 0; margin-bottom: .8rem; font-size: .82rem; font-weight: 700; }
.toc ol { padding-left: 1.2rem; }
.toc li { font-size: .88rem; margin-bottom: .3rem; }
.toc a { color: var(--sage-dark); }
.legal-stand {
  margin-top: 2.5rem;
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Cookie-Tabelle (Cookie-Richtlinie) */
.cookie-table {
  width: 100%; border-collapse: collapse;
  margin: 1.2rem 0 1.8rem; font-size: .88rem;
}
.cookie-table th {
  background: var(--sage-dark); color: #fff;
  padding: .6rem .9rem; text-align: left;
  font-weight: 500; letter-spacing: .04em;
}
.cookie-table td {
  padding: .55rem .9rem; color: var(--text-muted); font-weight: 300;
  border-bottom: 1px solid var(--border);
}
.cookie-table tr:nth-child(even) td { background: var(--cream); }
.browser-list { display: flex; flex-direction: column; gap: .3rem; margin: .8rem 0 1.2rem; }
.browser-list a { font-size: .9rem; color: var(--sage-dark); }

/* ═══════════════════════════════════════
   ACCORDION (Praxis / Wissenswertes)
   ═══════════════════════════════════════ */
.accordion-list { max-width: 860px; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 2px; margin-bottom: .8rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  color: var(--text); text-align: left;
  transition: background .2s; gap: 1rem;
}
.accordion-trigger:hover { background: var(--sage-light); }
.accordion-trigger svg {
  width: 18px; height: 18px; stroke: var(--sage);
  fill: none; stroke-width: 2;
  transition: transform .5s ease; flex-shrink: 0;
}
.accordion-trigger.open { background: var(--sage-light); }
.accordion-trigger.open svg { transform: rotate(180deg); }

.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .6s ease, padding .6s ease;
  padding: 0 1.4rem;
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.85;
}
.accordion-body.open {
  max-height: 800px;
  padding: .4rem 1.4rem 1.4rem;
}
.accordion-body p {
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9;
  margin-bottom: .8rem;
}
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body ul { padding-left: 1.2rem; margin-bottom: .8rem; }
.accordion-body ul li {
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.7;
  margin-bottom: .3rem;
}
.accordion-body .hinweis {
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  font-size: .93rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.7;
  border-radius: 2px;
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .8rem;
}
.btn-hinweis {
  display: inline-block;
  padding: .25rem .75rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--sage-dark);
  border: 1px solid var(--sage);
  border-radius: 2px;
  white-space: nowrap;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.btn-hinweis:hover { background: var(--sage); color: #fff; }

/* ═══════════════════════════════════════
   ACCESSIBILITY – Skip-Link & Fokus
   ═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  z-index: 1000;
  padding: .8rem 1.2rem;
  background: var(--sage-dark); color: #fff;
  font-size: .9rem; font-weight: 500;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 600px) {
  #contact-strip { flex-direction: column; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════
   MOBILE NAV – SUB-LINKS (statt Hover-Dropdown)
   Tastatur-/Touch-Nutzer kommen auf Mobile nicht ans Hover-Dropdown,
   daher werden die Sub-Sektionen hier als sichtbare, eingerückte Links
   direkt unter dem Haupteintrag dargestellt.
   ═══════════════════════════════════════ */
.nav-mobile .nav-sub {
  display: flex; flex-direction: column;
  margin: -.6rem 0 .2rem 1.2rem;
  padding-left: .9rem;
  border-left: 1px solid var(--border);
  gap: 0;
}
.nav-mobile .nav-sub a {
  font-size: .78rem; letter-spacing: .08em;
  padding: .35rem 0;
  border-bottom: none;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 400;
}
.nav-mobile .nav-sub a:hover { color: var(--sage-dark); }

/* ═══════════════════════════════════════
   SEITE: index.html
   ═══════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { opacity: 0;   transform: scale(1.0)  translate(0,0); }
  40%  { opacity: .18; transform: scale(1.05) translate(-6px,-3px); }
  100% { opacity: 0;   transform: scale(1.0)  translate(0,0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ── BANNER ── */
/* svh: stabile Viewport-Höhe, ignoriert Mobile-Browser-UI-Toggle → kein CLS */
#banner {
  height: 100svh; min-height: 560px;
  position: relative; overflow: hidden;
}
@supports not (height: 100svh) {
  #banner { height: 100vh; }
}
.banner-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.banner-video video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.banner-shimmer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 58% 42%,
    rgba(255,235,150,.22) 0%, transparent 68%);
  animation: shimmer 9s ease-in-out 3;
}
.banner-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(5,18,8,.2) 0%, rgba(5,18,8,.04) 40%, rgba(5,18,8,.52) 100%);
}
.banner-claim {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: .9rem;
  padding: var(--nav-h) 5vw 0;
}
.banner-logo {
  width: 88px; height: 81px;
  border-radius: 50%;
  animation: fadeUp .8s .1s both;
  margin-bottom: .2rem;
}
.banner-eyebrow {
  font-size: .72rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  animation: fadeUp .8s .3s both;
}
.banner-claim h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.2; color: #fff;
  animation: fadeUp .8s .45s both;
}
.banner-scroll {
  position: absolute; bottom: 2.2rem;
  left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  z-index: 4;
  color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; cursor: pointer;
  text-align: center;
  animation: fadeUp 1s 1.1s both;
}
.banner-scroll svg {
  width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6;
  display: block; margin: 0 auto;
  animation: bounce-y 2.2s 2s 4;
}

/* ── WELCOME ── */
#welcome {
  display: grid; grid-template-columns: 3fr 2fr;
  align-items: center;
  background: var(--warm-white);
  position: relative; overflow: hidden;
}
.welcome-deco {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 580px; height: 580px; border-radius: 50%;
  background: var(--sage-light); opacity: .4; pointer-events: none;
}
.welcome-left {
  padding: 6rem 5vw 6rem 7vw;
  position: relative; z-index: 1;
}
.welcome-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.2;
  color: var(--text); margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.welcome-text {
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9;
  max-width: 100%; margin-bottom: 2rem;
}
.welcome-text--tight { margin-top: -.8rem; }
.welcome-right {
  position: relative; z-index: 1;
  padding: 4rem 5vw 4rem 2vw;
  display: flex; align-items: center; justify-content: center;
}
.welcome-img-frame { position: relative; width: min(400px, 90%); aspect-ratio: 2 / 3; }
.welcome-img-frame img {
  width: 100%; height: 100%; aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px 56px 4px 4px; display: block;
}
.welcome-img-deco {
  position: absolute; top: -18px; right: -18px;
  width: 72px; height: 72px;
  border: 1.5px solid var(--sage);
  border-radius: 4px 56px 4px 4px; opacity: .3;
}

/* ── ZITAT ── */
#quote {
  padding: 5rem 10vw;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400; font-style: italic;
  color: var(--text-muted); line-height: 1.65;
  max-width: 820px; margin: 0 auto;
}

/* ── MÖGLICHKEITEN ── */
#moeglichkeiten {
  padding: 6rem 7vw;
  background: var(--warm-white);
}
.moeg-header { text-align: center; margin-bottom: 3.5rem; }
.moeg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 960px; margin: 0 auto;
}
.moeg-col h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 400;
  color: var(--sage-dark); margin-bottom: .5rem;
}
.moeg-col .moeg-divider {
  width: 100%; height: 1px; background: var(--border); margin-bottom: 1.2rem;
}
.moeg-col p {
  font-size: .93rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9; margin-bottom: 1.4rem;
}
.moeg-col strong { color: var(--text); font-weight: 500; font-style: italic; }

/* ── FEATURE KARTEN ── */
#features {
  padding: 5rem 5vw;
  background: var(--cream);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2.4rem 1.6rem;
  border-radius: 2px; text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(63,92,66,.09);
}
.feature-icon {
  width: 50px; height: 50px; margin: 0 auto 1.2rem;
  color: var(--sage);
}
.feature-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.feature-card p {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400;
  color: var(--text); line-height: 1.5;
}

/* Index – Responsive */
@media (max-width: 1024px) {
  #welcome { grid-template-columns: 1fr; }
  .welcome-right { padding: 2rem 5vw 4rem; }
  .welcome-img-frame { width: min(360px, 90%); }
  #features { grid-template-columns: repeat(2, 1fr); }
  .moeg-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .welcome-left { padding: 3rem 5vw; }
  #features { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   SEITE: ueber-mich.html
   ═══════════════════════════════════════ */

#info-cards {
  padding: 5rem 7vw;
  background: var(--warm-white);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sage);
  padding: 2rem 1.8rem;
  border-radius: 2px;
}
.info-card h2,
.info-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 400;
  color: var(--sage-dark); margin-bottom: .6rem;
  margin-top: 0;
}
.info-card p {
  font-size: .92rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.8;
}

#portrait {
  padding: 6rem 7vw;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 5rem;
}
.portrait-img { position: relative; }
.portrait-img img {
  width: 100%; max-height: 560px; object-fit: cover;
  border-radius: 4px 56px 4px 4px;
}
.portrait-img-deco {
  position: absolute; top: -18px; right: -18px;
  width: 72px; height: 72px;
  border: 1.5px solid var(--sage);
  border-radius: 4px 56px 4px 4px; opacity: .3;
}
.portrait-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text);
  margin-bottom: 1rem;
}
.portrait-text p {
  font-size: 1.12rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9; margin-bottom: 1.2rem;
}
.portrait-cta { margin-top: 2rem; }

.akkred-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(63, 92, 66, 0.72);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.92);
  padding: 1.2rem 1.5rem;
  font-size: 1rem; font-weight: 300; line-height: 1.65;
  border-radius: 0 0 4px 4px;
}

@media (max-width: 900px) {
  .akkred-badge {
    position: static;
    background: rgba(63, 92, 66, 0.55);
    backdrop-filter: blur(4px);
    border-radius: 0 0 4px 4px;
    margin-top: 0;
  }
  #info-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  #portrait { grid-template-columns: 1fr; gap: 2.5rem; display: flex; flex-direction: column; }
  .portrait-text { order: 1; }
  .portrait-img  { order: 2; }
  .portrait-img img { max-height: 340px; }
}

/* ═══════════════════════════════════════
   SEITE: praxis.html
   ═══════════════════════════════════════ */

#praxis-intro {
  padding: 5rem 7vw 4rem;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.praxis-intro-img img {
  width: 100%; height: 100%; min-height: 340px;
  object-fit: cover; border-radius: 4px;
}
.praxis-intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--text); margin-bottom: 1rem;
}
.praxis-intro-text p {
  font-size: 1.08rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9;
}

#methoden {
  padding: 5rem 7vw;
  background: var(--cream);
}
.methoden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.methoden-left {
  align-self: stretch;
  display: flex; align-items: center;
}
.methoden-left img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  border-radius: 4px;
}
.methoden-right h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--text);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1.2rem;
}
.methode-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.methode-list li {
  font-size: .95rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.55;
  padding: .45rem 0 .45rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.methode-list li::before {
  content: '';
  position: absolute; left: 0;
  top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
}
.methode-list li:last-child { border-bottom: none; }
.methode-list li strong { color: var(--sage-dark); font-weight: 500; }

#kosten {
  padding: 5rem 7vw;
  background: var(--warm-white);
}
.kosten-header { margin-bottom: 2.5rem; }
.praxis-note {
  margin-top: 2rem; max-width: 760px;
  padding: 1.3rem 1.5rem;
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.8;
}

@media (max-width: 900px) {
  #praxis-intro { grid-template-columns: 1fr; gap: 2rem; }
  .praxis-intro-img img { min-height: 260px; }
  .methoden-inner { grid-template-columns: 1fr; }
  .methoden-left img { min-height: 260px; height: 300px; }
}

/* ═══════════════════════════════════════
   SEITE: wissenswertes.html
   ═══════════════════════════════════════ */

#wissen-intro {
  padding: 4rem 7vw 3rem;
  background: var(--warm-white);
  max-width: 860px;
}
#wissen-intro p {
  font-size: 1.08rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9;
}

.wissen-section { padding: 4rem 7vw; }
.wissen-section:nth-child(odd)  { background: var(--warm-white); }
.wissen-section:nth-child(even) { background: var(--cream); }

.wissen-section-header { margin-bottom: 2.5rem; }
.wissen-section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--text);
}
.wissen-section-header p {
  margin-top: .8rem;
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.8;
  max-width: 720px;
}

.faq-trigger { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }

@media (max-width: 768px) {
  .wissen-section { padding: 3rem 5vw; }
  #wissen-intro   { padding: 3rem 5vw 2rem; }
}

/* ═══════════════════════════════════════
   SEITE: kontakt.html
   ═══════════════════════════════════════ */

#kontakt-main {
  padding: 6rem 7vw;
  background: var(--warm-white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}

.kontakt-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--text); margin-bottom: 1rem;
}
.kontakt-left p {
  font-size: .95rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.9; margin-bottom: 2rem;
}
.kontakt-data {
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.kontakt-data-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.kontakt-data-item .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontakt-data-item .icon svg {
  width: 18px; height: 18px; stroke: var(--sage-dark);
  fill: none; stroke-width: 1.8;
}
.kontakt-data-item .text { padding-top: .2rem; }
.kontakt-data-item .label {
  font-size: .72rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .15rem;
}
.kontakt-data-item a, .kontakt-data-item span {
  font-size: .95rem; color: var(--text);
  font-weight: 300; transition: color .2s;
}
.kontakt-data-item a:hover { color: var(--sage-dark); }
.kontakt-data-item .kontakt-opening,
.kontakt-data-item .kontakt-anfahrt {
  font-size: .92rem;
  line-height: 1.75;
}

.warteliste-box {
  background: var(--sage-dark); color: #fff;
  padding: 1.8rem; border-radius: 2px;
}
.warteliste-box h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400; margin-bottom: .6rem;
}
.warteliste-box p {
  font-size: .88rem; color: rgba(255,255,255,.7);
  font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem;
}

.notfall-hinweis {
  margin-top: 1.4rem;
  padding: .9rem 1.1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.notfall-hinweis p {
  margin: 0;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}
.notfall-hinweis a {
  color: var(--sage-dark);
  text-decoration: underline;
}

.kontakt-right h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--text); margin-bottom: 1rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 2px; font-family: var(--sans);
  font-size: 1rem; font-weight: 300; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,122,94,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note {
  font-size: .8rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.7; margin-bottom: 1.4rem;
}
.form-hint {
  font-size: .78rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.6;
  margin: -.2rem 0 .55rem;
  font-style: italic;
}
.form-consent {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-bottom: 1.4rem; font-size: .85rem; line-height: 1.6;
  color: var(--text-muted); font-weight: 300;
}
.form-consent input[type="checkbox"] {
  width: 1.05rem; height: 1.05rem; margin-top: .2rem;
  accent-color: var(--sage); flex-shrink: 0;
}
.form-consent a { color: var(--sage-dark); text-decoration: underline; }
.hp-field {
  position: absolute !important;
  left: -10000px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-success {
  display: none; padding: 1.2rem 1.4rem;
  background: var(--sage-light); border-left: 3px solid var(--sage);
  font-size: .9rem; color: var(--sage-dark); margin-top: 1rem;
}
/* Initial-Status für die JS-gesteuerte Result-Box */
#form-result {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem 1.3rem;
  font-size: .93rem; font-weight: 300; line-height: 1.75;
  border-radius: 2px;
}
#form-result.is-success {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  color: var(--sage-dark);
}
#form-result.is-error {
  background: #fdecea;
  border-left: 3px solid #c0392b;
  color: #7b241c;
}

@media (max-width: 900px) {
  #kontakt-main { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── MAPS FACADE ── */
#maps { padding: 0 7vw 4rem; background: var(--warm-white); }
.maps-facade {
  position: relative; width: 100%; height: 480px;
  border-radius: 4px; overflow: hidden; cursor: pointer;
  background: var(--cream);
}
.maps-facade picture { display: block; width: 100%; height: 100%; }
.maps-facade img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.92);
  transition: filter .3s, transform .6s;
}
.maps-facade:hover img { filter: saturate(1.05); transform: scale(1.015); }
.maps-facade .maps-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}
.maps-facade .maps-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 1.4rem;
  background: #fff; color: var(--sage-dark);
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.maps-facade .maps-btn svg {
  width: 16px; height: 16px;
  stroke: var(--sage-dark); fill: none; stroke-width: 2;
}
.maps-facade:focus { outline: 3px solid var(--sage); outline-offset: 2px; }
.maps-facade iframe { width: 100%; height: 100%; border: 0; display: block; }
.maps-hinweis {
  margin-top: .8rem; font-size: .78rem;
  color: var(--text-muted); line-height: 1.6;
}
.maps-hinweis a { color: var(--sage-dark); text-decoration: underline; }

/* ═══════════════════════════════════════
   SEITE: 404.html
   ═══════════════════════════════════════ */
.err-wrap {
  min-height: calc(100vh - var(--nav-h));
  padding: 6rem 5vw;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: var(--warm-white);
}
.err-code {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.err-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.err-text {
  max-width: 520px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.err-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ═══════════════════════════════════════
   FOOTER – Inline-Style entfernt
   ═══════════════════════════════════════ */
.footer-logo p { margin-top: .5rem; }
.footer-logo p + p { margin-top: 0; }

/* ═══════════════════════════════════════
   WERDEGANG / QUALIFIKATION (ueber-mich)
   ═══════════════════════════════════════ */
#werdegang {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 1.5rem 1rem;
}
.cv-lead {
  max-width: 760px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin: 1.4rem 0 .5rem;
}
.cv-group { margin-top: 2.6rem; }
.cv-group-title {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.cv-row {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: .4rem 1.6rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}
.cv-row:last-child { border-bottom: none; }
.cv-period {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.cv-detail { color: var(--text); line-height: 1.5; }
.cv-detail strong { font-weight: 600; }
.cv-detail span {
  display: block;
  color: var(--text-muted);
  font-weight: 300;
  font-size: .92rem;
  margin-top: .15rem;
}
@media (max-width: 640px) {
  #werdegang { padding-top: 3rem; }
  .cv-row { grid-template-columns: 1fr; gap: .1rem; padding: .75rem 0; }
  .cv-period { font-size: .82rem; }
}

/* Quellen-/Leitlinien-Hinweis in Akkordeon-Texten (wissenswertes) */
.accordion-body .quelle {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.accordion-body .quelle a {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--border);
}
.accordion-body .quelle a:hover { border-color: var(--sage); }
