/* ──────────────────────────────────────────────────────────────
   Augenarztpraxis Dr. Refika Kılıç — Design-System
   reines CSS, kein Framework
   ────────────────────────────────────────────────────────────── */

/* Manrope — selbst gehostet (DSGVO: kein Google-Fonts-CDN, kein IP-Transfer) */
@font-face{
  font-family:'Manrope';
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url('fonts/manrope-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Manrope';
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url('fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root{
  /* Surfaces */
  --bg:           #f6f8fb;
  --bg-soft:      #eef3f8;
  --bg-tint:      #e3edf5;
  --bg-dark:      #0a1f33;
  --bg-darker:    #07182a;

  /* Text */
  --text:         #0a1b2c;
  --text-muted:   #4f6478;
  --text-light:   #5e7285;

  /* Blau-Stufen */
  --blue-50:      #e8f1f8;
  --blue-100:     #cfe1ee;
  --blue-300:     #6da4cb;
  --blue-500:     #1d5b85;
  --blue-600:     #154a70;
  --blue-700:     #0e3a5a;
  --blue-900:     #0a1f33;

  --accent:       var(--blue-500);
  --accent-hover: var(--blue-600);
  --accent-soft:  var(--blue-50);

  /* Borders */
  --border:       rgba(10,27,44,0.08);
  --border-strong:rgba(10,27,44,0.14);
  --border-dark:  rgba(255,255,255,0.08);

  /* Type-Skala */
  --text-hero:  clamp(2.9rem, 5.8vw, 5.4rem);
  --text-h2:    clamp(2.1rem, 3.8vw, 3.25rem);
  --text-h3:    clamp(1.35rem, 2vw, 1.7rem);
  --text-body:  clamp(1rem, 1.1vw, 1.1875rem);
  --text-sm:    0.9375rem;

  /* Shadows */
  --shadow-card:  0 1px 2px rgba(10,27,44,0.04), 0 4px 16px rgba(10,27,44,0.05);
  --shadow-lift:  0 4px 12px rgba(10,27,44,0.06), 0 24px 60px -20px rgba(10,27,44,0.18);
  --shadow-blue:  0 1px 2px rgba(29,91,133,0.18), 0 8px 24px -6px rgba(29,91,133,0.32);

  --radius:    12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Fonts (fix: Manrope) */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-sans:    'Manrope', system-ui, -apple-system, sans-serif;
  --display-tracking: -0.035em;
  --display-weight: 600;
  --display-weight-strong: 700;

  --surface-card: #ffffff;
  --surface-card-border: var(--border);
}

/* ──────────────────────────────────────────────────────────────
   DARK MODE
   ────────────────────────────────────────────────────────────── */
html[data-theme="dark"]{ color-scheme:dark; }
html[data-theme="dark"] body{
  --bg:           #0d1828;
  --bg-soft:      #122236;
  --bg-tint:      #16314e;
  --bg-dark:      #050d18;
  --bg-darker:    #030712;

  --text:         #e9eef6;
  --text-muted:   #9aacc0;
  --text-light:   #8ea0b4;

  --blue-50:      rgba(91, 156, 212, 0.12);
  --blue-100:     rgba(91, 156, 212, 0.22);
  --blue-300:     #7ab3e0;
  --blue-500:     #5b9cd4;
  --blue-600:     #4a8dbf;
  --blue-700:     #3974a3;
  --blue-900:     #122236;

  --accent:       var(--blue-500);
  --accent-hover: var(--blue-300);
  --accent-soft:  var(--blue-50);

  --border:       rgba(255,255,255,0.08);
  --border-strong:rgba(255,255,255,0.16);

  --surface-card: #16243a;
  --surface-card-border: rgba(255,255,255,0.10);

  --shadow-card:  0 1px 2px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.25);
  --shadow-lift:  0 4px 12px rgba(0,0,0,0.35), 0 24px 60px -20px rgba(0,0,0,0.55);
  --shadow-blue:  0 1px 2px rgba(0,0,0,0.4), 0 8px 24px -6px rgba(91,156,212,0.35);
}

/* Sanfter Theme-Übergang */
body, .nav, .stats, .trustbar, .services, .footer, .appointment,
.hero__media, .badges span, .hero__status, .hero__chip,
.cookie, .map-consent, .service, .map-wrap{
  transition:
    background-color .35s var(--ease-out, ease),
    border-color .35s var(--ease-out, ease),
    color .35s var(--ease-out, ease);
}

/* ──────────────────────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-sans);
  font-size:var(--text-body);
  line-height:1.72;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; height:auto; }
button{ font:inherit; cursor:pointer; border:0; background:none; color:inherit; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  letter-spacing:var(--display-tracking);
  line-height:1.1;
  margin:0;
  color:var(--text);
}
.font-sans{ font-family:var(--font-sans); }
p{ margin:0; }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);
}
.section{ padding:clamp(88px, 10vw, 152px) 0; position:relative; }

/* ──────────────────────────────────────────────────────────────
   REVEAL
   ────────────────────────────────────────────────────────────── */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.is-in{ opacity:1; transform:translateY(0); }
.reveal[data-delay="1"]{ transition-delay:.08s; }
.reveal[data-delay="2"]{ transition-delay:.16s; }
.reveal[data-delay="3"]{ transition-delay:.24s; }
.reveal[data-delay="4"]{ transition-delay:.32s; }

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

/* Sichtbarer Tastatur-Fokus */
:focus-visible{ outline:3px solid var(--accent); outline-offset:3px; border-radius:4px; }
.btn:focus-visible, .nav__cta:focus-visible{ outline-offset:4px; }

/* Skip-Link */
.skip-link{
  position:absolute; left:16px; top:-60px; z-index:400;
  background:var(--accent); color:#fff; padding:12px 18px;
  border-radius:var(--radius-full); font-weight:600; font-size:0.9375rem;
  transition:top .2s var(--ease-out);
}
.skip-link:focus{ top:16px; }

/* ──────────────────────────────────────────────────────────────
   SHARED PRIMITIVES
   ────────────────────────────────────────────────────────────── */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-sans);
  font-size:0.78rem;
  font-weight:500;
  color:var(--accent);
  letter-spacing:0.16em;
  text-transform:uppercase;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--accent); }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-sans);
  font-weight:500;
  font-size:0.9375rem;
  letter-spacing:-0.005em;
  padding:14px 22px;
  border-radius:var(--radius-full);
  transition:transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out), color .2s;
  white-space:nowrap;
}
.btn--primary{ background:var(--accent); color:#fff; box-shadow:var(--shadow-blue); }
.btn--primary:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
  box-shadow:0 2px 4px rgba(29,91,133,.2), 0 14px 32px -8px rgba(29,91,133,.45);
}
.btn--ghost{ background:transparent; color:var(--text); border:1px solid var(--border-strong); }
.btn--ghost:hover{ background:var(--surface-card); border-color:var(--accent); color:var(--accent); }
.btn--large{ padding:18px 28px; font-size:1rem; }
.btn svg{ width:16px; height:16px; }
.btn--large svg{ width:18px; height:18px; }

