/* ============================================================
   Ordination Dr. Astrid Schneider — Design System
   Mockup, Stand 2026. Alle Farben/Radien hier zentral änderbar.
   ============================================================ */

/* Figtree (Variable Font 400–700), SIL Open Font License 1.1 – siehe assets/fonts/OFL.txt.
   Bewusst lokal eingebunden statt über fonts.googleapis.com: so wird beim Seitenaufruf
   keine IP-Adresse an Google übertragen (DSGVO, vgl. LG München I, 3 O 17493/20). */
@font-face{
  font-family:'Figtree';
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url('../fonts/figtree-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Figtree';
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url('../fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root{
  /* Marke */
  --violet:        #912091;
  --violet-dark:   #6B1A6B;
  --violet-soft:   #A63BA6;
  --violet-tint:   #F4E8F4;
  --violet-wash:   #FBF6FB;

  /* Text */
  --ink:           #2E1A2E;
  --ink-body:      #3F3742;
  --ink-muted:     #6E6270;

  /* Neutral / warm (aus den Praxisfotos) */
  --sand:          #F3EFEB;
  --sand-dark:     #E3DBD3;
  --line:          #EBE5EA;

  /* Sekundär */
  --sage:          #3F7361;
  --sage-tint:     #EDF4F1;
  --alert:         #B3261E;
  --alert-tint:    #FBEEED;

  /* Grund */
  --white:         #FFFFFF;
  --paper:         #FCFBFC;

  /* Form */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(46,26,46,.05);
  --shadow-sm: 0 1px 3px rgba(46,26,46,.05), 0 6px 16px -8px rgba(46,26,46,.12);
  --shadow-md: 0 1px 3px rgba(46,26,46,.05), 0 14px 34px -12px rgba(46,26,46,.14);
  --shadow-lg: 0 2px 6px rgba(46,26,46,.05), 0 30px 60px -22px rgba(46,26,46,.22);

  --ease: cubic-bezier(.4,0,.2,1);
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:120px; }
body{
  margin:0;
  font-family:'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size:17px; line-height:1.7;
  color:var(--ink-body);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:var(--violet); text-decoration:none; }
a:hover{ color:var(--violet-dark); }
button{ font:inherit; color:inherit; }
:focus-visible{ outline:3px solid var(--violet-soft); outline-offset:3px; border-radius:4px; }

h1,h2,h3,h4{
  color:var(--ink); font-weight:700; letter-spacing:-.02em;
  line-height:1.2; margin:0 0 .5em;
}
h1{ font-size:clamp(2rem, 1.3rem + 2.6vw, 3.15rem); }
h2{ font-size:clamp(1.5rem, 1.15rem + 1.3vw, 2.1rem); }
h3{ font-size:clamp(1.12rem, 1rem + .45vw, 1.32rem); }
h4{ font-size:1.02rem; font-weight:600; letter-spacing:0; }
p{ margin:0 0 1.1em; }
ul{ margin:0 0 1.1em; padding-left:1.15em; }
li{ margin-bottom:.4em; }
strong{ color:var(--ink); font-weight:600; }

/* ---------- Layout ---------- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:24px; }
.section{ padding:clamp(48px, 5vw, 86px) 0; }
.section--tight{ padding:clamp(34px, 3.5vw, 56px) 0; }
.section--wash{ background:var(--violet-wash); }
.section--sand{ background:var(--sand); }
.skip-link{
  position:absolute; left:-999px; top:8px; z-index:200;
  background:var(--violet); color:#fff; padding:12px 20px; border-radius:var(--r-pill);
}
.skip-link:focus{ left:16px; color:#fff; }

.section-head{ max-width:640px; margin-bottom:36px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head p{ color:var(--ink-muted); margin-bottom:0; }
.eyebrow{
  display:inline-block; font-size:.78rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--violet);
  margin-bottom:12px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 26px; border-radius:var(--r-pill);
  font-weight:600; font-size:.97rem; border:1.5px solid transparent;
  cursor:pointer; transition:all .2s var(--ease); white-space:nowrap;
}
.btn svg{ width:17px; height:17px; flex:none; }
.btn--primary{ background:var(--violet); color:#fff; box-shadow:0 8px 20px -8px rgba(145,32,145,.55); }
.btn--primary:hover{ background:var(--violet-dark); color:#fff; transform:translateY(-2px); box-shadow:0 14px 26px -10px rgba(145,32,145,.6); }
.btn--ghost{ background:var(--white); color:var(--violet); border-color:var(--line); box-shadow:var(--shadow-xs); }
.btn--ghost:hover{ border-color:var(--violet); color:var(--violet-dark); transform:translateY(-2px); }
.btn--plain{ background:transparent; color:var(--violet); padding:6px 0; }
.btn--plain:hover{ gap:13px; color:var(--violet-dark); }
.btn--sm{ padding:10px 20px; font-size:.9rem; }
.btn--block{ width:100%; justify-content:center; }

/* ---------- Karten ---------- */
.card{
  background:var(--white); border-radius:var(--r-lg);
  padding:30px; box-shadow:var(--shadow-sm);
  border:1px solid rgba(235,229,234,.9);
}
.card--flat{ box-shadow:none; background:var(--violet-wash); border-color:transparent; }
.card h3{ margin-bottom:.35em; }
.card > :last-child{ margin-bottom:0; }
.grid{ display:grid; gap:22px; }
.grid--2{ grid-template-columns:repeat(2,1fr); }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }

/* ---------- Badges ---------- */
.badge{
  display:inline-flex; align-items:center; gap:7px;
  padding:6px 14px; border-radius:var(--r-pill);
  background:var(--violet-tint); color:var(--violet-dark);
  font-size:.83rem; font-weight:600; letter-spacing:.01em;
}
.badge--sage{ background:var(--sage-tint); color:var(--sage); }
.badge--sand{ background:var(--sand); color:var(--ink-muted); }
.badge--alert{ background:var(--alert-tint); color:var(--alert); }
.badge-row{ display:flex; flex-wrap:wrap; gap:10px; }

/* ---------- Icon-Kreis ---------- */
.icon-circle{
  width:46px; height:46px; border-radius:var(--r-pill);
  display:grid; place-items:center; flex:none;
  background:var(--violet-tint); color:var(--violet);
  margin-bottom:16px;
}
.icon-circle svg{ width:22px; height:22px; }
.icon-circle--sage{ background:var(--sage-tint); color:var(--sage); }
.icon-circle--alert{ background:var(--alert-tint); color:var(--alert); }
.icon-circle--sand{ background:var(--sand); color:var(--ink); }

/* ============================================================
   Header & Navigation
   ============================================================ */
.utility-bar{
  background:var(--violet-wash);
  border-bottom:1px solid var(--line);
  font-size:.85rem; color:var(--ink-muted);
}
.utility-bar .container{
  display:flex; align-items:center; gap:26px;
  min-height:42px; flex-wrap:wrap;
}
.utility-bar a{ color:var(--ink-muted); display:inline-flex; align-items:center; gap:7px; }
.utility-bar a:hover{ color:var(--violet); }
.utility-bar svg{ width:15px; height:15px; opacity:.75; }
.utility-bar .spacer{ margin-left:auto; }

.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s var(--ease);
}
.site-header.is-stuck{ box-shadow:0 8px 28px -18px rgba(46,26,46,.4); }
.header-top{ position:relative; z-index:2;
  display:flex; align-items:center; gap:22px; min-height:var(--header-h);
}
.header-nav{ border-top:1px solid var(--line); }
.header-nav .container{ display:flex; align-items:stretch; gap:20px; }
.header-nav .header-cta{ align-self:center; margin:7px 0 7px 18px; flex:none; }

