/* Inter, selbst gehostet (kein externer Aufruf an Google-Server) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, 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 {
  /* Variante Hellblau: Palette auf das Sky-Blau des Logos abgestimmt */
  --primary: #1276bb;
  --primary-dark: #0e6099;
  --primary-light: #ddf0fb;
  --accent: #a23a9e;
  --accent-dark: #86217f;
  --sky: #4ebeff;
  --text: #16283a;
  --text-mid: #4a5b6b;
  --text-light: #8aa0b2;
  --border: #e2edf3;
  --bg: #fff;
  --bg-soft: #f1f8fc;
  --radius: 14px;
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: clip; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── ABWESENHEITS-TICKER (statisch, beige, zentriert) ── */
.ticker {
  background: #f6ecd9;
  color: #6d552f;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 11px 20px;
  border-bottom: 1px solid #e8d6b4;
  line-height: 1.5;
}
.ticker-track { display: block; }
.ticker-item { display: inline-block; padding: 0 14px; }
.ticker-item + .ticker-item { border-left: 1px solid #d9c194; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img-wrap {
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img-wrap img {
  height: 88px;
  width: auto;
  display: block;
}
/* Schriftzug neben dem Logo ausgeblendet – das Logo enthält den Praxisnamen bereits */
.logo-text { display: none; }

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 56px;
  width: auto;
  background: var(--bg);
  border-radius: 6px;
  padding: 3px 6px;
}

/* Praxis stats */
.praxis-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 16px;
}
.logo-name { font-size: 0.95rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.logo-sub { font-size: 0.72rem; color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-link {
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--bg-soft); color: var(--text); }
.nav-caret { font-size: 0.85rem; opacity: 0.9; margin-left: 4px; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.15s;
  z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-radius: 6px;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--primary); }

.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-nav:hover { background: var(--primary-dark); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── HERO ── */
.hero {
  padding: 64px 0 60px;
  background: linear-gradient(105deg, #1173b8 0%, #2a9ee0 46%, #4ebeff 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78,190,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 366px;
  gap: 48px;
  align-items: start;
}
.hero-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfe4ff;
  background: rgba(78,190,255,0.16);
  border: 1px solid rgba(78,190,255,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 18px;
  color: #fff;
}
.hero h1 em { font-style: normal; color: #df74d0; }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-doctor {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  max-width: 420px;
}
.hero-doctor-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}
.hero-doctor-quote { font-size: 0.85rem; font-style: italic; color: #fff; line-height: 1.4; margin-bottom: 4px; }
.hero-doctor-name { font-size: 0.72rem; color: rgba(255,255,255,0.65); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 6px 18px rgba(162,58,158,0.35);
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Hero: Teamfoto + Sprechzeiten in der rechten Spalte */
.hero-side { display: grid; gap: 16px; align-content: start; }
.hero-team-wrap { position: relative; }
.hero-team-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 22px;
  border: 5px solid #fff;
  box-shadow: 0 22px 52px rgba(0,0,0,0.42), 0 6px 34px rgba(223,116,208,0.4);
  display: block;
  position: relative;
  z-index: 2;
}
.hero-team-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  background: #fff;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* Hours card */
.hours-card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.22);
  position: relative;
  z-index: 1;
}
.hours-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.hour-row:last-of-type { border-bottom: none; }
.hour-row .day { color: var(--text-mid); }
.hour-row .time { font-weight: 600; color: var(--text); }
.hour-row .closed { color: var(--text-light); }
.hours-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
}
.hours-contact a {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-contact a:hover { color: var(--primary); }

/* ── SECTIONS ── */
.section { padding: 72px 0; }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.75;
}