.link-arrow{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--accent); font-weight:500; font-size:0.9375rem;
  transition:gap .25s var(--ease-out), color .2s;
  padding:6px 0;
  border-bottom:1px solid currentColor;
}
.link-arrow:hover{ gap:14px; color:var(--accent-hover); }
.link-arrow svg{ width:14px; height:14px; }

/* ──────────────────────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────────────────────── */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  transition:background .25s var(--ease-out), border-color .25s var(--ease-out), padding .25s var(--ease-out);
  border-bottom:1px solid transparent;
}
.nav.is-stuck{
  background:color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  border-bottom-color:var(--border);
  padding:11px 0;
}
.nav__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:14px; }
.brand__mark{ width:46px; height:46px; display:grid; place-items:center; flex-shrink:0; }
.brand__mark img{ width:100%; height:100%; object-fit:contain; display:block; }
.brand__text{ line-height:1.2; }
.brand__name{
  font-family:var(--font-display);
  font-size:1.0625rem; font-weight:600; letter-spacing:-0.01em;
}
.brand__sub{
  display:block; font-size:0.7rem; color:var(--text-muted);
  letter-spacing:0.14em; text-transform:uppercase; margin-top:2px; font-weight:500;
}
.nav__links{ display:flex; gap:34px; list-style:none; margin:0; padding:0; }
.nav__link{
  font-size:1rem; font-weight:500; color:var(--text);
  position:relative; padding:6px 0; transition:color .2s var(--ease-out);
}
.nav__link::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:1px; background:var(--accent);
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease-out);
}
.nav__link:hover{ color:var(--accent); }
.nav__link:hover::after{ transform:scaleX(1); }

.nav__btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px; border:1px solid var(--border-strong);
  color:var(--text); background:transparent; border-radius:var(--radius-full);
  font-size:0.875rem; font-weight:500; letter-spacing:-0.005em; white-space:nowrap;
  transition:border-color .2s var(--ease-out), color .2s, background .2s;
}
.nav__btn svg{ width:14px; height:14px; color:var(--accent); }
.nav__btn:hover{ border-color:var(--accent); color:var(--accent); }
.nav__btn:hover svg{ color:var(--accent); }
@media (max-width: 880px){ .nav__btn{ display:none; } }

.nav__cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--accent); color:#fff; padding:10px 16px;
  border-radius:var(--radius-full); font-size:0.875rem; font-weight:500;
  transition:transform .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out);
  box-shadow:0 1px 2px rgba(29,91,133,.18);
}
.nav__cta:hover{ background:var(--accent-hover); transform:translateY(-1px); box-shadow:0 6px 18px rgba(29,91,133,.25); }
.nav__cta svg{ width:13px; height:13px; }