.brand{ display:flex; align-items:center; gap:13px; flex:0 1 auto; min-width:0; }
.brand img{ width:42px; height:auto; }
.brand__name{ font-weight:700; color:var(--ink); font-size:1.02rem; line-height:1.25; letter-spacing:-.01em; }
.brand__sub{ font-size:.76rem; color:var(--ink-muted); letter-spacing:.06em; text-transform:uppercase; font-weight:500; }

.nav{ flex:1 1 auto; min-width:0; }
.nav__list{
  display:flex; align-items:center; gap:2px; list-style:none; margin:0; padding:0;
  overflow-x:auto; scrollbar-width:none;
}
.nav__list::-webkit-scrollbar{ display:none; }
.nav__list a{
  display:block; padding:14px 13px 12px; border-radius:var(--r-sm) var(--r-sm) 0 0;
  font-size:.79rem; font-weight:600; letter-spacing:.04em;
  text-transform:uppercase; color:var(--ink-body);
  transition:color .18s var(--ease), background .18s var(--ease);
  white-space:nowrap; position:relative;
}
.nav__list a:hover{ color:var(--violet); background:var(--violet-wash); }
.nav__list a[aria-current="page"]{ color:var(--violet); }
.nav__list a[aria-current="page"]::after{
  content:''; position:absolute; left:13px; right:13px; bottom:0;
  height:2px; border-radius:2px 2px 0 0; background:var(--violet);
}
.nav__list .ext::after{ content:'\2197'; font-size:.9em; margin-left:3px; opacity:.6; }
.nav__mobile-cta{ display:none; }

