/* ═══════════════════════════════════════════════════════════
   FRAUENARZTPRAXIS DR. INES SCHÜRZ
   Palette  : Sage Green · Warm Stone · Soft Rose
   Display  : Cormorant Garamond
   Body     : Nunito Sans
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root, [data-theme="light"] {

  /* Brand palette */
  --c-sage:        #4a8c6f;
  --c-sage-d:      #356150;
  --c-sage-dd:     #22433a;
  --c-sage-l:      #7ab89a;
  --c-sage-pale:   #e8f2ed;
  --c-sage-pale2:  #d6eae0;
  --c-rose:        #9c6070;
  --c-rose-pale:   #f2e8ec;
  --c-gold:        #c4953a;

  /* Surfaces */
  --c-bg:          #f4f5f2;
  --c-surface:     #fafaf8;
  --c-surface2:    #ffffff;
  --c-offset:      #ecede9;
  --c-divider:     #dde0da;
  --c-border:      #ccd0cb;

  /* Text */
  --c-text:        #272b24;
  --c-muted:       #6a7068;
  --c-faint:       #adb3ab;
  --c-inverse:     #f4f6f2;

  /* Illustration skin tones */
  --c-skin:        #e8c9aa;
  --c-skin2:       #d4a882;
  --c-hair:        #5c3d28;
  --c-hair2:       #2e1f0f;

  /* Shadows */
  --sh-xs: 0 1px 3px   #2728240d;
  --sh-sm: 0 2px 8px   #27282412;
  --sh-md: 0 6px 20px  #27282416;
  --sh-lg: 0 16px 48px #2728241c;

  /* Spacing */
  --sp-1:  .25rem;  --sp-2:  .5rem;   --sp-3:  .75rem;
  --sp-4:  1rem;    --sp-5:  1.25rem; --sp-6:  1.5rem;
  --sp-8:  2rem;    --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;

  /* Type */
  --t-xs:   clamp(.75rem,  .7rem  + .25vw, .875rem);
  --t-sm:   clamp(.875rem, .8rem  + .35vw, 1rem);
  --t-base: clamp(1rem,    .95rem + .25vw, 1.125rem);
  --t-lg:   clamp(1.125rem,1rem   + .75vw, 1.5rem);
  --t-xl:   clamp(1.5rem,  1.2rem + 1.25vw,2.25rem);
  --t-2xl:  clamp(2rem,    1.2rem + 2.5vw, 3.5rem);
  --t-hero: clamp(2.8rem,  .5rem  + 6.5vw,6.5rem);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Nunito Sans', 'Helvetica Neue', sans-serif;

  /* Radii */
  --r-sm: .375rem;  --r-md: .625rem;
  --r-lg: 1rem;     --r-xl: 1.5rem;  --r-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(.16,1,.3,1);
  --dur:  200ms;
}

/* ── DARK MODE ───────────────────────────────────────────── */
[data-theme="dark"] {
  --c-sage:        #6db591;
  --c-sage-d:      #4d9472;
  --c-sage-dd:     #357558;
  --c-sage-l:      #9ecdb4;
  --c-sage-pale:   #1e2d25;
  --c-sage-pale2:  #1a2820;
  --c-rose:        #d4909f;
  --c-rose-pale:   #2d1e22;
  --c-bg:          #191c18;
  --c-surface:     #1e221d;
  --c-surface2:    #232722;
  --c-offset:      #1b1f1a;
  --c-divider:     #2c302b;
  --c-border:      #3a3f39;
  --c-text:        #ced5cc;
  --c-muted:       #7e8a7b;
  --c-faint:       #525e50;
  --c-inverse:     #1e221d;
  --c-skin:        #c4a080;
  --c-skin2:       #a87d5a;
  --c-hair:        #8c6040;
  --c-hair2:       #5c3c20;
  --sh-xs: 0 1px 3px   #00000030;
  --sh-sm: 0 2px 8px   #00000040;
  --sh-md: 0 6px 20px  #00000050;
  --sh-lg: 0 16px 48px #00000060;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --c-sage: #6db591; --c-sage-d: #4d9472; --c-sage-dd: #357558;
    --c-sage-l: #9ecdb4; --c-sage-pale: #1e2d25; --c-sage-pale2: #1a2820;
    --c-bg: #191c18; --c-surface: #1e221d; --c-surface2: #232722;
    --c-offset: #1b1f1a; --c-divider: #2c302b; --c-border: #3a3f39;
    --c-text: #ced5cc; --c-muted: #7e8a7b; --c-faint: #525e50;
    --c-inverse: #1e221d;
    --c-skin: #c4a080; --c-skin2: #a87d5a; --c-hair: #8c6040; --c-hair2: #5c3c20;
  }
}

