/* ============================================================
   Praxis Dr. med. Clemens Nietfeld · Frauenarztpraxis Oldenburg
   Gemeinsames Stylesheet (Design-System)
   Basis: freigegebener Entwurf · erweitert um Unterseiten-Komponenten
   ============================================================ */

:root{
  --bordeaux:#7a180b;
  --bordeaux-deep:#4d0d05;
  --bordeaux-soft:#9a2a2a;
  --bordeaux-tint:#f5ebe9;
  --warm-cream:#fbf7f3;
  --warm-paper:#f5efe8;
  --ink:#241612;
  --ink-soft:#5a4a44;
  --line:#e6dad3;
  --gold:#c9a87a;
  --shadow-sm:0 2px 8px rgba(74,16,8,.06);
  --shadow-md:0 14px 40px rgba(74,16,8,.10);
  --shadow-lg:0 30px 80px rgba(74,16,8,.16);
  --radius:18px;
  --radius-lg:28px;
  --serif:'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:1360px;
  --space-section:clamp(4rem, 2rem + 5vw, 7rem);
}
*{box-sizing:border-box;margin:0;padding:0;min-width:0}
html{
  scroll-behavior:smooth;-webkit-text-size-adjust:100%;
  overflow-x:clip;max-width:100%;   /* clip statt hidden: kappt horizontalen Überlauf OHNE Scroll-Container → position:sticky bleibt intakt */
  scroll-padding-top:5.5rem;   /* Anker/Skip-Link landen unter der Menüleiste, nicht darunter verdeckt */
}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--warm-cream);
  line-height:1.65;
  font-weight:400;
  font-size:17px;
  overflow-x:clip;   /* clip statt hidden — sonst wird body zum Scroll-Container und bricht das sticky des Headers */
  width:100%;
  max-width:100vw;
  position:relative;
}
img,svg,video,iframe{max-width:100%;height:auto;display:block}
iframe{width:100%}
a{color:var(--bordeaux);text-decoration:none;transition:color .2s}
a:hover{color:var(--bordeaux-deep)}
h1,h2,h3,h4{
  font-family:var(--serif);font-weight:600;line-height:1.18;color:var(--ink);
  letter-spacing:-.01em;
  /* Saubere Umbrüche: ausbalancierte Zeilen, KEINE automatische Silbentrennung.
     Sehr lange Komposita werden gezielt per &shy; im Markup getrennt. */
  text-wrap:balance;
  overflow-wrap:break-word;
  hyphens:manual;
}
h1{font-size:clamp(2rem, 1.3rem + 3.4vw, 4.2rem);font-weight:700;letter-spacing:-.02em}
h2{font-size:clamp(1.7rem, 1.2rem + 2vw, 2.8rem)}
h3{font-size:clamp(1.15rem, 1rem + .7vw, 1.45rem)}
p{color:var(--ink-soft);max-width:62ch;overflow-wrap:break-word;hyphens:manual;text-wrap:pretty}
.container{
  max-width:var(--container);
  margin:0 auto;
  /* Durchgängiger Seitenrand: min. ~24px auf Handys, skaliert bis 2.75rem auf großen Screens */
  padding:0 clamp(1.5rem, .9rem + 3vw, 2.75rem);
  width:100%;
}
.eyebrow{
  font-family:var(--sans);
  font-size:.72rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:var(--bordeaux);
  display:inline-flex;align-items:center;gap:.7rem;
  margin-bottom:1.1rem;line-height:1.45;max-width:100%;
}
.eyebrow::before,.eyebrow::after{content:"";width:24px;height:1.5px;background:var(--gold);flex-shrink:0}
.reveal{opacity:1;transform:none}
.js-ready .reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1)}
.js-ready .reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
  .js-ready .reveal{opacity:1;transform:none}
}