.header-cta{ flex:none; margin-left:auto; }
.header-contact{
  margin-left:auto; display:flex; align-items:center; gap:22px;
  font-size:.88rem; color:var(--ink-muted);
}
.header-contact a{ color:var(--ink-body); display:inline-flex; align-items:center; gap:8px; font-weight:500; }
.header-contact a:hover{ color:var(--violet); }
.header-contact svg{ width:16px; height:16px; color:var(--violet); }
.nav-toggle{
  display:none; margin-left:auto;
  width:46px; height:46px; border:1px solid var(--line); background:var(--white);
  border-radius:var(--r-md); cursor:pointer; align-items:center; justify-content:center;
}
.nav-toggle svg{ width:22px; height:22px; color:var(--ink); }
.nav-toggle .icon-close{ display:none; }
body.nav-open .nav-toggle .icon-close{ display:block; }
body.nav-open .nav-toggle .icon-open{ display:none; }

/* ============================================================
   Hero
   ============================================================ */
.hero{ position:relative; overflow:hidden; background:var(--violet-wash); isolation:isolate; }
.hero__bg{
  position:absolute; inset:0; z-index:-2;
  background-image:url('../img/gesamter_wartebereich.png');
  background-size:cover; background-position:center 58%;
  opacity:.62; filter:saturate(.8);
  transform:scale(1.04);
}
.hero__veil{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 30%, rgba(255,255,255,.62) 58%, rgba(255,255,255,.42) 100%),
    linear-gradient(180deg, rgba(251,246,251,.75) 0%, rgba(255,255,255,0) 26%, rgba(252,251,252,.55) 84%, var(--paper) 100%);
}
.hero__inner{
  display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center;
  padding-block:clamp(56px, 6vw, 104px);
}
.hero h1{ margin-bottom:.45em; }
.hero__lead{ font-size:clamp(1.03rem, .98rem + .3vw, 1.2rem); color:var(--ink-body); max-width:34em; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.hero__meta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }

/* Status-Karte */
.status-card{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px) saturate(180%);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  border:1px solid rgba(255,255,255,.9);
  border-radius:var(--r-xl); padding:30px 32px;
  box-shadow:var(--shadow-lg);
}
.status-card__state{ display:flex; align-items:center; gap:11px; margin-bottom:6px; }
.status-dot{ width:10px; height:10px; border-radius:50%; background:var(--ink-muted); flex:none; }
.status-dot--open{ background:var(--sage); box-shadow:0 0 0 4px rgba(63,115,97,.16); }
.status-dot--closed{ background:var(--sand-dark); box-shadow:0 0 0 4px rgba(227,219,211,.4); }
.status-card__label{ font-weight:700; color:var(--ink); font-size:1.06rem; }
.status-card__note{ font-size:.9rem; color:var(--ink-muted); margin:0 0 20px; }
.status-card hr{ border:0; border-top:1px solid var(--line); margin:20px 0; }