/* ── BASE RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.68;
  color: var(--c-text);
  background: var(--c-bg);
  transition: background .3s, color .3s;
  min-height: 100dvh;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; max-width: 72ch; }
address { font-style: normal; }
::selection { background: color-mix(in oklch, var(--c-sage) 25%, transparent); }
:focus-visible { outline: 2px solid var(--c-sage); outline-offset: 3px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(var(--sp-5),5vw,var(--sp-16)); }
.d-sm { display: none; }
@media (min-width:640px) { .d-sm { display: block; } }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in  { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .22s; }
.reveal:nth-child(5) { transition-delay: .28s; }
.reveal:nth-child(6) { transition-delay: .34s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-sm); font-weight: 600;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn--primary { background: var(--c-sage); color: var(--c-inverse); border-color: var(--c-sage); }
.btn--primary:hover { background: var(--c-sage-d); border-color: var(--c-sage-d); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--primary:active { transform: none; background: var(--c-sage-dd); }
.btn--outline { background: transparent; color: var(--c-text); border-color: var(--c-border); }
.btn--outline:hover { border-color: var(--c-sage); color: var(--c-sage); }
.btn--ghost { background: transparent; color: var(--c-muted); border-color: var(--c-border); }
.btn--ghost:hover { background: var(--c-offset); color: var(--c-text); }
.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: var(--t-xs); }
.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--t-base); }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--c-divider);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--sh-sm); }
.header-inner {
  max-width: 1200px; margin-inline: auto;
  padding: var(--sp-3) clamp(var(--sp-5),5vw,var(--sp-16));
  display: flex; align-items: center; gap: var(--sp-6);
}

.logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.logo-mark { width: 38px; height: 44px; color: var(--c-text); }
.logo-mark--sm { width: 30px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--f-display); font-size: var(--t-base); font-weight: 600; color: var(--c-text); }
.logo-sub { font-size: 10px; color: var(--c-muted); font-weight: 400; letter-spacing: .02em; }
.logo--footer .logo-name { font-size: var(--t-sm); }

.nav { margin-left: auto; display: flex; gap: var(--sp-1); }
.nav a { font-size: var(--t-sm); font-weight: 500; color: var(--c-muted); padding: var(--sp-2) var(--sp-3); border-radius: var(--r-md); transition: color var(--dur), background var(--dur); }
.nav a:hover { color: var(--c-text); background: var(--c-offset); }
.nav a.active { color: var(--c-sage); }

.header-cta { display: flex; align-items: center; gap: var(--sp-3); }

.theme-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); color: var(--c-muted);
  transition: color var(--dur), background var(--dur);
}
.theme-btn:hover { color: var(--c-text); background: var(--c-offset); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--sp-2); border-radius: var(--r-sm);
}
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all var(--dur) var(--ease); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Drawer */
.drawer { display: none; background: var(--c-surface); border-top: 1px solid var(--c-divider); }
.drawer.open { display: block; }
.drawer nav { display: flex; flex-direction: column; padding: var(--sp-5) clamp(var(--sp-5),5vw,var(--sp-16)); gap: var(--sp-1); }
.drawer-link { padding: var(--sp-3) var(--sp-4); font-size: var(--t-base); font-weight: 500; color: var(--c-text); border-radius: var(--r-md); transition: background var(--dur); }
.drawer-link:hover { background: var(--c-offset); }