/* Skip-Link (Barrierefreiheit) */
.skip-link{
  position:absolute;left:8px;top:-60px;z-index:200;
  background:var(--bordeaux);color:#fff;padding:.7rem 1.1rem;border-radius:10px;
  font-weight:600;font-size:.9rem;transition:top .2s;
}
.skip-link:focus{top:8px;color:#fff}

/* Sichtbarer Fokus für Tastaturnutzung */
a:focus-visible,button:focus-visible,input:focus-visible,
textarea:focus-visible,select:focus-visible,summary:focus-visible{
  outline:3px solid var(--bordeaux);outline-offset:2px;border-radius:4px;
}
/* Auf dunklen Flaechen ist Bordeaux zu kontrastarm -> dort Gold */
.hours-band :focus-visible,.cta-band :focus-visible,footer.site :focus-visible{
  outline-color:var(--gold);
}

/* Header */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(251,247,243,.94);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid rgba(122,24,11,.08);
  width:100%;
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
/* Auto-Hide: beim Runterscrollen ausblenden, beim Hochscrollen sofort wieder einblenden.
   Steuerung via .is-hidden aus site.js (bei prefers-reduced-motion inaktiv → bleibt sichtbar). */
header.site.is-hidden{transform:translateY(-100%)}
.nav-row{
  display:flex;align-items:center;justify-content:space-between;
  padding-block:.85rem;gap:1rem;          /* nur vertikal — horizontaler Gutter kommt vom .container */
  min-width:0;flex-wrap:nowrap;
}
/* Header-Leiste die volle Breite nutzen lassen (nicht auf --container deckeln) —
   sonst quetscht es Wortmarke + Nav + Buttons und die Unterzeile wird abgeschnitten. */
header.site .container{max-width:none}
.brand{display:inline-flex;align-items:center;gap:.55rem;color:var(--ink);flex-shrink:1;min-width:0;overflow:hidden}
.brand img{height:46px;width:auto;max-width:100%}
nav.main ul{display:flex;list-style:none;gap:1.5rem;align-items:center}
nav.main a{font-weight:500;color:var(--ink);font-size:.95rem;position:relative;padding:.25rem 0}
nav.main a::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:1.5px;background:var(--bordeaux);transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.16,1,.3,1)}
nav.main a:hover::after,nav.main a[aria-current="page"]::after{transform:scaleX(1)}
nav.main a[aria-current="page"]{color:var(--bordeaux)}
.header-cta{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--bordeaux);color:#fff;padding:.7rem 1.2rem;border-radius:99px;
  border:1.5px solid transparent;
  font-weight:600;font-size:.92rem;transition:transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  box-shadow:0 6px 20px rgba(122,24,11,.25);
}
.header-cta:hover{background:var(--bordeaux-deep);color:#fff;transform:translateY(-1px);box-shadow:0 10px 28px rgba(122,24,11,.35)}
.header-cta svg{width:16px;height:16px;flex-shrink:0}
/* Sekundärer Outline-Button (Anruf) — neben dem gefüllten Termin-Button */
.header-cta.alt{background:transparent;color:var(--bordeaux);border-color:var(--bordeaux);box-shadow:none}
.header-cta.alt:hover{background:var(--bordeaux);color:#fff;border-color:var(--bordeaux)}
/* Unter Desktop: Header-Buttons als kompakte Icon-Buttons — Labels (Termin / Telefonnr.)
   erscheinen erst ab 1240px, wo genug Platz neben Wortmarke + Nav ist. */
@media (max-width:1299px){
  .header-cta{padding:0;width:44px;height:44px;justify-content:center;font-size:0}
  .header-cta span:not(.sr){display:none}
  .header-cta svg{width:19px;height:19px}
}
.mobile-toggle{display:none;background:none;border:0;cursor:pointer;padding:.5rem;color:var(--ink)}
.mobile-toggle svg{width:26px;height:26px}

/* Hero (Startseite) */
.hero{
  position:relative;
  padding:clamp(1.25rem, .75rem + 1.5vw, 3rem) 0 clamp(2.5rem, 2rem + 4vw, 5rem);
  overflow:hidden;
  width:100%;
}
.hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(800px 500px at 85% 10%, rgba(122,24,11,.10), transparent 60%),
    radial-gradient(700px 600px at 10% 90%, rgba(201,168,122,.10), transparent 60%),
    linear-gradient(180deg, var(--warm-cream), var(--warm-paper));
}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,2vw + 1rem,4.5rem);align-items:center;min-width:0}
.hero-grid > *{min-width:0}
.hero-text .eyebrow{margin-bottom:1.5rem}
.hero h1{margin-bottom:1.25rem}
.hero h1 .accent{color:var(--bordeaux);font-style:italic;font-weight:600}
.hero-lead{font-size:1.18rem;color:var(--ink-soft);margin-bottom:2rem;max-width:54ch}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:.85rem;margin-bottom:2.5rem}
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.95rem 1.6rem;border-radius:99px;font-weight:600;font-size:.98rem;
  transition:transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  border:1.5px solid transparent;cursor:pointer;
}
.btn-primary{background:var(--bordeaux);color:#fff;box-shadow:0 10px 26px rgba(122,24,11,.28)}
.btn-primary:hover{background:var(--bordeaux-deep);color:#fff;transform:translateY(-2px);box-shadow:0 14px 34px rgba(122,24,11,.36)}
.btn-ghost{color:var(--bordeaux);border-color:rgba(122,24,11,.3);background:transparent}
.btn-ghost:hover{background:var(--bordeaux);color:#fff;border-color:var(--bordeaux)}
.btn svg{width:18px;height:18px}
.hero-trust{display:flex;flex-wrap:wrap;gap:1.75rem;padding-top:1.75rem;border-top:1px solid var(--line)}
.trust-item{display:flex;align-items:flex-start;gap:.65rem}
.trust-item svg{width:22px;height:22px;color:var(--bordeaux);flex-shrink:0;margin-top:2px}
.trust-item span{font-size:.88rem;line-height:1.45;color:var(--ink-soft)}
.trust-item strong{display:block;color:var(--ink);font-weight:600;margin-bottom:1px}

.hero-visual{position:relative;min-width:0;max-width:100%}
.hero-image{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;max-width:100%;
}
.hero-image img{width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero-card{
  position:absolute;background:#fff;border-radius:var(--radius);
  padding:1rem 1.2rem;box-shadow:var(--shadow-md);
  display:flex;align-items:center;gap:.75rem;
  max-width:min(90%, 280px);
}
/* Beide Karten unten (Rasen-/Hosenzone des Teamfotos) — die Gesichter liegen in der oberen
   Bildhälfte und dürfen auf KEINEM Gerät verdeckt werden. Links/rechts vertikal versetzt,
   damit sich die Karten auch auf schmalen Screens nicht überlappen. */
.hero-card-top{bottom:22%;left:0;top:auto}
.hero-card-bottom{bottom:5%;right:0;}
.hero-card .icon-circle{
  width:42px;height:42px;border-radius:50%;background:var(--bordeaux-tint);
  display:flex;align-items:center;justify-content:center;color:var(--bordeaux);flex-shrink:0;
}
.hero-card .icon-circle svg{width:22px;height:22px}
.hero-card .label{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:var(--ink-soft);font-weight:600}
.hero-card .value{font-family:var(--serif);font-size:1.05rem;color:var(--ink);font-weight:600;line-height:1.2}

/* Notice strip (optional, einfach ein-/ausschaltbar) */
.notice-strip{
  background:linear-gradient(95deg, var(--bordeaux-deep), var(--bordeaux));
  color:#fff;text-align:center;font-size:.92rem;
  padding:.85rem 1rem;
  line-height:1.5;
  overflow-wrap:break-word;
}
.notice-strip strong{font-weight:600;margin-right:.4rem}
.notice-strip a{color:#fff;text-decoration:underline;text-underline-offset:3px}

/* ---- Hinweisfenster (optional, im internen Bereich zuschaltbar) ----------------
   Natives <dialog>: bringt Fokusführung + Esc mit. Ohne JS bleibt es geschlossen. */
.hinweis-modal{
  border:0;padding:clamp(1.75rem,1.2rem + 2vw,2.75rem);
  border-radius:var(--radius-lg);
  max-width:min(92vw,34rem);width:100%;
  /* margin:auto zentriert das Fenster — MUSS gesetzt werden, weil der globale
     *{margin:0}-Reset die Browser-Zentrierung von <dialog> sonst aufhebt. */
  margin:auto;
  color:var(--ink);
  /* Feine Goldkante oben als Hintergrund-Ebene (nicht als eigenes Element):
     so folgt sie der Eckenrundung und steht nicht über die Kanten hinaus. */
  background:
    linear-gradient(90deg,var(--gold),rgba(201,168,122,.25)) top center / 100% 3px no-repeat,
    var(--warm-cream);
  box-shadow:0 30px 80px rgba(42,32,24,.28);
  position:relative;
}
.hinweis-modal::backdrop{background:rgba(42,16,10,.55);backdrop-filter:blur(3px)}
.hinweis-modal .hm-kopf{display:flex;align-items:center;gap:.75rem;margin-bottom:.9rem}
.hinweis-modal .hm-icon{
  width:40px;height:40px;border-radius:50%;flex-shrink:0;
  background:var(--bordeaux-tint);color:var(--bordeaux);
  display:flex;align-items:center;justify-content:center;
}
.hinweis-modal .hm-icon svg{width:22px;height:22px}
.hinweis-modal .eyebrow{margin:0}
.hinweis-modal h2{
  font-size:clamp(1.5rem,1.2rem + 1.1vw,1.95rem);margin:0 0 .85rem;line-height:1.15;
}
.hinweis-modal .hm-text{color:var(--ink-soft);font-size:1.05rem;line-height:1.65}
.hinweis-modal .hm-text a{color:var(--bordeaux);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.hinweis-modal .hm-aktion{margin-top:1.5rem;display:flex;justify-content:flex-end}
.hinweis-modal .hm-schliessen{
  position:absolute;top:.85rem;right:.85rem;
  width:38px;height:38px;border-radius:50%;
  border:0;background:transparent;color:var(--ink-soft);
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background .2s ease,color .2s ease;
}
.hinweis-modal .hm-schliessen:hover{background:rgba(122,24,11,.08);color:var(--bordeaux)}
.hinweis-modal .hm-schliessen svg{width:20px;height:20px}
/* Sanftes Auf- und Zublenden (Fenster + abgedunkelter Hintergrund) */
@keyframes hinweisModalAuf{
  from{opacity:0;transform:translateY(12px) scale(.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes hinweisModalZu{
  from{opacity:1;transform:translateY(0) scale(1)}
  to{opacity:0;transform:translateY(6px) scale(.975)}
}
@keyframes hinweisBackdropAuf{from{opacity:0}to{opacity:1}}
@keyframes hinweisBackdropZu{from{opacity:1}to{opacity:0}}

.hinweis-modal[open]{animation:hinweisModalAuf .34s cubic-bezier(.16,1,.3,1)}
.hinweis-modal[open]::backdrop{animation:hinweisBackdropAuf .34s ease}
/* .ist-zu wird von site.js kurz vor dem eigentlichen Schließen gesetzt */
.hinweis-modal[open].ist-zu{animation:hinweisModalZu .24s cubic-bezier(.4,0,.7,1) forwards}
.hinweis-modal[open].ist-zu::backdrop{animation:hinweisBackdropZu .24s ease forwards}
@media (max-width:520px){
  .hinweis-modal .hm-aktion{justify-content:stretch}
  .hinweis-modal .hm-aktion .btn{width:100%;justify-content:center}
}

/* Sections base */
section{padding:var(--space-section) 0;position:relative}
/* Section-Kopf: 2-spaltig editorial (Eyebrow+Überschrift links, Lead rechts) — nutzt die Breite */
.section-head{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-areas:"eyebrow eyebrow" "heading lead";
  column-gap:clamp(2rem,3.5vw,4rem);align-items:start;
  text-align:left;max-width:none;
  margin:0 0 clamp(1.6rem,2.2vw,2.6rem);
}
.section-head .eyebrow{grid-area:eyebrow;margin-bottom:.9rem}
.section-head h2{grid-area:heading;font-size:clamp(1.35rem,1.1rem + .95vw,1.8rem);margin:0;max-width:20ch}
/* Signatur-Akzent (bordeaux-kursiv) auf dem Betonungswort — wie im Hero, statt schlichtem Kursiv */
.section-head h2 em,.section-head h2 .accent{color:var(--bordeaux);font-style:italic;font-weight:600}
/* Lead auf Höhe der Überschrift, mit feiner Gold-Trennlinie */
.section-head p{
  grid-area:lead;margin:0;font-size:1.02rem;max-width:56ch;
  padding-top:.3rem;padding-left:clamp(1.75rem,2.8vw,2.75rem);
  border-left:2px solid rgba(201,168,122,.55);
}
@media (max-width:1023px){
  .section-head{grid-template-columns:1fr;grid-template-areas:"eyebrow" "heading" "lead"}
  .section-head p{border-left:0;padding-left:0;padding-top:0;margin-top:.9rem;max-width:62ch}
}
/* Kompakte Einleitung (Eyebrow + ein Satz, ohne zweite große Überschrift) — direkt vor einem Grid */
.section-intro{margin:0 0 clamp(1.6rem,2.2vw,2.6rem);max-width:70ch}
.section-intro .eyebrow{margin-bottom:.7rem}
.section-intro p{font-size:1.12rem;line-height:1.6;color:var(--ink-soft);margin:0}

/* About */
.about-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(2rem,3vw,4.5rem);align-items:center;min-width:0}
.about-grid > *{min-width:0}
.about-portrait{
  border-radius:var(--radius-lg);overflow:hidden;position:relative;
  box-shadow:var(--shadow-md);aspect-ratio:4/5;max-width:100%;
}
.about-portrait img{width:100%;height:100%;object-fit:cover}
.about-portrait::after{
  content:"";position:absolute;inset:auto 8px -8px auto;
  width:55%;height:55%;border:2px solid var(--gold);
  border-radius:var(--radius-lg);z-index:-1;pointer-events:none;
}
.about-text h2{margin-bottom:1.5rem}
.about-text p{margin-bottom:1.2rem;font-size:1.05rem}
.about-signature{
  margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--line);
  display:flex;align-items:center;gap:1rem;
}
.about-signature .stamp{
  width:62px;height:62px;border-radius:50%;
  background:var(--bordeaux);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:1.5rem;font-weight:600;flex-shrink:0;
}
.about-signature .who{font-family:var(--serif);font-size:1.18rem;color:var(--ink);font-weight:600}
.about-signature .role{font-size:.88rem;color:var(--ink-soft);word-break:break-word}

/* Services */
.services{background:var(--warm-paper)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.3rem;
  min-width:0;
}
.services-grid > *{min-width:0}
.service-card{
  background:#fff;border-radius:var(--radius);
  padding:2rem 1.75rem;border:1px solid var(--line);
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
  position:relative;overflow:hidden;
}
.service-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg, var(--bordeaux), var(--gold));
  transform:scaleX(0);transform-origin:left;transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{
  width:54px;height:54px;border-radius:14px;
  background:var(--bordeaux-tint);color:var(--bordeaux);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;
}
.service-icon svg{width:28px;height:28px}
.service-card h3{margin-bottom:.6rem}
.service-card p{font-size:.95rem}
/* Variante: anklickbare Leistungs-Karte */
a.service-card{display:block;color:inherit}
a.service-card .more{
  display:inline-flex;align-items:center;gap:.35rem;margin-top:1rem;
  color:var(--bordeaux);font-weight:600;font-size:.9rem;
}
a.service-card .more svg{width:16px;height:16px;transition:transform .3s}
a.service-card:hover .more svg{transform:translateX(4px)}

/* Praxisräume (Bento) */
.rooms{position:relative}
.rooms-bento{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  grid-template-rows:auto auto;
  gap:1rem;
  grid-template-areas:
    "doc waiting"
    "doc lab";
  min-width:0;
}
.rooms-bento > *{min-width:0}
.bento{
  border-radius:var(--radius);overflow:hidden;position:relative;
  background:#222;aspect-ratio:4/3;box-shadow:var(--shadow-sm);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.bento:hover{transform:scale(1.01)}
.bento img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.16,1,.3,1)}
.bento:hover img{transform:scale(1.04)}
.bento::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(40,8,4,.78) 100%);
}
.bento .label{
  position:absolute;left:1.2rem;bottom:1rem;color:#fff;z-index:1;
}
.bento .label .kicker{font-size:.7rem;text-transform:uppercase;letter-spacing:.18em;opacity:.85;font-weight:600}
.bento .label .title{font-family:var(--serif);font-size:1.2rem;font-weight:600;margin-top:.25rem}
.bento.doc{grid-area:doc;aspect-ratio:auto}
.bento.waiting{grid-area:waiting}
.bento.lab{grid-area:lab}
.bento.ultrasound{grid-area:ultrasound;aspect-ratio:16/9}

/* Team */
.team{background:var(--warm-paper)}
.team-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  margin-top:3rem;min-width:0;
}
.team-grid > *{min-width:0}
.team-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.team-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.team-photo{aspect-ratio:4/5;overflow:hidden;background:var(--bordeaux-tint)}
.team-photo img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.16,1,.3,1)}
.team-card:hover .team-photo img{transform:scale(1.04)}
.team-info{padding:1.4rem 1.5rem 1.6rem}
.team-info h3{font-size:1.18rem;margin-bottom:.25rem}
.team-info .role{color:var(--bordeaux);font-size:.88rem;font-weight:600;letter-spacing:.02em}
.team-feature{
  margin-top:2.5rem;background:#fff;border-radius:var(--radius-lg);
  overflow:hidden;display:grid;grid-template-columns:1.3fr 1fr;
  border:1px solid var(--line);box-shadow:var(--shadow-sm);
}
.team-feature-img{aspect-ratio:auto;overflow:hidden}
.team-feature-img img{width:100%;height:100%;object-fit:cover;min-height:280px}
.team-feature-text{padding:clamp(1.75rem,3vw,3rem);display:flex;flex-direction:column;justify-content:center}
.team-feature-text h3{font-size:1.5rem;margin-bottom:.8rem}
.team-feature-text p{font-size:1rem;margin-bottom:1rem}