/* ---------- Öffnungszeiten-Tabelle ---------- */
.hours{ width:100%; border-collapse:collapse; font-size:.95rem; }
.hours th{
  text-align:left; font-weight:600; color:var(--ink); padding:8px 0; width:42%;
}
.hours td{ text-align:right; padding:8px 0; color:var(--ink-body); font-variant-numeric:tabular-nums; }
.hours tr + tr th, .hours tr + tr td{ border-top:1px solid var(--line); }
.hours tr.is-today th, .hours tr.is-today td{ color:var(--violet); font-weight:700; }
.hours small{ display:block; font-size:.78rem; color:var(--ink-muted); font-weight:400; }

/* ============================================================
   Aktuelles / News
   ============================================================ */
.news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.news-card{
  background:var(--white); border-radius:var(--r-lg); padding:28px;
  border:1px solid var(--line); box-shadow:var(--shadow-sm);
  border-top:3px solid var(--violet);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease);
}
.news-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.news-card--alert{ border-top-color:var(--alert); }
.news-card--sage{ border-top-color:var(--sage); }
.news-card__date{ font-size:.79rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-muted); margin-bottom:10px; }
.news-card h3{ font-size:1.1rem; margin-bottom:.4em; }
.news-card p{ margin:0; font-size:.95rem; color:var(--ink-body); }

/* ============================================================
   Info-Kacheln
   ============================================================ */