/* Theme toggle */
.theme-toggle{
  width:40px; height:40px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:transparent; border:1px solid var(--border-strong); color:var(--text);
  position:relative;
  transition:background .2s var(--ease-out), border-color .2s var(--ease-out), color .2s var(--ease-out), transform .25s var(--ease-out);
  flex-shrink:0;
}
.theme-toggle:hover{ background:var(--bg-soft); border-color:var(--accent); color:var(--accent); }
.theme-toggle:active{ transform:scale(0.92); }
.theme-toggle svg{
  width:18px; height:18px; position:absolute;
  transition:opacity .3s var(--ease-out), transform .45s var(--ease-out);
}
.theme-toggle .icon-sun{ opacity:0; transform:rotate(-45deg) scale(.6); }
.theme-toggle .icon-moon{ opacity:1; transform:rotate(0) scale(1); }
html[data-theme="dark"] .theme-toggle .icon-sun{ opacity:1; transform:rotate(0) scale(1); }
html[data-theme="dark"] .theme-toggle .icon-moon{ opacity:0; transform:rotate(45deg) scale(.6); }

.nav__burger{
  display:none; width:40px; height:40px; border-radius:50%;
  align-items:center; justify-content:center; transition:background .2s var(--ease-out);
}
.nav__burger:hover{ background:var(--bg-soft); }
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after{
  display:block; width:18px; height:1.5px; background:var(--text);
  transition:transform .3s var(--ease-out);
}
.nav__burger span{ position:relative; }
.nav__burger span::before,
.nav__burger span::after{ content:""; position:absolute; left:0; }
.nav__burger span::before{ top:-6px; }
.nav__burger span::after{ top:6px; }
.nav__burger.is-open span{ background:transparent; }
.nav__burger.is-open span::before{ transform:translateY(6px) rotate(45deg); }
.nav__burger.is-open span::after{ transform:translateY(-6px) rotate(-45deg); }

@media (max-width: 880px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:inline-flex; }
}

.drawer{
  position:fixed; inset:0; background:var(--bg);
  z-index:90; padding:100px var(--gutter) 32px;
  transform:translateY(-100%);
  transition:transform .45s var(--ease-out), visibility 0s linear .45s;
  display:flex; flex-direction:column; gap:6px;
  pointer-events:none; visibility:hidden; overflow:hidden;
}
.drawer.is-open{
  transform:translateY(0); pointer-events:auto; visibility:visible;
  transition:transform .45s var(--ease-out), visibility 0s linear 0s;
}
.drawer a{
  font-family:var(--font-display);
  font-size:2rem; padding:14px 0;
  border-bottom:1px solid var(--border); font-weight:600;
}
.drawer .nav__cta{
  margin-top:24px; align-self:flex-start;
  font-family:var(--font-sans); font-size:1rem; padding:14px 22px;
}

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */
.hero{ padding:148px 0 96px; position:relative; overflow:hidden; }
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    radial-gradient(ellipse 60% 40% at 90% 20%, var(--blue-50), transparent 70%),
    radial-gradient(ellipse 50% 30% at 0% 100%, var(--blue-50), transparent 60%);
  opacity:.6; pointer-events:none;
}
.hero__grid{ position:relative; display:grid; grid-template-columns:1fr; gap:56px; align-items:center; }
@media (min-width: 980px){ .hero__grid{ grid-template-columns: 0.78fr 1.22fr; gap:60px; } }
.hero__eyebrow{ margin-bottom:28px; }
.hero__title{ font-size:var(--text-hero); margin-bottom:28px; font-weight:600; max-width:18ch; }
.hero__title .hl{ color:var(--accent); font-weight:700; }
.hero__lead{
  font-size:clamp(1.15rem, 1.6vw, 1.3rem);
  color:var(--text-muted); max-width:52ch; line-height:1.62; margin-bottom:34px; font-weight:400;
}
.badges{ display:flex; flex-wrap:wrap; gap:8px 10px; margin-bottom:40px; }
.badges span{
  display:inline-flex; align-items:center; gap:8px; padding:9px 16px;
  background:var(--surface-card); border:1px solid var(--surface-card-border);
  border-radius:var(--radius-full); font-size:0.9375rem; color:var(--text); font-weight:500;
}
.badges span::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--accent); display:inline-block; }
.cta-row{ display:flex; flex-wrap:wrap; align-items:center; gap:14px 22px; }

.hero__visual{ position:relative; }
.hero__media{ position:relative; display:flex; flex-direction:column; gap:14px; max-height:860px; }
.hero__tile{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lift); background:var(--bg-tint);
}
.hero__tile--single{ aspect-ratio: 4/3; }
.hero__tile img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease-out); }
.hero__visual:hover .hero__tile img{ transform:scale(1.03); }
@media (max-width: 720px){ .hero__media{ gap:10px; max-height:none; } }

