/* ===== DESIGN TOKENS ===== */
:root {
  --rot-dunkel:  #7A2828;
  --rot-mittel:  #9B3535;
  --rot-hell:    #C24040;
  --rot-accent:  #D44545;
  --grau-linie:  #C8B4B4;
  --weiss:       #FFFFFF;
  --off-white:   #FAF7F7;
  --text-dunkel: #1A0A0A;
  --text-mittel: #4A2020;
  --text-hell:   #7A5050;
  --border:      rgba(122,40,40,0.15);
  --schatten:    rgba(122,40,40,0.08);
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --max-w:       1120px;
  --section-pad: 96px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text-dunkel);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; line-height: 1.2; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
blockquote {
  border-left: 3px solid var(--rot-mittel);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

nav.main-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--rot-dunkel);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo-fallback {
  font-family: var(--ff-body); font-size: 15px; font-weight: 600;
  color: var(--weiss); letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px; font-weight: 400;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--weiss); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--weiss) !important;
  color: var(--rot-dunkel) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--grau-linie) !important; }
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: white; padding: 4px;
}

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rot-mittel);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rot-mittel); display: block; }
.section-eyebrow.light { color: var(--grau-linie); }
.section-eyebrow.light::before { background: var(--grau-linie); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400; line-height: 1.2;
  color: var(--text-dunkel); margin-bottom: 48px;
  max-width: 520px;
}

.btn-primary {
  background: var(--weiss); color: var(--rot-dunkel);
  font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--grau-linie); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--weiss);
  font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 1px solid rgba(200,180,180,0.4); cursor: pointer;
  transition: background 0.18s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); }

.hero {
  background: var(--rot-dunkel);
  overflow: hidden; position: relative;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg-svg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-svg svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grau-linie); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--grau-linie); }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.15;
  color: var(--weiss); margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--grau-linie); }
.hero-lead {
  color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.75;
  max-width: 520px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,180,180,0.2);
  border-radius: var(--radius-lg); padding: 32px 28px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grau-linie); margin-bottom: 24px;
}
.hero-card-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-card-items li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.5;
}
.hero-card-items li::before {
  content: ''; flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--grau-linie);
}
.hero-card-divider { height: 1px; background: rgba(200,180,180,0.15); margin: 24px 0; }
.hero-card-zert { display: flex; align-items: center; gap: 10px; color: var(--grau-linie); font-size: 12px; line-height: 1.4; }

.standorte-band { background: var(--weiss); border-bottom: 1px solid var(--border); }
.standorte-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.standort-item { padding: 28px 0; display: flex; align-items: center; gap: 20px; }
.standort-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--off-white); border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rot-mittel);
}
.standort-name { font-size: 13px; font-weight: 600; color: var(--text-dunkel); margin-bottom: 2px; }
.standort-addr { font-size: 13px; color: var(--text-hell); line-height: 1.5; }
.standort-tel { font-size: 12.5px; color: var(--rot-mittel); font-weight: 500; margin-top: 4px; }

.leistungen { padding: var(--section-pad); background: var(--off-white); }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.leistung-card {
  background: var(--weiss); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.leistung-card:hover {
  border-color: rgba(155,53,53,0.35);
  box-shadow: 0 4px 20px var(--schatten);
  transform: translateY(-2px);
}
.leistung-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(155,53,53,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--rot-mittel);
}
.leistung-name { font-size: 15px; font-weight: 600; color: var(--text-dunkel); margin-bottom: 6px; }
.leistung-desc { font-size: 13.5px; color: var(--text-hell); line-height: 1.6; }

.ueber-stripe {
  background: var(--rot-dunkel);
  padding: var(--section-pad);
  position: relative; overflow: hidden;
}
.ueber-stripe-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.ueber-stripe h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 400; line-height: 1.25;
  color: var(--weiss); margin-bottom: 20px;
}
.ueber-stripe p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,180,180,0.18);
  border-radius: var(--radius-md); padding: 24px 20px; text-align: center;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 42px; font-weight: 400; color: var(--weiss); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--grau-linie); letter-spacing: 0.06em; line-height: 1.4; }
.stat-box-wide { grid-column: 1 / -1; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,180,180,0.18);
  border-radius: var(--radius-sm); padding: 12px 18px; margin-top: 20px;
  font-size: 12px; color: var(--grau-linie); letter-spacing: 0.04em;
}

.praxis-foto {
  position: relative; overflow: hidden; height: 420px;
  background: var(--rot-dunkel);
}
.praxis-foto img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; opacity: 0.82; display: block;
}
.praxis-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(122,40,40,0.72) 0%, rgba(122,40,40,0.15) 60%, transparent 100%);
}
.praxis-foto-text {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
}
.praxis-foto-quote { max-width: 460px; }
.praxis-foto-quote blockquote {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px); font-weight: 400; color: white;
  line-height: 1.35; border: none; background: none;
  padding: 0; margin: 0; font-style: normal;
}
.praxis-foto-caption { font-size: 13px; color: var(--grau-linie); margin-top: 16px; letter-spacing: 0.04em; }