/* Trust / Qualifikation */
.trust-band{
  background:linear-gradient(180deg, var(--warm-cream), var(--warm-paper));
  padding:clamp(3rem,5vw,5rem) 0;
}
.trust-grid{
  display:grid;grid-template-columns:1fr 1.4fr;gap:clamp(2rem,3vw,4rem);align-items:center;min-width:0;
}
.trust-grid > *{min-width:0}
.trust-image{
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-md);background:#fff;
  padding:1.5rem;
}
.trust-image img{border-radius:8px;width:100%}
.trust-points{display:flex;flex-direction:column;gap:1.4rem;margin-top:2rem}
.trust-point{display:flex;gap:1rem;align-items:flex-start}
.trust-point .num{
  width:38px;height:38px;border-radius:50%;flex-shrink:0;
  background:var(--bordeaux);color:#fff;display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-weight:700;font-size:1.05rem;
}
.trust-point h4{font-family:var(--serif);font-size:1.12rem;margin-bottom:.25rem;color:var(--ink);font-weight:600}
.trust-point p{font-size:.95rem;margin:0}

/* Sprechzeiten */
.hours-band{
  background:var(--ink);color:#fff;
  background-image:linear-gradient(135deg, #2a0e08 0%, #1a0604 100%);
}
.hours-band h2,.hours-band h3{color:#fff}
.hours-band p{color:rgba(255,255,255,.75)}
.hours-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(2rem,3vw,4rem);align-items:center;min-width:0}
.hours-grid > *{min-width:0}
.hours-table{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);overflow:hidden;
  width:100%;
}
.hours-row{
  display:grid;grid-template-columns:minmax(0,1fr) auto;
  padding:1rem 1.25rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  align-items:center;gap:.75rem;
}
.hours-row:last-child{border-bottom:0}
.hours-row.today{background:rgba(154,42,42,.18);position:relative}
.hours-row.today::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--gold);
}
.hours-row .day{font-weight:600;font-family:var(--serif);font-size:1.05rem}
.hours-row .time{color:rgba(255,255,255,.85);font-variant-numeric:tabular-nums;font-size:.95rem}
.hours-row.closed .time{color:rgba(255,255,255,.62)}
.hours-row.today .badge{
  display:inline-block;background:var(--gold);color:#3a0d0d;
  padding:.18rem .55rem;border-radius:99px;font-size:.7rem;font-weight:700;
  letter-spacing:.05em;margin-left:.65rem;text-transform:uppercase;
}
.hours-side h2{margin-bottom:1rem}
.hours-side .lead{font-size:1.05rem;margin-bottom:1.5rem}
/* Sprechzeiten-Seite: Tabelle als zentriertes Kernstück (Hero darüber ist die Überschrift) */
.hours-solo{max-width:760px;margin:0 auto}
.hours-cta{display:flex;justify-content:center;margin-top:clamp(1.75rem,2.5vw,2.5rem)}
.hours-note{
  margin-top:1.5rem;padding:1.25rem 1.4rem;
  border-left:3px solid var(--gold);
  background:rgba(201,168,122,.08);
  border-radius:0 12px 12px 0;font-size:.92rem;
}
.hours-note strong{color:#fff;display:block;margin-bottom:.25rem}

/* Kontakt */
.contact-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(2rem,3vw,3.5rem);min-width:0}
.contact-grid > *{min-width:0}
.contact-info{
  background:#fff;border-radius:var(--radius);padding:clamp(1.5rem,2.5vw,2.5rem);
  border:1px solid var(--line);
}
.contact-info h3{margin-bottom:1.5rem}
.contact-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:1.1rem}
.contact-list li{display:flex;gap:1rem;align-items:flex-start}
.contact-list .ic{
  width:40px;height:40px;border-radius:10px;background:var(--bordeaux-tint);
  color:var(--bordeaux);display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-list .ic svg{width:20px;height:20px}
.contact-list .label-sm{font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;color:var(--ink-soft);font-weight:600;display:block;margin-bottom:2px}
.contact-list .value{font-family:var(--serif);font-size:1.05rem;color:var(--ink);font-weight:500;line-height:1.4}
.contact-list .value a{color:var(--ink)}
.contact-list .value a:hover{color:var(--bordeaux)}
.map-wrap{
  border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow-sm);
  min-height:420px;background:#eee;
}
.map-wrap iframe{display:block;width:100%;height:100%;min-height:420px;border:0}
/* Aktionszeile unter der Karte: „Route mit Google Maps planen" (reiner Link, keine Einbindung → keine Einwilligung nötig) */
.map-actions{display:flex;justify-content:center;margin-top:clamp(1rem,1.6vw,1.5rem)}
.approach{
  margin-top:1.5rem;padding:1.5rem;border-radius:12px;
  background:var(--warm-paper);border:1px solid var(--line);
}
.approach h4{font-family:var(--serif);font-size:1.05rem;margin-bottom:.5rem;color:var(--ink)}
.approach ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.5rem}
.approach li{font-size:.92rem;color:var(--ink-soft);padding-left:1.25rem;position:relative}
.approach li::before{content:"→";position:absolute;left:0;color:var(--bordeaux);font-weight:600}
.approach li strong{color:var(--ink);font-weight:600}