.hero__status{
  position:absolute; left:-18px; bottom:36px;
  background:var(--surface-card); border:1px solid var(--surface-card-border);
  padding:14px 18px; border-radius:var(--radius); box-shadow:var(--shadow-card);
  display:flex; align-items:center; gap:14px; min-width:220px;
}
.status__dot{ width:10px; height:10px; border-radius:50%; background:#22a06b; box-shadow:0 0 0 4px rgba(34,160,107,.16); flex-shrink:0; }
.status__text{ font-size:0.8125rem; line-height:1.35; color:var(--text-muted); font-weight:400; }
.status__text strong{ display:block; color:var(--text); font-weight:600; font-size:0.875rem; }

.hero__chip{
  position:absolute; right:-14px; top:48px;
  background:var(--bg-dark); color:#fff; padding:14px 18px; border-radius:var(--radius);
  font-size:0.8125rem; display:flex; flex-direction:column; gap:2px; box-shadow:var(--shadow-lift);
}
.hero__chip strong{ font-family:var(--font-display); font-size:1.75rem; line-height:1; font-weight:700; }
.hero__chip span{ color:rgba(255,255,255,.7); }

@media (max-width: 720px){
  .hero__chip{ right:8px; top:16px; padding:12px 14px; }
  .hero__chip strong{ font-size:1.3rem; }
  .hero__status{ left:8px; bottom:14px; min-width:0; max-width:230px; }
}

/* ──────────────────────────────────────────────────────────────
   MOBILE PASS ≤ 720px
   ────────────────────────────────────────────────────────────── */
@media (max-width: 720px){
  html, body{ overflow-x:hidden; }
  .nav{ padding:14px 0; }
  .nav.is-stuck{ padding:10px 0; }
  .brand__mark{ width:40px; height:40px; }
  .brand__name{ font-size:1rem; }
  .brand__sub{ font-size:0.65rem; letter-spacing:0.12em; }

  .hero{ padding:112px 0 64px; }
  .hero__grid{ gap:40px; }
  .hero__title{ font-size:clamp(2.4rem, 9vw, 3.4rem); margin-bottom:22px; }
  .hero__lead{ font-size:1rem; margin-bottom:26px; }
  .badges{ margin-bottom:30px; }

  .cta-row{ width:100%; flex-direction:column; align-items:stretch; gap:12px; }
  .btn{ width:100%; justify-content:center; }
  .btn--large{ padding:16px 22px; font-size:0.9375rem; }

  .hero__media{ max-height:none; }
  .hero__status .status__text{ font-size:0.78rem; }

  .section{ padding:64px 0; }
  .section-head{ margin-bottom:36px; }
  .section-title{ font-size:clamp(1.7rem, 7vw, 2.4rem); }
  .section-lead{ font-size:1rem; }

  .stats{ padding:64px 0; }
  .stats__grid{ gap:28px; }
  .stat__num{ font-size:clamp(2.4rem, 11vw, 3.4rem); margin-bottom:10px; }

  .trustbar{ padding:20px 0; }
  .trustbar__inner{ display:grid; grid-template-columns:1fr 1fr; gap:14px 16px; font-size:0.8125rem; }
  .trustbar__item{ gap:8px; }

  .team-lead{ margin-bottom:64px; gap:32px; }
  .team-lead__title{ font-size:clamp(1.85rem, 8vw, 2.6rem); }
  .team-lead__role{ margin-bottom:20px; }
  .team-lead__bio{ font-size:1rem; line-height:1.7; }
  .team-lead__creds{ grid-template-columns:1fr 1fr; gap:18px 16px; margin-top:24px; padding-top:22px; }

  .team-staff{ grid-template-columns:1fr 1fr; gap:18px; }
  .staff__name{ font-size:1.0625rem; }
  .staff__role{ font-size:0.78rem; }

  .location__grid{ gap:36px; }
  .info-block address{ font-size:1.25rem; }
  .map-wrap{ aspect-ratio:4/3; }

  .service{ min-height:0; padding:24px 22px 26px; gap:10px; }
  .service__title{ font-size:1rem; }
  .service__desc{ font-size:0.85rem; }
  .services__foot{ margin-top:32px; }

  .appointment{ padding:64px 0; }
  .appointment__inner{ gap:28px; }
  .appointment__title{ font-size:clamp(1.8rem, 8vw, 2.6rem); }
  .appointment__sub{ font-size:0.9375rem; }
  .appointment__num{ font-size:clamp(1.7rem, 9vw, 2.4rem); }
  .appointment__num svg{ width:22px; height:22px; }

  .footer{ padding:56px 0 28px; }
  .footer__grid{ gap:32px; margin-bottom:40px; }
  .footer__bottom{ flex-direction:column; align-items:flex-start; gap:8px; }
}

@media (max-width: 380px){
  .brand__sub{ display:none; }
  .team-staff{ grid-template-columns:1fr; }
  .hero__chip{ top:12px; padding:10px 12px; }
  .hero__chip strong{ font-size:1.15rem; }
  .hero__status{ max-width:200px; padding:11px 14px; }
}

/* ──────────────────────────────────────────────────────────────
   TRUST-BAR
   ────────────────────────────────────────────────────────────── */
.trustbar{ background:var(--bg-soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:22px 0; }
.trustbar__inner{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px; font-size:0.8125rem; color:var(--text-muted); }
.trustbar__item{ display:inline-flex; align-items:center; gap:10px; font-weight:500; }
.trustbar__item svg{ color:var(--accent); width:16px; height:16px; }

/* ──────────────────────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────────────────────── */
.stats{ background:var(--bg); padding:96px 0; position:relative; }
.stats::before, .stats::after{ content:""; position:absolute; left:0; right:0; height:1px; background:var(--border); }
.stats::before{ top:0; } .stats::after{ bottom:0; }
.stats__grid{ display:grid; grid-template-columns:1fr; gap:48px; }
@media (min-width: 720px){ .stats__grid{ grid-template-columns: repeat(3, 1fr); gap:24px; } }
.stat{ padding:0 0 0 24px; border-left:1px solid var(--border); }
@media (max-width: 719px){
  .stat{ padding:0; border-left:0; border-top:1px solid var(--border); padding-top:24px; }
  .stat:first-child{ border-top:0; padding-top:0; }
}
.stat__num{
  font-family:var(--font-display); font-size:clamp(2.6rem, 5vw, 4rem);
  line-height:1; letter-spacing:-0.03em; color:var(--accent); font-weight:700; margin-bottom:14px;
}
.stat__label{ font-size:1.0625rem; color:var(--text-muted); line-height:1.55; max-width:24ch; }

/* ──────────────────────────────────────────────────────────────
   SECTION HEADS
   ────────────────────────────────────────────────────────────── */
.section-head{ margin-bottom:64px; max-width:820px; }
.section-head .eyebrow{ margin-bottom:20px; }
.section-title{ font-size:var(--text-h2); margin-bottom:20px; font-weight:600; }
.section-title .hl{ color:var(--accent); }
.section-lead{ font-size:1.1875rem; color:var(--text-muted); max-width:58ch; line-height:1.7; }

/* ──────────────────────────────────────────────────────────────
   TEAM
   ────────────────────────────────────────────────────────────── */
.team-lead{ display:grid; grid-template-columns:1fr; gap:48px; align-items:center; margin-bottom:96px; }
@media (min-width: 880px){ .team-lead{ grid-template-columns: 0.85fr 1.15fr; gap:64px; } }
.team-lead__photo{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio: 4/5; box-shadow:var(--shadow-lift); background:var(--bg-tint); position:relative; }
.team-lead__photo img{ width:100%; height:100%; object-fit:cover; }
.team-lead__title{ font-size:clamp(2rem, 4vw, 3.2rem); margin-bottom:6px; font-weight:600; }
.team-lead__role{
  font-family:var(--font-sans); font-size:0.8125rem; color:var(--accent);
  letter-spacing:0.14em; text-transform:uppercase; margin-bottom:28px; font-weight:500;
}
.team-lead__bio{ color:var(--text-muted); font-size:1.1875rem; line-height:1.78; margin-bottom:20px; max-width:56ch; }
.team-lead__creds{ margin-top:32px; padding-top:28px; border-top:1px solid var(--border); display:grid; grid-template-columns:repeat(2, 1fr); gap:24px 20px; }
.cred__label{ font-size:0.72rem; color:var(--text-light); text-transform:uppercase; letter-spacing:0.14em; margin-bottom:6px; font-weight:500; }
.cred__value{ font-size:0.9375rem; color:var(--text); font-weight:500; }

.team-staff{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:28px; }
.staff__photo{ aspect-ratio:1/1; border-radius:var(--radius); overflow:hidden; background:var(--bg-tint); margin-bottom:16px; transition:transform .3s var(--ease-out); }
.staff:hover .staff__photo{ transform:translateY(-3px); }
.staff__photo img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease-out); }
.staff:hover .staff__photo img{ transform:scale(1.05); }
.staff__name{ font-family:var(--font-display); font-size:1.25rem; line-height:1.2; letter-spacing:-0.01em; margin-bottom:4px; font-weight:600; }
.staff__role{ font-size:0.8125rem; color:var(--text-muted); }