@media (max-width: 840px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn--primary { display: none; }
}

/* ── SECTION COMMON ──────────────────────────────────────── */
.section { padding-block: clamp(var(--sp-16),10vw,var(--sp-24)); }
.section--alt { background: var(--c-surface); }
.section--testimonials { background: linear-gradient(160deg, var(--c-sage-pale) 0%, var(--c-bg) 100%); }

.sec-head { text-align: center; margin-bottom: clamp(var(--sp-10),6vw,var(--sp-20)); }
.sec-head h2 {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--c-text);
  margin-block: var(--sp-3) var(--sp-4);
}
.sec-head p { color: var(--c-muted); font-size: var(--t-base); max-width: 56ch; margin-inline: auto; }

.pill {
  display: inline-block;
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-sage); background: var(--c-sage-pale);
  border: 1px solid color-mix(in oklch, var(--c-sage) 30%, transparent);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full);
}
.pill--sm { font-size: 10px; padding: 2px var(--sp-2); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 93svh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Gradient background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    148deg,
    oklch(89% .04 155) 0%,
    oklch(84% .07 152) 45%,
    oklch(79% .09 150) 100%
  );
  z-index: 0;
}
[data-theme="dark"] .hero::before {
  background: linear-gradient(148deg,
    oklch(20% .04 155) 0%,
    oklch(16% .07 152) 45%,
    oklch(13% .09 150) 100%
  );
}

/* Botanical rings */
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid color-mix(in oklch, var(--c-sage) 22%, transparent);
}
.ring--1 { width: 520px; height: 520px; top: -140px; right: -80px; animation: spin-slow 60s linear infinite; }
.ring--2 { width: 340px; height: 340px; top:  -60px; right:  60px; animation: spin-slow 45s linear infinite reverse; }
.ring--3 { width: 180px; height: 180px; top:   30px; right: 200px; border-color: color-mix(in oklch, var(--c-rose) 18%, transparent); }

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Decorative leaf blobs */
.leaf {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: color-mix(in oklch, var(--c-sage) 10%, transparent);
}
.leaf--tl { width: 360px; height: 360px; top: -100px; left: -80px; animation: float 12s ease-in-out infinite; }
.leaf--br { width: 260px; height: 260px; bottom: -80px; right: -40px; background: color-mix(in oklch, var(--c-rose) 8%, transparent); animation: float 16s ease-in-out infinite reverse; }

@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  40%      { transform: translate(12px,-18px) rotate(3deg); }
  70%      { transform: translate(-8px,10px) rotate(-2deg); }
}

/* Dot grid */
.dots-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(color-mix(in oklch, var(--c-sage) 18%, transparent) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom right, transparent 30%, black 60%);
}

/* Hero bottom fade */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, transparent, var(--c-bg));
  z-index: 1;
}

.hero-body { position: relative; z-index: 2; padding-block: clamp(var(--sp-20),14vw,var(--sp-24)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-sage);
  background: color-mix(in srgb, var(--c-surface2) 75%, transparent);
  border: 1px solid color-mix(in oklch, var(--c-sage) 30%, transparent);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  margin-bottom: var(--sp-6);
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--c-sage); }

.hero-h1 {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
  max-width: 13ch;
}
.hero-h1 em { font-style: italic; color: var(--c-sage); }

.hero-lead {
  font-size: var(--t-lg); color: var(--c-muted);
  max-width: 50ch; margin-bottom: var(--sp-10); line-height: 1.6;
}

.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-16); }

.trust-bar {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-xs); font-weight: 600; color: var(--c-muted);
  background: color-mix(in srgb, var(--c-surface2) 70%, transparent);
  border: 1px solid var(--c-divider);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}
.trust-chip svg { color: var(--c-sage); flex-shrink: 0; }