.tiles{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.tile{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:26px;
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.tile:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.tile h4{ margin-bottom:.4em; color:var(--ink); }
.tile p{ margin:0; font-size:.92rem; color:var(--ink-muted); line-height:1.62; }

/* ============================================================
   Karussell
   ============================================================ */
.carousel{ position:relative; }
.carousel__frame{
  position:relative; overflow:hidden;
  border-radius:var(--r-xl); box-shadow:var(--shadow-md);
  background:var(--sand);
  aspect-ratio:835/500;
}
.carousel__track{ display:flex; height:100%; transition:transform .6s var(--ease); }
.carousel__slide{ flex:0 0 100%; position:relative; height:100%; }
.carousel__slide img{ width:100%; height:100%; object-fit:cover; cursor:zoom-in; }
.carousel__caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:52px 32px 26px;
  background:linear-gradient(180deg, rgba(46,26,46,0) 0%, rgba(46,26,46,.72) 100%);
  color:#fff; font-weight:600; font-size:1.02rem; letter-spacing:-.01em;
  pointer-events:none;
}
.carousel__btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:50px; height:50px; border-radius:50%; border:0;
  background:rgba(255,255,255,.92); color:var(--ink);
  box-shadow:var(--shadow-md); cursor:pointer;
  display:grid; place-items:center; z-index:3;
  transition:background .18s var(--ease), transform .18s var(--ease);
}
.carousel__btn:hover{ background:#fff; transform:translateY(-50%) scale(1.08); color:var(--violet); }
.carousel__btn svg{ width:20px; height:20px; }
.carousel__btn--prev{ left:18px; }
.carousel__btn--next{ right:18px; }
.carousel__dots{ display:flex; justify-content:center; gap:9px; margin-top:22px; }
.carousel__dots button{
  width:9px; height:9px; border-radius:50%; border:0; padding:0; cursor:pointer;
  background:var(--sand-dark); transition:all .22s var(--ease);
}
.carousel__dots button[aria-selected="true"]{ background:var(--violet); width:28px; border-radius:var(--r-pill); }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:300; display:none;
  place-items:center; padding:32px;
  background:rgba(46,26,46,.85); backdrop-filter:blur(6px);
}
.lightbox.is-open{ display:grid; }
.lightbox img{ max-width:min(1100px,92vw); max-height:80vh; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); }
.lightbox__caption{ color:#fff; text-align:center; margin-top:16px; font-weight:500; }
.lightbox__close{
  position:absolute; top:24px; right:24px; width:46px; height:46px;
  border-radius:50%; border:0; background:rgba(255,255,255,.15); color:#fff;
  cursor:pointer; display:grid; place-items:center;
}
.lightbox__close:hover{ background:rgba(255,255,255,.28); }
.lightbox__close svg{ width:22px; height:22px; }

/* ============================================================
   Seitenkopf & Inhaltsraster der Unterseiten
   ============================================================ */
.page-hero{
  background:var(--violet-wash);
  border-bottom:1px solid var(--line);
  padding:clamp(38px, 4vw, 64px) 0 clamp(34px, 3.5vw, 52px);
}
.page-hero h1{ margin-bottom:.3em; }
.page-hero p{ color:var(--ink-muted); max-width:56ch; margin:0; font-size:1.05rem; }
.breadcrumb{ font-size:.83rem; color:var(--ink-muted); margin-bottom:14px; }
.breadcrumb a{ color:var(--ink-muted); }
.breadcrumb a:hover{ color:var(--violet); }
.breadcrumb span{ margin:0 8px; opacity:.5; }

.page-grid{
  display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:56px;
  align-items:start; padding:clamp(44px,4.5vw,72px) 0;
}
.page-grid--single{ grid-template-columns:minmax(0,1fr); max-width:820px; }
.page-main > section + section{ margin-top:clamp(38px,4vw,58px); }
.page-aside{ position:sticky; top:104px; display:grid; gap:18px; }
.aside-box{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:24px; box-shadow:var(--shadow-sm);
}
.aside-box h3{
  font-size:.79rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  color:var(--violet); margin-bottom:16px;
}
.aside-box > :last-child{ margin-bottom:0; }
.aside-box--accent{ background:var(--violet); border-color:var(--violet); }
.aside-box--accent h3{ color:rgba(255,255,255,.72); }
.aside-box--accent p{ color:rgba(255,255,255,.9); font-size:.92rem; }
.aside-box--accent .btn{ background:#fff; color:var(--violet); box-shadow:none; }
.aside-box--accent .btn:hover{ background:var(--violet-tint); color:var(--violet-dark); }
.aside-list{ list-style:none; margin:0; padding:0; font-size:.9rem; }
.aside-list li{ display:flex; gap:10px; align-items:flex-start; padding:8px 0; color:var(--ink-body); margin:0; }
.aside-list li + li{ border-top:1px solid var(--line); }
.aside-list svg{ width:16px; height:16px; color:var(--violet); flex:none; margin-top:4px; }

/* ============================================================
   Listen mit Häkchen
   ============================================================ */
.check-list{ list-style:none; margin:0; padding:0; }
.check-list li{
  display:flex; gap:12px; align-items:flex-start;
  padding:11px 0; border-bottom:1px solid var(--line); margin:0;
}
.check-list li:last-child{ border-bottom:0; }
.check-list svg{ width:19px; height:19px; color:var(--violet); flex:none; margin-top:4px; }
.check-list strong{ display:block; font-weight:600; }
.check-list small{ display:block; color:var(--ink-muted); font-size:.88rem; line-height:1.55; }

/* ============================================================
   Team
   ============================================================ */
.team-lead{ display:grid; grid-template-columns:200px 1fr; gap:38px; align-items:center; }
.team-lead__photo{
  width:100%; aspect-ratio:1; border-radius:var(--r-xl); object-fit:cover; object-position:center 20%;
  box-shadow:var(--shadow-md);
}
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.page-main .team-grid{ grid-template-columns:repeat(2,1fr); }
.team-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:30px 24px; text-align:center; box-shadow:var(--shadow-sm);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease);
}
.team-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.avatar{
  width:112px; height:112px; border-radius:50%; margin:0 auto 18px;
  object-fit:cover; background:var(--violet-tint);
  box-shadow:0 0 0 5px var(--violet-wash), 0 8px 20px -10px rgba(46,26,46,.35);
}
.avatar--initials{
  display:grid; place-items:center;
  font-size:2rem; font-weight:700; color:var(--violet); letter-spacing:-.02em;
}
.team-card h3{ font-size:1.06rem; margin-bottom:.2em; }
.team-card .role{ font-size:.88rem; color:var(--ink-muted); margin-bottom:14px; }