/* ──────────────────────────────────────────────────────────────
   LEISTUNGEN (DARK NAVY)
   ────────────────────────────────────────────────────────────── */
.services{ background:var(--bg-dark); color:#dde6ef; position:relative; overflow:hidden; }
.services::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 0%, rgba(29,91,133,.35), transparent 60%),
    radial-gradient(ellipse 500px 250px at 0% 100%, rgba(29,91,133,.22), transparent 60%);
  pointer-events:none;
}
.services > .container{ position:relative; }
.services .eyebrow{ color:var(--blue-300); }
.services .eyebrow::before{ background:var(--blue-300); }
.services .section-title{ color:#fff; }
.services .section-title .hl{ color:var(--blue-300); }
.services .section-lead{ color:rgba(221,230,239,.7); }

.services__grid{
  display:grid; grid-template-columns:1fr; gap:1px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); overflow:hidden;
}
@media (min-width: 680px){ .services__grid{ grid-template-columns:repeat(2, 1fr); } }
@media (min-width: 1024px){ .services__grid{ grid-template-columns:repeat(4, 1fr); } }
.service{ background:var(--bg-dark); padding:34px 30px 36px; position:relative; transition:background .3s var(--ease-out); display:flex; flex-direction:column; gap:16px; min-height:260px; }
.service:hover{ background:#0e2840; }
.service__num{ font-family:var(--font-sans); font-size:0.75rem; color:var(--blue-300); letter-spacing:0.16em; font-weight:500; }
.service__title{ font-family:var(--font-display); font-weight:600; font-size:1.2rem; line-height:1.3; color:#fff; letter-spacing:-0.01em; }
.service__desc{ font-size:0.95rem; color:rgba(221,230,239,.68); line-height:1.6; margin-top:auto; }
.service__arrow{ position:absolute; top:28px; right:26px; color:var(--blue-300); opacity:0; transform:translate(-6px, 6px); transition:opacity .3s var(--ease-out), transform .3s var(--ease-out); }
.service:hover .service__arrow{ opacity:1; transform:translate(0,0); }
.services__foot{ margin-top:40px; }
.services .link-arrow{ color:#fff; border-bottom-color:rgba(255,255,255,.2); }
.services .link-arrow:hover{ color:var(--blue-300); border-bottom-color:var(--blue-300); }

/* ──────────────────────────────────────────────────────────────
   PRAXIS & STANDORT
   ────────────────────────────────────────────────────────────── */
.location__grid{ display:grid; grid-template-columns:1fr; gap:48px; align-items:start; }
@media (min-width: 880px){ .location__grid{ grid-template-columns: 1.1fr 0.9fr; gap:72px; } }
.location__photo{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio: 5/4; box-shadow:var(--shadow-lift); background:var(--bg-tint); }
.location__photo img{ width:100%; height:100%; object-fit:cover; }

.info-block{ margin-bottom:36px; }
.info-block:last-child{ margin-bottom:0; }
.info-label{ font-size:0.72rem; color:var(--text-light); letter-spacing:0.16em; text-transform:uppercase; margin-bottom:14px; font-weight:500; }
.info-block address{ font-style:normal; font-family:var(--font-display); font-size:1.5rem; line-height:1.35; letter-spacing:-0.01em; font-weight:600; }
.contact-line{ display:flex; align-items:center; gap:14px; padding:15px 0; border-bottom:1px solid var(--border); font-size:1.0625rem; }
.contact-line:last-child{ border-bottom:0; }
.contact-line svg{ width:16px; height:16px; color:var(--accent); flex-shrink:0; }
.contact-line a{ transition:color .2s; font-weight:500; }
.contact-line a:hover{ color:var(--accent); }

.hours{ list-style:none; margin:0; padding:0; }
.hours li{ display:flex; align-items:baseline; justify-content:space-between; gap:24px; padding:15px 0; border-bottom:1px solid var(--border); font-size:1.0625rem; }
.hours li:last-child{ border-bottom:0; }
.hours__day{ color:var(--text); font-weight:500; min-width:80px; }
.hours__time{ color:var(--text-muted); font-variant-numeric:tabular-nums; text-align:right; }

/* Maps */
.map-wrap{ margin-top:28px; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; position:relative; aspect-ratio:16/9; background:var(--bg-tint); }
.map-consent{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:24px; gap:16px; background:linear-gradient(135deg, var(--bg-tint) 0%, var(--blue-100) 100%); }
.map-consent__text{ font-size:0.8125rem; color:var(--text-muted); max-width:36ch; line-height:1.5; }
.map-consent__text a{ text-decoration:underline; color:var(--text); }
.map-frame{ width:100%; height:100%; border:0; display:block; }

/* Dünne Google-Bewertungs-Zeile */
.reviews-line{
  display:inline-flex; align-items:center; flex-wrap:wrap; gap:6px 12px;
  margin-bottom:32px; font-size:0.9375rem; color:var(--text-muted); font-weight:400;
}
.reviews-line__stars{ color:#f5a623; letter-spacing:0.1em; font-family:system-ui, sans-serif; font-size:0.875rem; }
.reviews-line__score strong{ color:var(--text); font-weight:600; }
.reviews-line__sep{ width:1px; height:14px; background:var(--border-strong); }
.reviews-line__link{ color:var(--accent); font-weight:500; border-bottom:1px solid currentColor; transition:opacity .2s; }
.reviews-line__link:hover{ opacity:.7; }

/* ──────────────────────────────────────────────────────────────
   TERMIN CTA
   ────────────────────────────────────────────────────────────── */
.appointment{ background:var(--accent); color:#fff; padding:clamp(72px, 8vw, 108px) 0; position:relative; overflow:hidden; }
.appointment::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 700px 380px at 85% 0%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(ellipse 600px 380px at 0% 100%, rgba(0,0,0,.18), transparent 55%);
  pointer-events:none;
}
.appointment__inner{ position:relative; display:grid; grid-template-columns:1fr; gap:40px; align-items:end; }
@media (min-width: 880px){ .appointment__inner{ grid-template-columns: 1.5fr 1fr; gap:64px; } }
.appointment .eyebrow{ color:rgba(255,255,255,.7); margin-bottom:20px; }
.appointment .eyebrow::before{ background:rgba(255,255,255,.5); }
.appointment__title{ font-size:clamp(2.2rem, 5vw, 4rem); color:#fff; margin-bottom:18px; font-weight:600; max-width:18ch; }
.appointment__sub{ font-size:1.0625rem; color:rgba(255,255,255,.78); max-width:46ch; line-height:1.6; }
.appointment__phone{ display:flex; flex-direction:column; gap:6px; }
.appointment__label{ font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,.7); font-weight:500; }
.appointment__num{ font-family:var(--font-display); font-size:clamp(2.2rem, 4vw, 3rem); letter-spacing:-0.02em; color:#fff; display:inline-flex; align-items:center; gap:14px; transition:opacity .2s; font-weight:700; }
.appointment__num:hover{ opacity:.85; }
.appointment__num svg{ width:26px; height:26px; opacity:.7; }

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
.footer{ background:var(--bg-darker); color:#9eafc1; padding:80px 0 32px; }
.footer__grid{ display:grid; grid-template-columns:1fr; gap:48px; margin-bottom:64px; }
@media (min-width: 720px){ .footer__grid{ grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:48px; } }
.footer__brand{ font-family:var(--font-display); font-size:1.375rem; color:#fff; margin-bottom:14px; letter-spacing:-0.01em; font-weight:600; }
.footer__tag{ font-size:0.9688rem; line-height:1.7; max-width:34ch; color:#7e92a8; }
.footer__heading{ font-size:0.72rem; color:#7e92a8; letter-spacing:0.16em; text-transform:uppercase; margin-bottom:20px; font-weight:500; }
.footer__list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.footer__list a, .footer__list button{ color:#c6d2df; font-size:1.0625rem; transition:color .2s; text-align:left; }
.footer__list a:hover, .footer__list button:hover{ color:var(--blue-300); }
.footer__bottom{ padding-top:24px; border-top:1px solid rgba(255,255,255,.07); display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; font-size:0.8125rem; color:#5d6f83; }

::selection{ background:var(--accent); color:#fff; }

/* ──────────────────────────────────────────────────────────────
   SEHTEST — Snellen-Widget
   ────────────────────────────────────────────────────────────── */
.sehtest{ background:var(--bg-tint); }
html[data-theme="dark"] .sehtest{ background:var(--bg-soft); }
.sehtest__grid{ display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
@media (min-width:880px){ .sehtest__grid{ grid-template-columns: 0.9fr 1.1fr; gap:72px; } }
.sehtest__copy .eyebrow{ margin-bottom:18px; }
.sehtest__copy h2{ font-size:clamp(1.875rem, 3.5vw, 2.625rem); font-weight:600; line-height:1.1; letter-spacing:var(--display-tracking); margin-bottom:20px; }
.sehtest__copy h2 .hl{ color:var(--accent); }
.sehtest__copy p{ font-size:1.1875rem; line-height:1.65; color:var(--text-muted); margin-bottom:16px; max-width:48ch; }
.sehtest__copy p.sehtest__small{ font-size:0.875rem; color:var(--text-light); margin-top:24px; }

.snellen{ background:var(--surface-card); border:1px solid var(--surface-card-border); border-radius:var(--radius-lg); padding:36px 28px; box-shadow:var(--shadow-card); display:flex; flex-direction:column; align-items:center; gap:24px; text-align:center; }
.snellen__progress{ display:flex; gap:6px; }
.snellen__step{ width:34px; height:5px; border-radius:3px; background:var(--border-strong); transition:background .3s; }
.snellen__step.is-done{ background:var(--accent); }
.snellen__step.is-current{ background:var(--accent); animation:snellenPulse 1.5s ease-in-out infinite; }
@keyframes snellenPulse{ 50%{ opacity:.45; } }
.snellen__stage{ width:100%; min-height:220px; display:grid; place-items:center; background:var(--bg); border:1px solid var(--border); border-radius:var(--radius); padding:28px 16px; }
.snellen__letters{ font-family:'Manrope', system-ui, monospace; font-weight:700; letter-spacing:0.4em; color:var(--text); font-size:1.5rem; line-height:1.1; transition:font-size .5s var(--ease-out), opacity .3s; }
.snellen__caption{ font-size:0.875rem; color:var(--text-muted); margin-top:16px; max-width:38ch; }
.snellen__actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.btn--sm{ padding:11px 18px; font-size:0.8125rem; }
.snellen__score{ font-family:var(--font-display); font-size:clamp(3rem, 7vw, 4.5rem); font-weight:700; color:var(--accent); line-height:1; letter-spacing:-0.03em; margin-bottom:12px; }
.snellen__verdict{ font-size:1.0625rem; font-weight:600; margin-bottom:6px; color:var(--text); }
.snellen__disclaimer{ font-size:0.78rem; color:var(--text-light); max-width:44ch; margin:8px auto 0; line-height:1.55; }

/* ──────────────────────────────────────────────────────────────
   COOKIE-BANNER
   ────────────────────────────────────────────────────────────── */
.cookie{
  position:fixed; left:0; right:0; bottom:0; z-index:300;
  display:none; padding:0 var(--gutter) max(20px, env(safe-area-inset-bottom));
  pointer-events:none;
}
.cookie.is-visible{ display:block; }
.cookie__card{
  max-width:var(--container); margin:0 auto;
  background:var(--surface-card); border:1px solid var(--surface-card-border);
  border-radius:var(--radius-lg);
  box-shadow:0 24px 60px -16px rgba(10,27,44,.32), 0 6px 16px -8px rgba(10,27,44,.18);
  padding:22px 24px; pointer-events:auto;
  display:grid; grid-template-columns:1fr; gap:18px; align-items:center;
  transform:translateY(16px); opacity:0;
  transition:transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.cookie.is-in .cookie__card{ transform:translateY(0); opacity:1; }
@media (min-width:780px){ .cookie__card{ grid-template-columns:1fr auto; gap:28px; } }
.cookie__title{ font-family:var(--font-display); font-weight:600; font-size:1.0625rem; margin-bottom:6px; color:var(--text); }
.cookie__text{ font-size:0.875rem; color:var(--text-muted); line-height:1.55; max-width:62ch; }
.cookie__text a{ color:var(--accent); text-decoration:underline; }
.cookie__actions{ display:flex; flex-wrap:wrap; gap:10px; }
@media (max-width:480px){ .cookie__actions{ flex-direction:column; } .cookie__actions .btn{ width:100%; justify-content:center; } }

/* ──────────────────────────────────────────────────────────────
   SUBPAGE / LEGAL / LEISTUNGEN-DETAIL
   ────────────────────────────────────────────────────────────── */
.page-head{ padding:140px 0 0; }
.page-head .eyebrow{ margin-bottom:18px; }
.page-head h1{ font-size:var(--text-h2); font-weight:600; margin-bottom:14px; }
.page-head p{ color:var(--text-muted); max-width:60ch; }
@media (max-width:720px){ .page-head{ padding:112px 0 0; } }

.legal{ padding:48px 0 96px; }
.legal__body{ max-width:760px; }
.legal__body h2{
  font-family:var(--font-display); font-size:1.45rem; font-weight:600;
  margin:48px 0 14px; color:var(--text); letter-spacing:-0.01em;
}
.legal__body h2:first-child{ margin-top:0; }
.legal__body p{ color:var(--text-muted); line-height:1.75; margin-bottom:14px; }
.legal__body ul{ color:var(--text-muted); line-height:1.75; margin:0 0 14px; padding-left:22px; }
.legal__body li{ margin-bottom:6px; }
.legal__body a{ color:var(--accent); text-decoration:underline; }
.legal__body strong{ color:var(--text); font-weight:600; }
.legal__back{ margin-top:48px; }

.leistung{
  display:grid; grid-template-columns:1fr; gap:14px 28px;
  padding:44px 0; border-top:1px solid var(--border); align-items:start;
}
.leistung:first-of-type{ border-top:0; }
@media (min-width:780px){ .leistung{ grid-template-columns: 92px 1fr; gap:0 40px; } }
.leistung__num{ font-family:var(--font-display); font-size:2rem; font-weight:700; color:var(--accent); line-height:1; letter-spacing:-0.03em; }
.leistung__title{ font-family:var(--font-display); font-size:1.55rem; font-weight:600; margin-bottom:12px; letter-spacing:-0.01em; }
.leistung__desc{ color:var(--text-muted); font-size:1.1875rem; line-height:1.8; max-width:64ch; }