.scroll-cue {
  position: absolute; bottom: var(--sp-10); left: 50%;
  transform: translateX(-50%);
  color: var(--c-muted); z-index: 2;
  animation: bounce 2.4s ease-in-out infinite;
  transition: color var(--dur);
}
.scroll-cue:hover { color: var(--c-sage); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(8px); }
}

/* ── SERVICE CARDS ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,330px),1fr));
  gap: var(--sp-6);
}

.card {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-8);
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-sage-l));
  opacity: 0; transition: opacity var(--dur);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: color-mix(in oklch, var(--c-sage) 40%, transparent); }
.card:hover::after { opacity: 1; }

.card--featured {
  background: var(--c-sage-pale);
  border-color: color-mix(in oklch, var(--c-sage) 35%, transparent);
}
.card--featured::after { opacity: 1; }

.card-icon { width: 52px; height: 52px; color: var(--c-sage); margin-bottom: var(--sp-5); }
.card-icon svg { width: 100%; height: 100%; }

.tag {
  display: inline-block; margin-bottom: var(--sp-3);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-inverse); background: var(--c-sage);
  padding: 2px var(--sp-3); border-radius: var(--r-full);
}

.card h3 { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 600; color: var(--c-text); margin-bottom: var(--sp-3); }
.card > p { font-size: var(--t-sm); color: var(--c-muted); margin-bottom: var(--sp-5); line-height: 1.7; }

.feat-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.feat-list li {
  font-size: var(--t-xs); color: var(--c-muted);
  display: flex; align-items: flex-start; gap: var(--sp-2); max-width: 100%;
}
.feat-list li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px; margin-top: 5px;
  border-radius: 50%; background: var(--c-sage);
}

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,460px),1fr));
  gap: var(--sp-8);
}

.team-card {
  display: grid; grid-template-columns: 200px 1fr; gap: var(--sp-8);
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.team-portrait { overflow: hidden; background: var(--c-sage-pale); }
.team-portrait svg { width: 100%; height: auto; }
.team-portrait--sm { background: var(--c-sage-pale2); }

.team-info { padding: var(--sp-8) var(--sp-8) var(--sp-8) 0; display: flex; flex-direction: column; justify-content: center; }
.team-info h3 { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 600; color: var(--c-text); margin: var(--sp-2) 0 var(--sp-1); }
.team-role { font-size: var(--t-sm); font-weight: 600; color: var(--c-sage); margin-bottom: var(--sp-3); max-width: 100%; }
.team-bio { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.7; margin-bottom: var(--sp-4); }
.quals { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.quals span { font-size: var(--t-xs); color: var(--c-muted); background: var(--c-offset); border: 1px solid var(--c-border); padding: 2px var(--sp-3); border-radius: var(--r-full); }

@media (max-width: 600px) {
  .team-card { grid-template-columns: 1fr; }
  .team-info { padding: var(--sp-6); }
  .team-portrait { max-height: 200px; overflow: hidden; }
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}
.gal-item { border-radius: var(--r-xl); overflow: hidden; position: relative; }
.gal-item--lg { grid-row: span 2; }

.gal-scene {
  width: 100%; height: 100%; min-height: 180px;
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease);
}
.gal-item--lg .gal-scene { min-height: 360px; }
.gal-item:hover .gal-scene { transform: scale(1.03); }

.gal-scene__inner { position: absolute; inset: 0; }

.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
  font-size: var(--t-xs); font-weight: 600; color: white;
  letter-spacing: .04em;
}

/* Reception scene */
.gal-scene--reception { background: linear-gradient(135deg, #c8ddd1 0%, #a8c8b8 100%); }
.gs-window {
  position: absolute; top: 12%; right: 10%;
  width: 30%; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(220,240,255,.4) 100%);
  border: 2px solid rgba(255,255,255,.8); border-radius: 4px 4px 0 0;
}
.gs-counter {
  position: absolute; bottom: 18%; left: 8%; right: 45%;
  height: 18%; background: white; border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.gs-plant {
  position: absolute; border-radius: 50% 50% 20px 20px;
  background: #5a9e74;
}
.gs-plant--lg {
  width: 52px; height: 70px; bottom: 16%; left: 52%;
  box-shadow: -12px 0 0 #4a8e64, 12px 0 0 #6aae84;
}
.gs-plant--sm {
  width: 30px; height: 44px; bottom: 16%; left: 70%;
  background: #6aae84;
}
.gs-chair {
  position: absolute; bottom: 18%; right: 8%;
  width: 16%; height: 28%;
  background: #e8ede8; border-radius: 6px;
  box-shadow: var(--sh-sm);
}

/* Ultrasound scene */
.gal-scene--ultrasound { background: linear-gradient(135deg, #b8d4c8 0%, #8db4a0 100%); }
.gs-device {
  position: absolute; left: 18%; top: 20%;
  width: 35%; height: 52%;
  background: #f0f4f0; border-radius: 8px;
  box-shadow: var(--sh-md); border: 1.5px solid #cdd4cc;
}
.gs-monitor {
  position: absolute; right: 12%; top: 12%;
  width: 38%; height: 45%;
  background: #1a2a22; border-radius: 6px;
  border: 3px solid #cdd4cc;
  overflow: hidden; box-shadow: var(--sh-md);
}
.gs-monitor::after {
  content: ''; position: absolute; inset: 8px;
  background: linear-gradient(45deg, transparent 20%, rgba(106,170,136,.7) 50%, transparent 80%);
  border-radius: 3px;
}
.gs-table {
  position: absolute; bottom: 14%; left: 10%; right: 10%;
  height: 8%; background: #d8e4dc; border-radius: 4px;
}

/* Consultation scene */
.gal-scene--consult { background: linear-gradient(135deg, #d4c8b8 0%, #b8a898 100%); }
.gs-desk {
  position: absolute; bottom: 24%; left: 18%; right: 18%;
  height: 10%; background: #f0e8dc; border-radius: 4px;
  box-shadow: 0 3px 0 #d4c8b0;
}
.gs-chair--office {
  position: absolute; bottom: 14%; left: 50%; transform: translateX(-50%);
  width: 24%; height: 44%;
  background: var(--c-sage-l); border-radius: 8px;
  box-shadow: var(--sh-sm);
}
.gs-plant--consult {
  position: absolute; right: 10%; top: 10%;
  width: 40px; height: 60px;
  background: #5a9e74; border-radius: 50% 50% 20px 20px;
  box-shadow: -10px 6px 0 #6aae84;
}

/* Exam room scene */
.gal-scene--exam { background: linear-gradient(135deg, #c0d4cc 0%, #9ab8b0 100%); }
.gs-couch {
  position: absolute; bottom: 16%; left: 10%; right: 30%;
  height: 20%; background: #e8f0ec; border-radius: 6px;
  box-shadow: 0 3px 0 #c0ccc8;
}
.gs-equipment {
  position: absolute; right: 10%; top: 20%;
  width: 22%; height: 60%;
  background: #f0f4f0; border-radius: 8px;
  border: 1.5px solid #cdd4cc; box-shadow: var(--sh-md);
}

@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gal-item--lg { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ── INFO ROW ────────────────────────────────────────────── */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
@media (max-width: 740px) { .info-row { grid-template-columns: 1fr; } }

.info-card {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-8);
}
.info-card__head {
  display: flex; align-items: center; gap: var(--sp-3);
  color: var(--c-sage); margin-bottom: var(--sp-6);
}
.info-card__head h3 { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 600; color: var(--c-text); }

.hours { display: flex; flex-direction: column; }
.hours__row { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-divider); gap: var(--sp-4); }
.hours__row:last-child { border-bottom: none; }
.hours__row dt { font-size: var(--t-sm); font-weight: 600; color: var(--c-text); }
.hours__row dd { font-size: var(--t-sm); color: var(--c-muted); }
.hours__row--closed dt, .hours__row--closed dd { color: var(--c-faint); }
.hours__note {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-xs); color: var(--c-sage); font-weight: 600;
  margin-top: var(--sp-5); padding: var(--sp-3) var(--sp-4);
  background: var(--c-sage-pale); border-radius: var(--r-lg);
  border: 1px solid color-mix(in oklch, var(--c-sage) 25%, transparent);
  max-width: 100%;
}

.info-card--map {}
.loc-address { font-size: var(--t-sm); color: var(--c-muted); line-height: 1.8; margin-bottom: var(--sp-5); max-width: 100%; }
.loc-address strong { color: var(--c-text); }

/* Map illustration */
.map-illustration {
  position: relative; height: 160px;
  background: #e8ede8; border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: var(--sp-4);
  border: 1px solid var(--c-border);
}
.mi-road {
  position: absolute; background: #d4d8d0;
}
.mi-road--h { top: 50%; left: 0; right: 0; height: 22px; transform: translateY(-50%); }
.mi-road--v { left: 40%; top: 0; bottom: 0; width: 22px; }
.mi-road::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 16px, white 16px, white 24px);
  opacity: .5;
}
.mi-road--v::after {
  background: repeating-linear-gradient(180deg, transparent 0, transparent 16px, white 16px, white 24px);
}
.mi-building {
  position: absolute; border-radius: 3px;
  background: #c8d4c8; border: 1px solid #b0bfb0;
}
.mi-building--praxis {
  left: 48%; top: 20%; width: 36%; height: 36%;
  background: var(--c-sage); border-color: var(--c-sage-d);
  display: flex; align-items: center; justify-content: center;
}
.mi-building--praxis span { font-size: 7px; font-weight: 700; color: white; white-space: nowrap; }
.mi-building--a { left: 8%; top: 15%; width: 24%; height: 28%; }
.mi-building--b { left: 8%; bottom: 15%; width: 24%; height: 24%; background: #d4c8b8; border-color: #c0b4a4; }
.mi-tree { position: absolute; width: 14px; height: 20px; border-radius: 50% 50% 20% 20%; background: #5a9e74; }
.mi-tree--1 { right: 12%; top: 15%; }
.mi-tree--2 { right: 18%; bottom: 20%; background: #4a8e64; }
.mi-pin { position: absolute; left: calc(40% - 6px); top: calc(20% - 36px); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,280px),1fr)); gap: var(--sp-6); }

.tcard {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-8);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.tcard__stars { font-size: var(--t-base); color: #d4a017; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.tcard p { font-size: var(--t-sm); color: var(--c-muted); font-style: italic; line-height: 1.75; margin-bottom: var(--sp-6); }
.tcard footer { display: flex; align-items: center; gap: var(--sp-3); }
.tcard__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-sage); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--t-base); flex-shrink: 0;
}
.tcard cite { font-style: normal; font-size: var(--t-xs); color: var(--c-muted); font-weight: 600; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-12); align-items: start;
}
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }

/* Form */
.contact-form-wrap {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: clamp(var(--sp-8),5vw,var(--sp-12));
}

.cform { display: flex; flex-direction: column; gap: var(--sp-5); }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }

.fg { display: flex; flex-direction: column; gap: var(--sp-2); }
.fg label { font-size: var(--t-sm); font-weight: 600; color: var(--c-text); }
.fg label span { color: var(--c-sage); }
.fg__err { font-size: var(--t-xs); color: #b03050; min-height: 1.1em; }

input, select, textarea {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  background: var(--c-surface); color: var(--c-text);
  font-size: var(--t-sm);
  transition: border-color var(--dur), box-shadow var(--dur);
  appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--c-faint); }
input:hover, select:hover, textarea:hover { border-color: var(--c-muted); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--c-sage);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--c-sage) 18%, transparent);
}
input.err, select.err, textarea.err {
  border-color: #b03050;
  box-shadow: 0 0 0 3px rgba(176,48,80,.12);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a7068' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--sp-3) center; background-size: 18px;
  padding-right: var(--sp-10);
}
textarea { resize: vertical; min-height: 90px; }

.fg--check { flex-direction: row; align-items: flex-start; gap: var(--sp-3); }
.fg--check input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; padding: 0; border-radius: var(--r-sm); accent-color: var(--c-sage); }
.fg--check label { font-size: var(--t-sm); color: var(--c-muted); max-width: 100%; }
.fg--check label a { color: var(--c-sage); text-decoration: underline; text-underline-offset: 2px; }