/* ============================================================
   Notfallnummern / Preise
   ============================================================ */
.call-card{
  display:flex; align-items:center; gap:18px;
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:20px 24px; box-shadow:var(--shadow-xs);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.call-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.call-card__body{ flex:1; min-width:0; }
.call-card__body strong{ display:block; color:var(--ink); font-size:1rem; }
.call-card__body small{ color:var(--ink-muted); font-size:.85rem; line-height:1.5; display:block; }
.call-card__num{
  font-size:1.24rem; font-weight:700; color:var(--violet);
  font-variant-numeric:tabular-nums; white-space:nowrap; letter-spacing:-.01em;
}
.call-card--urgent{ background:var(--alert-tint); border-color:rgba(179,38,30,.18); }
.call-card--urgent .call-card__num{ color:var(--alert); font-size:1.6rem; }

.price-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:20px;
  padding:15px 0; border-bottom:1px solid var(--line);
}
.price-row:last-child{ border-bottom:0; }
.price-row__label strong{ display:block; color:var(--ink); font-weight:600; }
.price-row__label small{ color:var(--ink-muted); font-size:.87rem; }
.price-row__value{ font-weight:700; color:var(--violet); white-space:nowrap; font-variant-numeric:tabular-nums; }
.price-row__value--soft{ color:var(--ink-muted); font-weight:600; font-size:.9rem; }

/* ============================================================
   Urlaub / Timeline
   ============================================================ */
.timeline{ list-style:none; margin:0; padding:0 0 0 30px; position:relative; }
.timeline::before{
  content:""; position:absolute; left:6px; top:10px; bottom:10px;
  width:2px; background:var(--line); border-radius:2px;
}
.timeline li{ position:relative; padding:0 0 26px; margin:0; }
.timeline li::before{
  content:""; position:absolute; left:-30px; top:8px;
  width:14px; height:14px; border-radius:50%;
  background:var(--violet); box-shadow:0 0 0 4px var(--violet-tint);
}
.timeline li.is-past::before{ background:var(--sand-dark); box-shadow:0 0 0 4px var(--sand); }
.timeline li.is-past{ opacity:.55; }
.timeline__date{ font-weight:700; color:var(--ink); display:block; }
.timeline__note{ color:var(--ink-muted); font-size:.93rem; }

/* ============================================================
   Karte / Anfahrt
   ============================================================ */
.map-frame{
  border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-md);
  border:1px solid var(--line); background:var(--sand); line-height:0;
}
.map-frame iframe{ width:100%; height:440px; border:0; display:block; }
.map-consent{
  min-height:440px; line-height:1.7;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:40px 32px; gap:2px;
  background:
    linear-gradient(rgba(251,246,251,.92), rgba(251,246,251,.92)),
    repeating-linear-gradient(45deg, var(--sand) 0 14px, var(--white) 14px 28px);
}
.map-consent h3{ margin-bottom:.4em; }
.map-consent p{ max-width:46ch; color:var(--ink-muted); font-size:.94rem; }
.map-consent__actions{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin:8px 0 18px; }
.map-consent__remember{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.87rem; color:var(--ink-muted); cursor:pointer;
}
.map-consent__remember input{ width:16px; height:16px; accent-color:var(--violet); cursor:pointer; }
.transit{ width:100%; border-collapse:collapse; font-size:.95rem; }
.transit th{
  text-align:left; font-size:.76rem; letter-spacing:.11em; text-transform:uppercase;
  color:var(--ink-muted); font-weight:600; padding:0 0 12px; border-bottom:1px solid var(--line);
}
.transit td{ padding:13px 0; border-bottom:1px solid var(--line); }
.transit tr:last-child td{ border-bottom:0; }
.transit td:last-child{ text-align:right; color:var(--ink-muted); white-space:nowrap; }
.line-chip{
  display:inline-block; background:var(--violet-tint); color:var(--violet-dark);
  border-radius:var(--r-sm); padding:3px 9px; font-weight:700; font-size:.82rem;
  margin:2px 4px 2px 0;
}