/* Footer */
footer.site{
  background:var(--ink);color:rgba(255,255,255,.75);
  padding:clamp(2.5rem,4vw,4rem) 0 1.5rem;
}
.footer-grid{
  display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem;
  min-width:0;
}
.footer-grid > *{min-width:0}
footer.site .brand-foot{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem}
footer.site .brand-foot img{height:38px;filter:brightness(0) invert(1);opacity:.95}
footer.site .brand-foot .brand-name{font-family:var(--serif);font-size:1.25rem;color:#fff;font-weight:600}
footer.site p{color:rgba(255,255,255,.7);font-size:.92rem;max-width:38ch}
footer.site h2{
  font-family:var(--sans);font-size:.78rem;text-transform:uppercase;letter-spacing:.15em;
  color:rgba(255,255,255,.5);font-weight:600;margin-bottom:1rem;line-height:1.3;
}
footer.site ul{list-style:none;display:flex;flex-direction:column;gap:.55rem}
footer.site ul a, footer.site ul li{color:rgba(255,255,255,.85);font-size:.92rem}
footer.site ul a:hover{color:#fff}
.footer-bottom{
  padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.1);
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:.75rem;
  font-size:.82rem;color:rgba(255,255,255,.5);
}
.footer-bottom nav{display:flex;gap:1.25rem;flex-wrap:wrap}
.footer-bottom nav a{color:rgba(255,255,255,.6)}
.footer-bottom nav a:hover{color:#fff}

/* ============================================================
   UNTERSEITEN-KOMPONENTEN
   ============================================================ */

/* Kompakter Seitenkopf für Unterseiten */
.page-hero{
  position:relative;overflow:hidden;
  padding:clamp(1.4rem,1rem + 1.4vw,2.1rem) 0 clamp(1rem,.75rem + 1vw,1.6rem);
}
.page-hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(700px 420px at 88% -10%, rgba(122,24,11,.10), transparent 60%),
    radial-gradient(620px 520px at 5% 110%, rgba(201,168,122,.10), transparent 60%),
    linear-gradient(180deg, var(--warm-cream), var(--warm-paper));
}
.page-hero h1{font-size:clamp(1.8rem,1.2rem + 1.9vw,2.85rem);margin:.55rem 0 .85rem;max-width:20ch}
.page-hero .lead{font-size:1.05rem;color:var(--ink-soft);max-width:58ch}
.page-hero h1 em,.page-hero h1 .accent{color:var(--bordeaux);font-style:italic;font-weight:600}
/* Der Page-Hero ist bereits der Seitenkopf: erste Folge-Sektion enger anschließen,
   damit keine große Leerfläche entsteht. */
.page-hero + section{padding-top:clamp(.75rem, .5rem + 1vw, 1.5rem)}
/* Steht ein Grid ohne Section-Head als erstes Element (Unterseiten), den
   vorgesehenen Kopf-Abstand entfernen, damit keine Lücke klafft. */
.container > .team-grid:first-child,
.container > .services-grid:first-child{margin-top:0}

/* Breadcrumb */
.breadcrumb{font-size:.84rem;color:var(--ink-soft)}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;padding:0}
.breadcrumb li{display:flex;align-items:center;gap:.4rem}
.breadcrumb li::after{content:"/";color:var(--line);margin-left:.4rem}
.breadcrumb li:last-child::after{content:""}
.breadcrumb a{color:var(--ink-soft);font-weight:500}
.breadcrumb a:hover{color:var(--bordeaux)}
.breadcrumb [aria-current="page"]{color:var(--bordeaux);font-weight:600}

/* Lesefluss / Fließtext (Recht, Schwerpunkt-Seiten) */
.content-narrow{max-width:820px;margin:0 auto}

/* Prose nutzt auf großen Screens die volle Breite: 2-spaltig, Überschriften über beide Spalten */
@media (min-width:1080px){
  .prose.content-narrow{max-width:var(--container)}
  .prose{columns:2;column-gap:clamp(3rem,4vw,5rem)}
  .prose > *{break-inside:avoid}
  .prose > h2,.prose > h3,.prose > h4{break-after:avoid}
  .prose > h2{margin-top:2rem}
  .prose > h2:first-child{margin-top:0}
}
.prose h2{font-size:clamp(1.4rem,1.1rem + 1.4vw,2rem);margin:2.5rem 0 1rem}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:1.25rem;margin:1.75rem 0 .65rem}
.prose h4{font-size:1.05rem;margin:1.4rem 0 .5rem;font-family:var(--sans);font-weight:700;color:var(--ink)}
.prose p{margin-bottom:1.05rem;font-size:1.04rem;max-width:none}
.prose ul,.prose ol{margin:0 0 1.2rem 1.2rem;color:var(--ink-soft)}
.prose li{margin-bottom:.5rem;padding-left:.25rem}
.prose li::marker{color:var(--bordeaux)}
.prose a{font-weight:600;text-decoration:underline;text-underline-offset:3px;text-decoration-color:rgba(122,24,11,.35)}
.prose a:hover{text-decoration-color:var(--bordeaux)}
.prose strong{color:var(--ink)}
.prose hr{border:0;border-top:1px solid var(--line);margin:2.5rem 0}
.prose address{font-style:normal;color:var(--ink-soft)}
.prose .muted{color:var(--ink-soft);font-size:.92rem}

/* Info-/Hinweisbox */
.callout{
  background:#fff;border:1px solid var(--line);border-left:4px solid var(--bordeaux);
  border-radius:0 14px 14px 0;padding:1.25rem 1.5rem;margin:1.5rem 0;
  box-shadow:var(--shadow-sm);
}
.callout.gold{border-left-color:var(--gold)}
/* zentrierte Callouts (mit .content-narrow) wirklich mittig — .callout-margin würde sonst links ziehen */
.callout.content-narrow{margin-left:auto;margin-right:auto}
.callout h4{font-family:var(--serif);font-size:1.1rem;margin-bottom:.4rem;color:var(--ink)}
.callout p{margin:0;font-size:.96rem}
.callout p + p{margin-top:.6rem}
/* Voller-Breite CTA-Streifen (statt schwebender zentrierter Karte): Text links, Button rechts,
   linksbündig mit dem übrigen Sektionsinhalt, füllt die volle Inhaltsbreite. */