.neuigkeiten { padding: var(--section-pad); background: var(--weiss); }
.neuigkeiten-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px;
}
.neuigkeiten-header .section-title { margin-bottom: 0; }
.link-alle {
  font-size: 13.5px; font-weight: 500; color: var(--rot-mittel);
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: border-color 0.18s; white-space: nowrap;
}
.link-alle:hover { border-color: var(--rot-mittel); }
.artikel-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.artikel-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
  display: flex; flex-direction: column;
}
.artikel-card:hover { box-shadow: 0 6px 24px var(--schatten); transform: translateY(-2px); }
.artikel-img { height: 180px; overflow: hidden; background: var(--rot-dunkel); }
.artikel-img img { width: 100%; height: 100%; object-fit: cover; }
.artikel-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--rot-dunkel) 0%, var(--rot-mittel) 100%);
  display: flex; align-items: center; justify-content: center;
}
.artikel-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.artikel-datum { font-size: 11.5px; color: var(--text-hell); letter-spacing: 0.04em; margin-bottom: 10px; }
.artikel-titel { font-size: 15.5px; font-weight: 600; line-height: 1.45; color: var(--text-dunkel); margin-bottom: 10px; }
.artikel-teaser { font-size: 13.5px; color: var(--text-hell); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.artikel-mehr { font-size: 13px; font-weight: 500; color: var(--rot-mittel); display: flex; align-items: center; gap: 5px; }

.social-section { padding: 72px 24px; background: var(--off-white); }
.social-inner { max-width: var(--max-w); margin: 0 auto; }
.social-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.social-tabs {
  display: flex; gap: 4px;
  background: var(--weiss); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 3px;
}
.social-tab {
  font-size: 13px; font-weight: 500; padding: 7px 16px;
  border-radius: 4px; border: none; cursor: pointer;
  background: transparent; color: var(--text-hell);
  transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; gap: 6px; font-family: var(--ff-body);
}
.social-tab.active { background: var(--rot-dunkel); color: var(--weiss); }
.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.social-post { background: var(--weiss); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.social-post-img { height: 200px; overflow: hidden; background: var(--rot-dunkel); }
.social-post-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #6B2222 0%, #9B3535 60%, #C24040 100%);
  display: flex; align-items: center; justify-content: center; opacity: 0.85;
}
.social-post-body { padding: 16px 14px; }
.social-post-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.social-post-date { font-size: 11px; color: var(--text-hell); }
.social-post-text { font-size: 13px; line-height: 1.6; color: var(--text-mittel); }
.social-consent-box {
  background: var(--weiss); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 40px 32px; text-align: center; max-width: 520px; margin: 0 auto;
}
.social-consent-box h3 { font-size: 17px; margin-bottom: 10px; }
.social-consent-box p { font-size: 13.5px; color: var(--text-hell); line-height: 1.7; margin-bottom: 20px; }

.faq { padding: var(--section-pad); background: var(--weiss); }
.faq-grid { max-width: 720px; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 14.5px; font-weight: 500; color: var(--text-dunkel);
  font-family: var(--ff-body); transition: background 0.15s;
}
.faq-question:hover { background: var(--off-white); }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s; color: var(--rot-mittel); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 22px 18px; }
.faq-answer p { font-size: 14px; color: var(--text-hell); line-height: 1.75; margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.kontakt { padding: var(--section-pad); background: var(--off-white); }
.kontakt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.kontakt-cards { display: flex; flex-direction: column; gap: 12px; }
.kontakt-card {
  background: var(--weiss); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.kontakt-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(155,53,53,0.07); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--rot-mittel);
}
.kontakt-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-hell); margin-bottom: 3px; }
.kontakt-card-val { font-size: 14.5px; font-weight: 500; color: var(--text-dunkel); }
.telefon-cta {
  margin-top: 20px; background: var(--rot-dunkel);
  border-radius: var(--radius-md); padding: 28px 24px;
}
.telefon-cta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grau-linie); margin-bottom: 10px; }
.telefon-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.telefon-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white;
}
.telefon-nummer { font-size: 24px; font-weight: 600; color: white; font-family: var(--ff-display); }
.telefon-sub { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.telefon-hinweis {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(200,180,180,0.15);
  font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.7;
}
.telefon-hinweis strong { color: var(--grau-linie); display: block; margin-bottom: 4px; }
.telefon-hinweis b { color: white; }
.telefon-online { font-size: 11.5px; color: rgba(255,255,255,0.35); margin-top: 14px; line-height: 1.6; }
.map-wrapper {
  background: #e8dede; height: 200px; border-radius: var(--radius-md);
  margin-top: 20px; overflow: hidden; border: 1px solid var(--border); position: relative;
}
.map-overlay {
  position: absolute; inset: 0;
  background: rgba(122,40,40,0.88);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; color: white; text-align: center; padding: 20px;
}
.map-overlay p { font-size: 12.5px; opacity: 0.85; max-width: 260px; line-height: 1.5; }
.map-overlay button {
  background: var(--weiss); color: var(--rot-dunkel);
  border: none; border-radius: var(--radius-sm); padding: 8px 18px;
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--ff-body);
}
.map-iframe { width: 100%; height: 200px; border: 0; display: block; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.team-card { background: var(--weiss); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.team-card-img { height: 220px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card-body { padding: 18px 16px; }
.team-card-name { font-size: 15px; font-weight: 600; color: var(--text-dunkel); margin-bottom: 4px; }
.team-card-role { font-size: 12.5px; color: var(--rot-mittel); font-weight: 500; margin-bottom: 8px; }
.team-card-info { font-size: 12.5px; color: var(--text-hell); line-height: 1.6; }
.team-info-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 22px;
}
.team-info-box p { font-size: 13.5px; color: var(--text-hell); line-height: 1.75; }

.artikel-detail { padding: var(--section-pad); background: var(--off-white); }
.artikel-detail-inner { max-width: 760px; margin: 0 auto; }
.artikel-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.artikel-meta-datum { font-size: 13px; color: var(--text-hell); }
.artikel-meta-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rot-mittel); background: rgba(155,53,53,0.07);
  padding: 4px 10px; border-radius: 20px;
}
.artikel-hero-img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 40px;
}
.artikel-content h2 { font-size: 24px; margin: 32px 0 12px; color: var(--text-dunkel); }
.artikel-content h3 { font-size: 18px; margin: 24px 0 10px; color: var(--text-dunkel); }
.artikel-content h4 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; }
.artikel-content p { font-size: 16px; line-height: 1.8; color: var(--text-mittel); margin-bottom: 18px; }
.artikel-content ul, .artikel-content ol { margin: 16px 0 16px 24px; }
.artikel-content li { font-size: 15.5px; line-height: 1.75; color: var(--text-mittel); margin-bottom: 6px; }
.artikel-content hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.artikel-content strong { color: var(--text-dunkel); }
.artikel-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--rot-mittel);
  margin-bottom: 32px; transition: gap 0.15s;
}
.artikel-back:hover { gap: 12px; }
.artikel-disclaimer {
  margin-top: 32px; padding: 16px 20px;
  background: var(--weiss); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12.5px; color: var(--text-hell); line-height: 1.6; font-style: italic;
}