/* ============================================================
   Banner / Split-Bänder
   ============================================================ */
.band{
  display:grid; grid-template-columns:1.05fr .95fr; gap:0;
  border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-md);
  background:var(--white); border:1px solid var(--line);
}
.band__text{ padding:clamp(30px,3.4vw,52px); align-self:center; }
.band__text > :last-child{ margin-bottom:0; }
.band__media{ position:relative; min-height:280px; background:var(--sand); }
.band__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.band--accent{ background:var(--violet); border-color:var(--violet); }
.band--accent h2,.band--accent h3{ color:#fff; }
.band--accent p{ color:rgba(255,255,255,.88); }
.band--accent .eyebrow{ color:rgba(255,255,255,.66); }
.band--accent .btn--ghost{ background:#fff; color:var(--violet); border-color:transparent; }
.band--accent .btn--ghost:hover{ background:var(--violet-tint); color:var(--violet-dark); }

.therapy-list{ list-style:none; margin:22px 0 26px; padding:0; display:grid; gap:10px; }
.therapy-list li{ display:flex; align-items:center; gap:11px; margin:0; color:rgba(255,255,255,.92); }
.therapy-list svg{ width:18px; height:18px; flex:none; opacity:.8; }

/* ============================================================
   Vertrauensleiste
   ============================================================ */
.trust{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.trust__box{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:28px 30px; box-shadow:var(--shadow-xs);
}
.trust__box h3{
  font-size:.78rem; letter-spacing:.13em; text-transform:uppercase;
  color:var(--ink-muted); font-weight:600; margin-bottom:16px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer{
  background:var(--ink); color:rgba(255,255,255,.72);
  padding:clamp(46px,4.5vw,72px) 0 0; margin-top:0;
}
.site-footer a{ color:rgba(255,255,255,.72); }
.site-footer a:hover{ color:#fff; }
.footer-grid{
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1.1fr; gap:44px;
  padding-bottom:44px;
}
.site-footer h4{
  color:#fff; font-size:.77rem; letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; margin-bottom:18px; opacity:.6;
}
.footer-brand{ display:flex; align-items:center; gap:13px; margin-bottom:18px; }
.footer-brand img{ width:44px; filter:brightness(0) invert(1); opacity:.92; }
.footer-brand strong{ color:#fff; font-size:1.05rem; display:block; }
.footer-brand span{ font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; opacity:.6; }
.footer-list{ list-style:none; margin:0; padding:0; font-size:.93rem; }
.footer-list li{ margin-bottom:9px; }
.footer-hours{ font-size:.93rem; }
.footer-hours div{ display:flex; justify-content:space-between; gap:14px; padding:4px 0; }
.footer-hours span:first-child{ opacity:.7; }
.footer-note{ font-size:.9rem; line-height:1.65; }
.footer-emergency{
  background:rgba(255,255,255,.07); border-radius:var(--r-md);
  padding:16px 18px; margin-top:18px; font-size:.88rem;
}
.footer-emergency strong{ color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:22px 0; display:flex; flex-wrap:wrap; gap:8px 26px; align-items:center;
  font-size:.85rem;
}
.footer-bottom .spacer{ margin-left:auto; }
.mock-note{
  background:var(--violet-tint); color:var(--violet-dark);
  text-align:center; font-size:.82rem; font-weight:600; padding:7px 16px;
  letter-spacing:.02em;
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1180px){
  .nav__list a{ padding:14px 9px 12px; font-size:.75rem; letter-spacing:.03em; }
  .nav__list a[aria-current="page"]::after{ left:9px; right:9px; }
  .header-contact{ gap:16px; font-size:.84rem; }
}
@media (max-width:1080px){
  .header-contact .hide-md{ display:none; }
  .page-grid{ grid-template-columns:minmax(0,1fr); gap:38px; }
  .page-aside{ position:static; grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:repeat(2,1fr); gap:34px; }
}
@media (max-width:960px){
  .hero__inner{ grid-template-columns:1fr; gap:38px; }
  .grid--4,.tiles,.team-grid{ grid-template-columns:repeat(2,1fr); }
  .grid--3,.news-grid{ grid-template-columns:repeat(2,1fr); }
  .band{ grid-template-columns:1fr; }
  .band__media{ min-height:230px; order:-1; }
  .team-lead{ grid-template-columns:150px 1fr; gap:26px; }
}
@media (max-width:820px){
  :root{ --header-h:64px; }
  .utility-bar{ display:none; }
  .brand__sub{ display:none; }
  .nav-toggle{ display:flex; flex:none; }
  .header-contact{ display:none; }
  .header-cta{ display:none; }
  .header-nav{ border-top:0; }
  /* backdrop-filter erzeugt einen Containing Block und w&uuml;rde das fixed
     positionierte Drawer-Men&uuml; im Header einsperren */
  .site-header{ backdrop-filter:none; -webkit-backdrop-filter:none; background:var(--white); }
  .nav{
    position:fixed; inset:0; width:100%; z-index:1;
    background:var(--white);
    padding:calc(var(--header-h) + 68px) 24px 48px;
    transform:translateX(100%); transition:transform .3s var(--ease);
    overflow-y:auto;
  }
  body.nav-open .nav{ transform:translateX(0); }
  body.nav-open{ overflow:hidden; }
  .nav__list{ flex-direction:column; align-items:stretch; gap:0; overflow:visible; padding-inline:0; }
  .nav__list a{
    font-size:.98rem; letter-spacing:.03em; padding:16px 14px;
    border-radius:var(--r-md); border-bottom:1px solid var(--line);
  }
  .nav__list a[aria-current="page"]{ background:var(--violet-wash); }
  .nav__list a[aria-current="page"]::after{ display:none; }
  .nav__mobile-cta{ display:inline-flex; margin-top:24px; }
}
@media (max-width:680px){
  body{ font-size:16px; }
  .container{ padding-inline:18px; }
  .grid--2,.grid--3,.grid--4,.tiles,.news-grid,.team-grid,.trust{ grid-template-columns:1fr; }
  .page-aside{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .team-lead{ grid-template-columns:1fr; text-align:center; }
  .team-lead__photo{ max-width:180px; margin-inline:auto; }
  .card,.aside-box,.status-card{ padding:22px; }
  .carousel__btn{ width:42px; height:42px; }
  .carousel__btn--prev{ left:10px; }
  .carousel__btn--next{ right:10px; }
  .carousel__caption{ font-size:.9rem; padding:40px 20px 18px; }
  .call-card{ flex-direction:column; align-items:flex-start; gap:10px; }
  .hero__actions .btn{ flex:1 1 100%; justify-content:center; }
  .hero__bg{ opacity:.5; background-position:center 55%; }
  .hero__veil{
    background:linear-gradient(180deg,
      rgba(255,255,255,.9) 0%, rgba(255,255,255,.87) 58%,
      rgba(255,255,255,.6) 86%, var(--paper) 100%);
  }
  .mock-note{ font-size:.75rem; padding:6px 14px; }
  .map-frame iframe{ height:340px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .footer-bottom .spacer{ margin-left:0; }
}

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

@media print{
  .site-header,.utility-bar,.site-footer,.carousel__btn,.nav-toggle,.mock-note{ display:none !important; }
  body{ background:#fff; }
  .card,.aside-box{ box-shadow:none; border:1px solid #ddd; }
}