/* Success */
.success-msg {
  text-align: center; padding: var(--sp-16) var(--sp-8);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
}
.success-msg h3 { font-family: var(--f-display); font-size: var(--t-xl); color: var(--c-text); }
.success-msg p { color: var(--c-muted); max-width: 40ch; }

/* Aside */
.contact-aside { display: flex; flex-direction: column; gap: var(--sp-6); }

.aside-card {
  background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-8);
}
.aside-card h3 { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 600; color: var(--c-text); margin-bottom: var(--sp-5); }

.aside-card--accent {
  background: var(--c-sage-pale);
  border-color: color-mix(in oklch, var(--c-sage) 30%, transparent);
}
.aside-card--accent h3 { color: var(--c-sage-dd); }
.aside-card--accent p { font-size: var(--t-sm); color: var(--c-muted); margin-bottom: var(--sp-4); }

.aside-items { display: flex; flex-direction: column; gap: 0; }
.aside-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--c-divider);
  transition: color var(--dur);
}
.aside-item:last-child { border-bottom: none; }
.aside-item:not(.aside-item--plain):hover { color: var(--c-sage); }
.aside-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--c-sage-pale); color: var(--c-sage);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aside-item > div:last-child { display: flex; flex-direction: column; gap: 2px; font-size: var(--t-sm); }
.aside-item strong { font-size: var(--t-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.aside-item span { color: var(--c-text); }

.kasse-logos { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.kasse-tag {
  font-size: var(--t-xs); font-weight: 700;
  color: var(--c-sage-dd); background: color-mix(in oklch, var(--c-sage) 20%, transparent);
  border: 1px solid color-mix(in oklch, var(--c-sage) 35%, transparent);
  padding: 3px var(--sp-3); border-radius: var(--r-full);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-divider);
  padding-block: clamp(var(--sp-12),6vw,var(--sp-20)) var(--sp-8);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12); margin-bottom: var(--sp-12);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); } }