.callout.callout-cta{
  display:grid;grid-template-columns:1fr auto;align-items:center;
  column-gap:clamp(1.5rem,3vw,3rem);
  margin:clamp(2rem,3vw,3rem) 0 0;
  padding:clamp(1.5rem,1rem + 1.2vw,1.9rem) clamp(1.6rem,1rem + 1.6vw,2.1rem);
}
.callout.callout-cta .callout-cta-text{min-width:0}
.callout.callout-cta h3{
  font-family:var(--serif);color:var(--ink);margin:0 0 .4rem;line-height:1.2;
  font-size:clamp(1.3rem,1.1rem + .8vw,1.55rem);   /* über die Spalten-h3 gehoben = klarer Höhepunkt */
}
.callout.callout-cta .callout-cta-text p{margin:0;font-size:1.02rem;line-height:1.6;max-width:70ch}
.callout.callout-cta .btn{white-space:nowrap;flex-shrink:0}
.callout .btn-primary:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
@media (max-width:640px){
  .callout.callout-cta{grid-template-columns:1fr;row-gap:1.1rem;justify-items:start}
  .callout.callout-cta .btn{width:100%;justify-content:center}
}
/* Dezenter Reveal-Stagger nur in der Hinweise-Sektion */
#hinweise .media-split.reveal{transition-delay:.08s}
#hinweise .callout.reveal{transition-delay:.16s}
/* Breites 2-spaltiges Highlight: Label links, Text rechts — bündig links, füllt die Breite */
.callout.split{
  display:grid;grid-template-columns:auto minmax(0,68ch);
  column-gap:clamp(2rem,4vw,4.5rem);row-gap:.4rem;align-items:start;
  width:fit-content;max-width:100%;margin:clamp(2rem,3vw,3rem) 0 0;padding:clamp(1.4rem,2vw,1.9rem) clamp(1.6rem,2.5vw,2.2rem);
}
.callout.split h4{margin:0;font-size:1.3rem;max-width:11ch;line-height:1.2}
@media (max-width:720px){
  .callout.split{grid-template-columns:1fr;row-gap:.55rem}
  .callout.split h4{max-width:none}
}

/* Feature-Liste mit Häkchen */
.check-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:1rem}
/* WICHTIG: li NICHT als flex — sonst zerreißt es Inline-Inhalt (strong/Text/Link)
   in einzelne Spalten. Stattdessen Icon/Haken links, Text fließt normal weiter. */
.check-list li{color:var(--ink-soft);font-size:1rem;line-height:1.55;position:relative;padding-left:2.1rem}
.check-list li strong{color:var(--ink)}
.check-list li > svg{position:absolute;left:0;top:.2em;width:22px;height:22px;color:var(--bordeaux)}
/* Listenpunkte ohne Icon bekommen einen schlichten Haken als Marker */
.check-list li:not(:has(> svg))::before{content:"✓";position:absolute;left:.05rem;top:.2em;line-height:1;color:var(--bordeaux);font-weight:700}
/* Inline-Links in Listen & Intro-Absätzen sichtbar machen (Affordanz + WCAG 1.4.1) */
.check-list a,.media-split p a{color:var(--bordeaux);font-weight:600;text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px;text-decoration-color:rgba(122,24,11,.35);transition:text-decoration-color .2s,color .2s}
.check-list a:hover,.media-split p a:hover{color:var(--bordeaux-deep);text-decoration-color:var(--bordeaux)}

/* Zwei-Spalten Media + Text */
.media-split{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,3vw,4rem);align-items:center;min-width:0;
}
.media-split > *{min-width:0}
.media-split p{max-width:none}            /* Text füllt seine Spalte — keine leere rechte Hälfte */
.media-split .media-text > :first-child{margin-top:0}
.media-split.reverse .media-split-img{order:2}
.media-split-img{
  border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);
  aspect-ratio:4/3;height:100%;min-height:320px;
}
.media-split-img img{width:100%;height:100%;object-fit:cover}

/* News / Aktuelles */
.news-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.5rem}
.news-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.news-card .news-media{aspect-ratio:16/9;overflow:hidden;background:var(--bordeaux-tint)}
.news-card .news-media img{width:100%;height:100%;object-fit:cover}
.news-body{padding:1.4rem 1.5rem 1.6rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
.news-meta{display:flex;align-items:center;gap:.75rem;font-size:.78rem;color:var(--ink-soft);flex-wrap:wrap}
.news-date{font-variant-numeric:tabular-nums;letter-spacing:.02em}
.news-tag{
  display:inline-block;background:var(--bordeaux-tint);color:var(--bordeaux);
  font-weight:600;text-transform:uppercase;letter-spacing:.08em;
  padding:.2rem .6rem;border-radius:99px;font-size:.68rem;
}
.news-card h3{font-size:1.2rem;margin:.15rem 0 .25rem}
.news-card p{font-size:.95rem;margin:0}
.news-empty{
  text-align:center;padding:3rem 1.5rem;color:var(--ink-soft);
  border:1px dashed var(--line);border-radius:var(--radius);background:#fff;
}

/* Downloads */
.download-list{display:flex;flex-direction:column;gap:1rem;max-width:760px;margin:0 auto}
/* Kompaktes Download-Band: Erklärtext links, Karte rechts — eine Zeile statt Turm */
.download-band{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);
  column-gap:clamp(2.5rem,5vw,5.5rem);align-items:center;
}
.download-band .section-intro{margin:0;max-width:44ch}
.download-band .download-list{max-width:none;margin:0}
@media (max-width:980px){
  .download-band{grid-template-columns:1fr;row-gap:1.5rem}
}
/* Download-Panel: gibt dem Formular-Bereich einen Rahmen mit Substanz —
   Site-Sprache der Callouts (goldene Akzentkante, warmes Papier), nur großformatig. */