/* ── SERVICES ── */
.services { background: var(--bg-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-item {
  background: var(--primary);
  border: 1px solid var(--primary-dark);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 4px 16px rgba(18,118,187,0.18);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.service-item:hover {
  box-shadow: 0 12px 30px rgba(18,118,187,0.32);
  transform: translateY(-3px);
  background: var(--primary-dark);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  background: #eceeef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.service-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.service-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}
.service-item a {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

/* ── ABOUT ── */
.about { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.about-features { margin-top: 28px; display: grid; gap: 12px; }
.about-feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.about-feature h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.about-feature p { font-size: 0.83rem; color: var(--text-mid); }

.stat-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  background: var(--bg-soft);
}
.stat-box.dark { background: var(--primary-dark); border-color: var(--primary-dark); }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box.dark .stat-num { color: var(--sky); }
.stat-label { font-size: 0.8rem; color: var(--text-light); }
.stat-box.dark .stat-label { color: rgba(255,255,255,0.65); }

.address-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: var(--bg);
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.address-box strong { color: var(--text); display: block; margin-bottom: 4px; }
.address-box a { color: var(--primary); font-weight: 600; font-size: 0.82rem; }

/* ── GALERIE: Einblicke in die Praxis ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(18,118,187,0.16);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(14,44,66,0.82) 0%, transparent 100%);
}

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-list { display: grid; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-soft);
  padding: 4px 22px;
  transition: border-color 0.15s, background 0.15s;
}
.faq-item[open] { background: var(--bg); border-color: var(--primary-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.15s;
}
.faq-item[open] summary::after { content: '–'; background: var(--accent-dark); }
.faq-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; padding: 0 0 20px; }
.faq-item p a { font-weight: 600; }

/* ── TEAM ── */
.team { background: var(--bg); border-bottom: 1px solid var(--border); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  background: var(--bg);
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 6px 20px rgba(18,118,187,0.12); }
.team-avatar {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(18,118,187,0.3);
}
.team-photo {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
  object-position: top;
  margin: 0 0 20px;
  border: none;
  box-shadow: 0 4px 16px rgba(18,118,187,0.15);
}
.team-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.team-role {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.team-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }

/* ── APPOINTMENT ── */
.appointment {
  background: linear-gradient(105deg, #1173b8 0%, #2a9ee0 50%, #4ebeff 100%);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.appointment::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78,190,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.appt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.appointment h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.appointment p { opacity: 0.8; font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.btn-appt {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(162,58,158,0.35);
}
.btn-appt:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.appt-options { display: grid; gap: 10px; }
.appt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: #fff;
  transition: background 0.15s;
}
.appt-row:hover { background: rgba(255,255,255,0.14); color: #fff; }
.appt-row-icon { font-size: 1.1rem; width: 36px; text-align: center; flex-shrink: 0; }
.appt-row .lbl { font-size: 0.73rem; opacity: 0.65; margin-bottom: 2px; }
.appt-row .val { font-size: 0.88rem; font-weight: 600; }

/* ── REVIEWS ── */
.reviews { background: var(--bg-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stars { color: #f6ad55; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-foot { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-by { font-size: 0.8rem; font-weight: 700; }
.review-source { font-size: 0.75rem; color: var(--text-light); }

.reviews-cta {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  flex-wrap: wrap;
}
.reviews-cta a { font-weight: 600; }
.reviews-disclaimer { margin-top: 14px; font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* ── IMPRESSUM ── */
.impressum { background: var(--bg); border-top: 1px solid var(--border); }
.impressum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.impr-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}
.impr-box.wide { grid-column: 1 / -1; }
.impr-box h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.impr-box p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; }
.impr-box p + p { margin-top: 10px; }
.impr-box a { color: var(--primary); }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }
.footer-desc { font-size: 0.85rem; margin-top: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 8px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: #fff; }
.fhour { display: flex; justify-content: space-between; font-size: 0.83rem; gap: 8px; margin-bottom: 6px; }
.fhour .fd { color: rgba(255,255,255,0.4); }
.fhour .fv { color: rgba(255,255,255,0.8); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

.footer-credit { text-align: center; padding: 10px 0 24px; font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-credit a { color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-credit a:hover { color: rgba(255,255,255,0.8); }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.msc-call, .msc-book {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
}
.msc-call { background: var(--bg-soft); color: var(--primary-dark); }
.msc-book { background: var(--accent); color: #fff; }

/* ── ACCESSIBILITY: FOCUS ── */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 70px 20px 32px;
  transition: right 0.3s;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; display: none; }
.mobile-overlay.open { display: block; }
.mobile-close { position: absolute; top: 16px; right: 16px; background: var(--bg-soft); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: grid; place-items: center; }
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-logo img {
  height: 50px;
  width: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 5px;
}
.mobile-logo span { font-size: 0.9rem; font-weight: 700; }
.mobile-nav ul { display: grid; gap: 2px; }
.mobile-nav a { display: block; padding: 10px 12px; font-size: 0.95rem; color: var(--text-mid); border-radius: 7px; }
.mobile-nav a:hover { background: var(--bg-soft); color: var(--primary); }
.mobile-sub { padding-left: 12px; }
.mobile-sub a { font-size: 0.87rem; }
.mobile-cta { display: block; margin-top: 20px; background: var(--primary); color: #fff !important; padding: 12px; border-radius: 12px; font-weight: 600; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 88px; }
  .logo-img-wrap img { height: 66px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 56px 0 48px; }
  .about-img { height: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .appt-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .impressum-grid { grid-template-columns: 1fr; }
  .impr-box.wide { grid-column: auto; }
}
@media (max-width: 580px) {
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .hero { padding: 44px 0 40px; }
  .hero-desc { font-size: 1rem; margin-bottom: 24px; }
  .hours-card { padding: 22px; }
  .appointment { padding: 48px 0; }

  /* Leistungen: kompakte Zeilen statt großer Kästen */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .service-icon {
    grid-row: 1 / span 3;
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    margin-bottom: 0;
    border-radius: 10px;
  }
  .service-item h3 { font-size: 0.9rem; margin-bottom: 3px; }
  .service-item p { font-size: 0.8rem; line-height: 1.5; }
  .service-item a { margin-top: 6px; font-size: 0.78rem; }

  /* Team-Fotos: Hochformat beibehalten, damit Gesichter komplett sichtbar sind */
  .team-photo { height: auto; aspect-ratio: 4 / 5; }
  .team-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  /* Statistik-Boxen: zu dritt zu schmal fürs Handy -> 2 oben, 1 breit darunter */
  .praxis-stats { grid-template-columns: 1fr 1fr; }
  .praxis-stats .stat-box:last-child { grid-column: 1 / -1; }
  .stat-box { padding: 18px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
  .scroll-top { bottom: 78px; }
}