.footer-brand .logo { margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--t-sm); color: var(--c-muted); max-width: 36ch; }

.footer-nav h4, .footer-contact h4 { font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--sp-5); }
.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-nav a { font-size: var(--t-sm); color: var(--c-muted); transition: color var(--dur); }
.footer-nav a:hover { color: var(--c-sage); }
.footer-contact address { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-contact p { font-size: var(--t-sm); color: var(--c-muted); max-width: 100%; }
.footer-contact a { transition: color var(--dur); }
.footer-contact a:hover { color: var(--c-sage); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
  padding-top: var(--sp-6); border-top: 1px solid var(--c-divider);
}
.footer-bottom p { font-size: var(--t-xs); color: var(--c-faint); max-width: 100%; }
.footer-bottom nav { display: flex; gap: var(--sp-5); }
.footer-bottom a { font-size: var(--t-xs); color: var(--c-faint); transition: color var(--dur); }
.footer-bottom a:hover { color: var(--c-muted); }

/* ── FAB ─────────────────────────────────────────────────── */
.fab {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6); z-index: 150;
  display: none; align-items: center; gap: var(--sp-2);
  background: var(--c-sage); color: white;
  padding: var(--sp-3) var(--sp-5); border-radius: var(--r-full);
  font-size: var(--t-sm); font-weight: 700;
  box-shadow: var(--sh-lg); transition: all var(--dur) var(--ease);
}
.fab:hover { background: var(--c-sage-d); transform: translateY(-2px); box-shadow: 0 20px 50px rgba(74,140,111,.4); }
@media (max-width: 840px) { .fab { display: flex; } }