.page-content { padding: var(--section-pad); background: var(--off-white); }
.page-content-inner { max-width: 760px; margin: 0 auto; }
.page-content h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 32px; color: var(--text-dunkel); }
.page-content h2 { font-size: 22px; margin: 32px 0 12px; color: var(--text-dunkel); }
.page-content h3 { font-size: 17px; font-weight: 600; margin: 20px 0 8px; }
.page-content p { font-size: 15.5px; line-height: 1.8; color: var(--text-mittel); margin-bottom: 16px; }
.page-content ul { margin: 12px 0 16px 24px; }
.page-content li { font-size: 15px; line-height: 1.7; color: var(--text-mittel); margin-bottom: 4px; }
.page-content a { color: var(--rot-mittel); }
.page-content a:hover { text-decoration: underline; }

#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--rot-dunkel);
  border-top: 1px solid rgba(200,180,180,0.2);
  padding: 20px 24px; display: none;
}
.cookie-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 13.5px; color: rgba(255,255,255,0.82); line-height: 1.6; min-width: 280px; }
.cookie-text a { color: var(--grau-linie); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  font-size: 13px; font-weight: 600; padding: 9px 18px;
  border-radius: var(--radius-sm); border: 1px solid rgba(200,180,180,0.3);
  cursor: pointer; font-family: var(--ff-body);
}
.cookie-btn-accept { background: var(--weiss); color: var(--rot-dunkel); border-color: var(--weiss); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.8); }
.cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.6); font-weight: 400; }

footer {
  background: var(--rot-dunkel);
  border-top: 1px solid rgba(200,180,180,0.12);
  padding: 48px 24px 24px;
  color: rgba(255,255,255,0.7);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { height: 48px; width: auto; opacity: 0.9; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grau-linie); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--weiss); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(200,180,180,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; color: rgba(255,255,255,0.7);
}
.social-icon:hover { background: rgba(255,255,255,0.15); }
.footer-divider { height: 1px; background: rgba(200,180,180,0.12); margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; transition: color 0.15s; }
.footer-legal a:hover { color: var(--weiss); }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .ueber-stripe-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .kontakt-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  :root { --section-pad: 64px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-content { padding: 56px 20px; }
  .neuigkeiten-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; gap: 16px; }
  .praxis-foto { height: 280px; }
  .praxis-foto-text { padding: 0 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--rot-dunkel); padding: 24px;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav-close { background: none; border: none; color: white; cursor: pointer; }
.mobile-nav a {
  color: rgba(255,255,255,0.85); font-size: 20px; font-family: var(--ff-display);
  padding: 14px 0; border-bottom: 1px solid rgba(200,180,180,0.1);
  display: block;
}
.mobile-nav a:last-child { border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