.download-panel{
  background:var(--warm-paper);
  border:1px solid var(--line);
  border-left:4px solid var(--gold);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  padding:clamp(1.75rem,1.25rem + 2vw,3rem) clamp(1.5rem,1rem + 2.5vw,3.25rem);
  box-shadow:var(--shadow-sm);
}
.download-panel .download-item{border-color:rgba(122,24,11,.14)}
/* Enger Sektionsrhythmus (für Seiten mit wenigen, kompakten Blöcken) */
.section-snug{padding:clamp(1.75rem,1.25rem + 2vw,3rem) 0}
/* Aktuelles ohne Beiträge: freundlicher Leer-Hinweis */
.news-leer{
  max-width:52ch;margin:0;padding:1.4rem 1.6rem;
  background:var(--warm-paper);border:1px solid var(--line);
  border-left:4px solid var(--gold);border-radius:0 14px 14px 0;
  color:var(--ink-soft);font-size:1.05rem;
}
.download-item{
  display:flex;align-items:center;gap:1.1rem;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:1.1rem 1.3rem;transition:transform .3s, box-shadow .3s, border-color .3s;
}
.download-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm);border-color:rgba(122,24,11,.3)}
.download-item .dl-ic{
  width:48px;height:48px;border-radius:12px;flex-shrink:0;
  background:var(--bordeaux-tint);color:var(--bordeaux);
  display:flex;align-items:center;justify-content:center;
}
.download-item .dl-ic svg{width:24px;height:24px}
.download-item .dl-text{flex:1;min-width:0}
.download-item .dl-text strong{display:block;font-family:var(--serif);font-size:1.08rem;color:var(--ink);font-weight:600}
.download-item .dl-text span{font-size:.86rem;color:var(--ink-soft)}
.download-item .dl-action{
  flex-shrink:0;display:inline-flex;align-items:center;gap:.4rem;
  background:var(--bordeaux);color:#fff;padding:.6rem 1.1rem;border-radius:99px;
  font-weight:600;font-size:.88rem;transition:background .25s, transform .25s;
}
.download-item .dl-action:hover{background:var(--bordeaux-deep);color:#fff;transform:translateY(-1px)}
.download-item .dl-action svg{width:16px;height:16px}
.download-item.is-pending{opacity:.75}
.download-item.is-pending .dl-action{background:var(--ink-soft);pointer-events:none}

/* Formular */
.form-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(1.5rem,2.5vw,2.5rem);box-shadow:var(--shadow-sm);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.field{display:flex;flex-direction:column;gap:.4rem}
.field.full{grid-column:1 / -1}
.field label{font-size:.86rem;font-weight:600;color:var(--ink)}
.field .req{color:var(--bordeaux)}
.field input,.field textarea,.field select{
  font-family:var(--sans);font-size:1rem;color:var(--ink);
  background:var(--warm-cream);border:1.5px solid var(--line);border-radius:12px;
  padding:.8rem .95rem;transition:border-color .25s, box-shadow .25s, background .25s;
  width:100%;
}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--bordeaux);background:#fff;
  box-shadow:0 0 0 3px rgba(122,24,11,.1);
}
.field textarea{min-height:150px;resize:vertical}
.field .hint{font-size:.78rem;color:var(--ink-soft)}
.consent{display:flex;gap:.7rem;align-items:flex-start;font-size:.88rem;color:var(--ink-soft);line-height:1.5}
.consent input{width:20px;height:20px;margin-top:2px;accent-color:var(--bordeaux);flex-shrink:0}
.consent a{font-weight:600;text-decoration:underline;text-underline-offset:2px}
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-actions{margin-top:1.4rem;display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.form-status{font-size:.92rem;font-weight:500;margin-top:1rem;border-radius:10px;padding:0;line-height:1.5}
.form-status.is-shown{padding:.85rem 1.1rem}
.form-status.ok{background:rgba(40,120,60,.1);color:#1f6b35;border:1px solid rgba(40,120,60,.25)}
.form-status.err{background:rgba(122,24,11,.08);color:var(--bordeaux-deep);border:1px solid rgba(122,24,11,.25)}
.btn[disabled],.btn[aria-disabled="true"]{opacity:.6;pointer-events:none}

/* FAQ / Accordion (details) */
.faq{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.85rem}
.faq details{
  background:#fff;border:1px solid var(--line);border-radius:14px;
  padding:0 1.4rem;
}
.faq details[open]{box-shadow:var(--shadow-sm);border-color:rgba(122,24,11,.25)}
.faq summary{
  list-style:none;cursor:pointer;padding:1.15rem 0;
  font-family:var(--serif);font-size:1.1rem;font-weight:600;color:var(--ink);
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary .chev{flex-shrink:0;width:22px;height:22px;color:var(--bordeaux);transition:transform .3s}
.faq details[open] summary .chev{transform:rotate(180deg)}
.faq .faq-body{padding:0 0 1.2rem;color:var(--ink-soft);font-size:1rem}
.faq .faq-body p{margin-bottom:.75rem}
.faq .faq-body p:last-child{margin-bottom:0}
/* Sauberes, ruckelfreies Aufklappen: Inhalt sanft einblenden (statt hartem Snap/Flackern) */
@keyframes faqReveal{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.faq details[open] .faq-body{animation:faqReveal .28s cubic-bezier(.16,1,.3,1)}

/* Galerie */
.gallery-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:1rem;grid-auto-flow:dense;
}
.gallery-grid .g-item{
  border-radius:var(--radius);overflow:hidden;position:relative;
  aspect-ratio:4/3;box-shadow:var(--shadow-sm);background:var(--bordeaux-tint);
}
.gallery-grid .g-item.wide{grid-column:span 2}
.gallery-grid .g-item img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.16,1,.3,1)}
.gallery-grid .g-item:hover img{transform:scale(1.05)}

/* CTA-Band (wiederverwendbar) */
.cta-band{
  background-image:linear-gradient(135deg, #2a0e08 0%, #1a0604 100%);
  color:#fff;text-align:center;
}
.cta-band h2{color:#fff;margin-bottom:1rem}
.cta-band p{color:rgba(255,255,255,.8);margin:0 auto 2rem;font-size:1.08rem}
.cta-band .btn-primary{background:var(--gold);color:#3a0d0d;box-shadow:0 10px 26px rgba(201,168,122,.3)}
.cta-band .btn-primary:hover{background:#d8bd95;color:#3a0d0d}
.cta-band .btn-ghost{color:#fff;border-color:rgba(255,255,255,.4)}
.cta-band .btn-ghost:hover{background:#fff;color:var(--bordeaux);border-color:#fff}
.cta-row{display:flex;gap:.85rem;justify-content:center;flex-wrap:wrap}

/* Termin-Einbettung (xWebtermin Platzhalter) */
.embed-frame{
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  box-shadow:var(--shadow-sm);background:#fff;min-height:540px;
}
.embed-frame iframe{display:block;width:100%;height:100%;min-height:540px;border:0}
.embed-placeholder{
  min-height:420px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;gap:1rem;padding:2.5rem 1.5rem;
  border:2px dashed var(--line);border-radius:var(--radius);background:#fff;
}
.embed-placeholder .ph-ic{
  width:64px;height:64px;border-radius:50%;background:var(--bordeaux-tint);color:var(--bordeaux);
  display:flex;align-items:center;justify-content:center;
}
.embed-placeholder .ph-ic svg{width:32px;height:32px}
.embed-placeholder h3{font-size:1.3rem}
.embed-placeholder p{max-width:46ch;margin:0 auto}

/* Kleine Helfer */
.sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.text-center{text-align:center}
.mt-2{margin-top:2rem}
.section-tight{padding:clamp(2.5rem,2rem + 3vw,4.5rem) 0}

/* Schritt-/Stufen-Karten (z.B. Vorsorge-Screenings) */
.step-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem;min-width:0}
.step-grid > *{min-width:0}
.step-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:1.9rem 1.6rem;position:relative;overflow:hidden;
  display:flex;flex-direction:column;gap:.5rem;
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.step-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.step-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--bordeaux),var(--gold))}
.step-card .step-num{
  width:34px;height:34px;border-radius:50%;background:var(--bordeaux-tint);color:var(--bordeaux);
  display:inline-flex;align-items:center;justify-content:center;font-family:var(--serif);font-weight:700;font-size:1rem;
}
.step-card .step-when{font-family:var(--serif);color:var(--bordeaux);font-weight:600;font-size:1.15rem;margin-top:.35rem}
.step-card h3{font-size:1.1rem;margin:0}
.step-card p{font-size:.94rem;margin:0}

/* 2-spaltige Check-Liste — füllt breite Layouts ohne Lücke */
.check-grid{display:grid;grid-template-columns:1fr 1fr;column-gap:clamp(3rem,6vw,7rem);row-gap:1.5rem;min-width:0;max-width:none;margin:0}
.check-grid > *{min-width:0}

/* Ablauf-Schritte (nummeriert, zweispaltig) */
.process{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem 3rem;min-width:0;max-width:980px;margin:0 auto}
.process > *{min-width:0}
.p-step{display:flex;gap:1rem;align-items:flex-start}
.p-step .p-num{
  width:42px;height:42px;border-radius:50%;flex-shrink:0;
  background:var(--bordeaux);color:#fff;display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-weight:700;font-size:1.1rem;
}
.p-step h3{font-family:var(--serif);font-size:1.12rem;margin-bottom:.3rem;color:var(--ink);font-weight:600}
.p-step p{font-size:.95rem;margin:0;max-width:42ch}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1023px){
  nav.main ul{gap:1.25rem}
  .hero-grid{grid-template-columns:1fr;gap:2.5rem}
  .hero-image{aspect-ratio:5/4;max-width:560px;margin:0 auto}
  .hero-visual{max-width:600px;margin:0 auto}
  .about-grid,.trust-grid,.hours-grid,.contact-grid,.media-split{grid-template-columns:1fr;gap:2.5rem}
  .media-split.reverse .media-split-img{order:0}
  .team-feature{grid-template-columns:1fr}
  .team-feature-img img{min-height:240px}
  .rooms-bento{grid-template-columns:1fr 1fr;grid-template-areas:"doc doc" "waiting lab"}
  .bento.doc{aspect-ratio:16/9}
  .services-grid{grid-template-columns:repeat(2, 1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .about-portrait{max-width:480px;margin:0 auto}
  .map-wrap{min-height:340px}
  .map-wrap iframe{min-height:340px}
}
/* Nav als Hamburger bis ~1080px — Inline-Nav nur, wenn genug Platz neben Wortmarke + Buttons */
@media (max-width:1080px){
  nav.main{display:none}
  nav.main.is-open{
    display:block;position:absolute;top:100%;left:0;right:0;
    background:var(--warm-cream);border-top:1px solid var(--line);
    box-shadow:var(--shadow-md);
    max-width:100vw;
    /* Bei geringer Fensterhoehe (z. B. Querformat) scrollbar machen —
       sonst sind die unteren Menuepunkte nicht erreichbar. */
    max-height:calc(100vh - 4.5rem);
    max-height:calc(100dvh - 4.5rem);
    overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;
  }
  nav.main.is-open ul{flex-direction:column;align-items:stretch;padding:1rem 1.5rem;gap:0}
  nav.main.is-open li{border-bottom:1px solid var(--line)}
  nav.main.is-open li:last-child{border:0}
  nav.main.is-open a{display:block;padding:.85rem 0;font-size:1rem}
  .mobile-toggle{display:block}
}
@media (max-width:640px){
  body{font-size:16px}
  .nav-row{padding-block:.65rem;gap:.5rem}
  .brand img{height:38px}
  .header-cta{padding:0;font-size:.85rem;width:42px;height:42px;justify-content:center}
  .header-cta span:not(.sr){display:none}
  .header-cta svg{width:18px;height:18px}
  .mobile-toggle{padding:.4rem;margin-right:-.25rem}
  .notice-strip{font-size:.82rem;padding:.7rem .9rem;line-height:1.45}
  .hero{padding:2rem 0 2.5rem}
  .hero-image{aspect-ratio:4/5;max-width:100%;border-radius:var(--radius)}
  .hero-visual{max-width:100%}
  .hero-card{padding:.7rem .85rem;gap:.55rem;border-radius:14px;max-width:min(85%, 220px)}
  .hero-card .icon-circle{width:34px;height:34px}
  .hero-card .icon-circle svg{width:18px;height:18px}
  .hero-card .label{font-size:.6rem;letter-spacing:.08em}
  .hero-card .value{font-size:.85rem}
  .hero-card-top{bottom:24%;left:4%;top:auto}   /* unten bleiben — nie über den Gesichtern */
  .hero-card-bottom{bottom:4%;right:4%}
  .hero-lead{font-size:1.02rem}
  .hero-cta-row .btn{width:100%;justify-content:center}
  .hero-trust{flex-direction:column;gap:.9rem;padding-top:1.25rem}
  .services-grid{grid-template-columns:1fr;gap:1rem}
  .service-card{padding:1.4rem 1.25rem}
  .team-grid{grid-template-columns:1fr;gap:1rem}
  .team-feature-text{padding:1.5rem}
  .rooms-bento{grid-template-columns:1fr;grid-template-areas:"doc" "waiting" "lab";gap:.75rem}
  .bento,.bento.doc{aspect-ratio:4/3}
  .bento .label{left:1rem;bottom:.85rem}
  .bento .label .title{font-size:1.05rem}
  .footer-grid{grid-template-columns:1fr;gap:1.75rem}
  .footer-bottom{flex-direction:column;gap:.75rem;text-align:left;align-items:flex-start}
  .hours-row{padding:.85rem 1rem;gap:.5rem}
  .hours-row .day{font-size:.95rem}
  .hours-row .time{font-size:.85rem}
  .hours-row.today .badge{font-size:.62rem;padding:.15rem .4rem;margin-left:.4rem}
  .about-signature{flex-wrap:wrap;gap:.85rem}
  .about-portrait{max-width:100%}
  .about-portrait::after{display:none}
  .about-text h2 br{display:none}
  .trust-image{padding:.85rem}
  .contact-info{padding:1.5rem 1.25rem}
  .contact-list .ic{width:36px;height:36px}
  .contact-list .ic svg{width:18px;height:18px}
  .contact-list .value{font-size:1rem;word-break:break-word}
  .approach{padding:1.25rem}
  .approach li{font-size:.88rem;line-height:1.55}
  .map-wrap, .map-wrap iframe{min-height:300px}
  h1{letter-spacing:-.01em}
  h1 .accent{display:inline}
  .section-head p{font-size:1rem}
  .form-grid{grid-template-columns:1fr}
  .download-item{flex-wrap:wrap}
  .download-item .dl-action{width:100%;justify-content:center}
  .gallery-grid .g-item.wide{grid-column:span 1}
}
@media (max-width:420px){
  .nav-row{padding-block:.5rem}
  .brand img{height:34px}
  .header-cta{padding:.5rem .65rem}
  .notice-strip{font-size:.78rem;padding:.65rem .8rem}
  .notice-strip strong{display:inline-block}
  h1{font-size:1.85rem}
  h2{font-size:1.55rem}
  .hero-lead{font-size:.98rem}
  .eyebrow{font-size:.66rem;letter-spacing:.13em;gap:.55rem}
  .eyebrow::before,.eyebrow::after{width:18px}
  .hero-card{max-width:min(80%, 195px);padding:.6rem .75rem}
  .hero-card .value{font-size:.78rem}
  .hero-card .label{font-size:.55rem}
  .service-card{padding:1.25rem 1rem}
  .service-icon{width:46px;height:46px}
  .service-icon svg{width:22px;height:22px}
  .hours-row{padding:.7rem .85rem;grid-template-columns:1fr;gap:.15rem}
  .hours-row .time{text-align:left;color:rgba(255,255,255,.7)}
  .hours-row.today .badge{margin-left:.35rem}
  .about-signature .stamp{width:54px;height:54px;font-size:1.3rem}
  .about-signature .who{font-size:1.05rem}
  .contact-list li{gap:.75rem}
  .contact-list .value{font-size:.95rem}
  .trust-point .num{width:32px;height:32px;font-size:.9rem}
  .trust-point h4{font-size:1rem}
}

/* Responsive für neue Unterseiten-Komponenten */
@media (max-width:860px){
  .check-grid,.process{grid-template-columns:1fr;max-width:640px;gap:1.2rem}
}
@media (max-width:640px){
  .step-grid{grid-template-columns:1fr}
}

/* Check-Listen innerhalb von Callouts etwas kompakter (Marker kommt aus der Basis-Regel) */
.callout .check-list{margin-top:.9rem;gap:.5rem}
.callout .check-list li{font-size:.95rem}

/* Buchungs-Karte (echte Online-Terminbuchung, kein Platzhalter) */
.booking-card{
  text-align:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:clamp(2rem,1.5rem + 3vw,3.5rem) 1.5rem;box-shadow:var(--shadow-md);
  display:flex;flex-direction:column;align-items:center;gap:1rem;
  background-image:radial-gradient(640px 220px at 50% -10%, rgba(122,24,11,.06), transparent);
}
.booking-card .bc-ic{width:68px;height:68px;border-radius:50%;background:var(--bordeaux);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.booking-card .bc-ic svg{width:32px;height:32px}
.booking-card h3{font-size:clamp(1.3rem,1.1rem + .8vw,1.6rem)}
.booking-card p{max-width:48ch;margin:0 auto}
.booking-card .btn{margin-top:.4rem}

/* Wortmarke (Praxis hat kein Logo — nur Schriftzüge) */
.brand-mark{display:flex;flex-direction:column;line-height:1.05;min-width:0}
.brand .brand-name{font-family:var(--serif);font-weight:700;font-size:1.4rem;color:var(--ink);letter-spacing:-.01em;white-space:nowrap}
.brand-sub{font-family:var(--sans);font-size:.6rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--bordeaux);margin-top:.16rem;white-space:nowrap}
@media (max-width:640px){
  .brand .brand-name{font-size:1.12rem}
  .brand-sub{font-size:.48rem;letter-spacing:.05em}
}
@media (max-width:420px){
  .brand .brand-name{font-size:1rem}
  /* Kleinste Handys: Unterzeile kompakter + Icon-Buttons minimal kleiner,
     damit Wortmarke + Termin + Anruf + Menü ohne Abschneiden passen. */
  .brand-sub{font-size:.44rem;letter-spacing:.03em}
  .header-cta{width:40px;height:40px}
}

/* ============================================================
   DESIGN-AUDIT FIXES (Welle 1 — global)
   ============================================================ */

/* FAQ: sichtbares Chevron (Klasse liegt auf <summary>) + Open-Rotation */
.faq summary.chev::after{
  content:"";width:.62em;height:.62em;flex-shrink:0;margin-bottom:.18em;
  border-right:2.5px solid var(--bordeaux);border-bottom:2.5px solid var(--bordeaux);
  transform:rotate(45deg);transition:transform .3s cubic-bezier(.16,1,.3,1);
}
.faq details[open] summary.chev::after{transform:rotate(-135deg)}
/* FAQ: zweispaltig über die volle Inhaltsbreite — zwei UNABHÄNGIGE Flex-Spalten.
   align-items:flex-start entkoppelt die Spaltenhöhen → kein Layout-Sprung beim Aufklappen.
   Kein transition auf <details> → Öffnen bleibt flackerfrei. */
.faq.faq-cols{max-width:none;margin:0;display:flex;flex-direction:row;align-items:flex-start;gap:1.5rem}
.faq.faq-cols > .faq-col{flex:1 1 0;min-width:0;display:flex;flex-direction:column;gap:.85rem}
@media (max-width:980px){
  /* eng gewordene Spalten früh auf eine Spalte umbrechen; align-items:stretch, damit die
     .faq-col im gestapelten Modus die volle Breite füllen (flex-start ließ sie schrumpfen). */
  .faq.faq-cols{flex-direction:column;align-items:stretch;gap:.85rem}
}
.faq details:hover{border-color:rgba(122,24,11,.2)}
.faq summary{transition:color .2s ease}
.faq summary:hover{color:var(--bordeaux)}

/* Wiederverwendbarer Gold-Button (mit echtem Hover) statt Inline-Styles */
.btn-gold{background:var(--gold);color:#3a0d0d;box-shadow:0 10px 26px rgba(201,168,122,.3)}
.btn-gold:hover{background:#d8bd95;color:#3a0d0d;transform:translateY(-2px);box-shadow:0 14px 34px rgba(201,168,122,.4)}

/* Eyebrow auf dunklem Band (Gold) als Klasse statt Inline */
.eyebrow.on-dark{color:var(--gold)}
.eyebrow.on-dark::before,.eyebrow.on-dark::after{background:var(--gold);opacity:.8}

/* Breiter, zentrierter Standalone-Callout (für Hinweise unter breiten Rastern) */
.callout.callout-wide{max-width:820px;margin-left:auto;margin-right:auto}

/* Karte (OpenStreetMap): warmer Platzhalter + konsistenter Abstand statt Inline */
.map-wrap{background:var(--warm-paper);margin-top:clamp(1.5rem,2vw,2.5rem)}

/* Rechtstexte: angenehmere Zeilenlänge */
.prose p{max-width:72ch}
.prose address{margin-bottom:1.05rem}

/* Zweispalter mit Bild + langem Text: Bild oben verankern + sanft mitscrollen */
.about-grid,.trust-grid,.media-split{align-items:start}
.media-split-img{height:auto;min-height:0;align-self:start}
@media (min-width:1024px){
  .about-portrait,.trust-image,.media-split-img{position:sticky;top:90px}
}

/* Sprechzeiten-Tabelle füllt die Höhe der Textspalte, Zeilen mittig verteilt */
.hours-grid{align-items:stretch}
.hours-table{display:flex;flex-direction:column;justify-content:center}
.hours-note a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.hours-note a:hover{color:var(--gold)}

/* Leistungs-Karten: gleiche Kartenhöhe, „Mehr erfahren" unten verankert */
.service-card{display:flex;flex-direction:column}
a.service-card .more{margin-top:auto;padding-top:.6rem}

/* Ablauf-Schritte: Text darf die Spaltenbreite nutzen */
.process .p-step p{max-width:none}

/* Qualifikation: h3 statt h4 (Heading-Reihenfolge) — gleiches Aussehen */
.trust-point h3{font-family:var(--serif);font-size:1.12rem;margin-bottom:.25rem;color:var(--ink);font-weight:600}

/* Symmetrisches 2x2-Raster für gleichwertige Karten (z.B. „Vier Bereiche") */
.even-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;align-items:stretch;min-width:0}
.even-grid > *{min-width:0;height:100%;margin:0}
@media (max-width:640px){ .even-grid{grid-template-columns:1fr} }

/* News-Karten: dezenter Akzentbalken + Hover (auch ohne Foto edel) */
.news-card{position:relative}
.news-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;z-index:1;
  background:linear-gradient(90deg,var(--bordeaux),var(--gold));
  transform:scaleX(0);transform-origin:left;transition:transform .5s cubic-bezier(.16,1,.3,1)}
.news-card:hover::before{transform:scaleX(1)}
.news-list .reveal:nth-child(2){transition-delay:.08s}
.news-list .reveal:nth-child(3){transition-delay:.16s}
@media (max-width:1023px){
  .news-list{grid-template-columns:1fr;max-width:620px;margin-inline:auto}
}

/* Download „in Vorbereitung": bewusster Zustand statt „kaputt" */
.download-item.is-pending{opacity:1;border-style:dashed;background:var(--warm-paper)}
.download-item.is-pending:hover{transform:none;box-shadow:none;border-color:var(--line)}
.download-item.is-pending .dl-action{background:transparent;border:1px solid var(--line);color:var(--ink-soft)}

/* Kontakt-Info-Karte: Anfahrtsbox füllt den unteren Rand */
.contact-info{display:flex;flex-direction:column}
.contact-info .approach{margin-top:auto}
.form-card > h3{margin-bottom:1.2rem}

/* Formular-Fehlerzustand am Feld (a11y + Design) */
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"],.field select[aria-invalid="true"]{
  border-color:var(--bordeaux);box-shadow:0 0 0 3px rgba(122,24,11,.12)
}

/* Buchungs-Karte: Hinweistext konsistent */
.booking-card .muted{font-size:.82rem;margin-top:0}

/* Step-Cards: Karten-Titel klar über dem Zeitfenster */
.step-card h3{font-size:1.25rem;order:0}
.step-card .step-when{font-size:.95rem;letter-spacing:.04em;text-transform:uppercase}

/* Externe Links in Rechtstexten: dezenter „neuer Tab"-Hinweis */
.prose a[target="_blank"]::after{content:" ↗";font-size:.82em;color:var(--bordeaux)}

/* Welle 1b */
.trust-band{background:var(--warm-paper);border-block:1px solid var(--line)}
.page-hero h1{max-width:20ch}
.trust-item span span{display:block;color:var(--ink-soft);font-weight:400}
@media (max-width:1023px){ .team-grid{grid-template-columns:repeat(3,1fr);gap:1.1rem} }
@media (max-width:640px){ .team-grid{grid-template-columns:1fr} }
@media (max-width:420px){ .hero-card-bottom{display:none} }

/* Bento Sprechzimmer (Hochformat) — Gesicht im oberen Bereich halten */
.bento.doc img{object-position:center 25%}

/* media-split Textspalte: Überschrift- und Absatz-Abstände (waren zu eng) */
.media-split h2,.media-split h3{margin-bottom:1rem}
.media-split p{margin-bottom:1.05rem}
.media-split p:last-child{margin-bottom:0}
.media-split .check-list{margin-top:0}

/* ============================================================
   Unterseiten-Hero: zentriert (füllt die Breite, keine leere rechte Hälfte)
   ============================================================ */
.page-hero{text-align:left}
.page-hero .container{
  display:grid;grid-template-columns:1.1fr .9fr;
  grid-template-areas:"crumb crumb" "eyebrow eyebrow" "title lead";
  column-gap:clamp(2rem,3.5vw,4rem);align-items:start;
}
.page-hero .breadcrumb{grid-area:crumb;margin-bottom:.7rem}
.page-hero .breadcrumb ol{justify-content:flex-start}
.page-hero .eyebrow{grid-area:eyebrow;margin-bottom:1.1rem}
.page-hero h1{grid-area:title;max-width:none;margin:0}
/* Lead sitzt auf Höhe des Titels, mit feiner Gold-Trennlinie — nicht mehr „verloren" */
.page-hero .lead{
  grid-area:lead;align-self:start;max-width:46ch;margin:0;
  padding-top:.35rem;padding-left:clamp(1.75rem,2.8vw,2.75rem);
  border-left:2px solid rgba(201,168,122,.55);
}
@media (max-width:980px){
  .page-hero .container{grid-template-columns:1fr;grid-template-areas:"crumb" "eyebrow" "title" "lead"}
  .page-hero .lead{border-left:0;padding-left:0;padding-top:0;max-width:62ch;margin-top:1.1rem}
}
