/*
Theme Name: B2B Physiotherapie
Theme URI: https://b2b-physiotherapie.de
Author: B2B Physiotherapie
Author URI: https://b2b-physiotherapie.de
Description: Custom Theme für B2B Physiotherapie – Back to Basics. Premium-Editorial-Design für die familiengeführte Physiotherapie-Praxis in Mistelbach bei Bayreuth.
Version: 22.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: b2b-physio
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #2C4030;
  --primary-light: #3D5A47;
  --primary-pale: #E8F0EB;
  --primary-muted: #B5D1BF;
  --green-dark: #23301F;
  --ph: #E2E2DD;
  --ph-text: #8A8A85;
  /* v6: Gold-Akzent entfernt — Akzentfarbe ist jetzt Waldgrün */
  --accent: #2C4030;
  --accent-light: #E8F0EB;
  --black: #0A0A0A;
  --dark: #1A1A1A;
  --dark-mid: #2A2A2A;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --border: #E5E5E0;
  --radius: 12px;
  --sand: #E4DBC2;
  --brown: #1E1815;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Lora', serif; font-weight: 500; color: var(--black); }
h1 { font-size: clamp(36px, 5vw, 50px); line-height: 1.15; }
h2 { font-size: clamp(28px, 4vw, 38px); line-height: 1.2; }
h3 { font-size: 18px; font-weight: 600; font-family: 'Outfit', sans-serif; }
h1 em, h2 em { color: var(--primary); font-style: italic; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45,90,61,0.25);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: white;
}

/* ===== TOPBAR (v6 Editorial) ===== */
.topbar {
  background: var(--brown);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 80px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.topbar-left { color: #C7BCA4; }
.topbar-left b { color: var(--sand); font-weight: 600; }
.topbar-right { color: #B3A88F; }
.topbar-text { color: #FFFFFF; }

/* ===== NAVIGATION (v6 Editorial: hell) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 28px rgba(30,24,21,0.05);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-icon {
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-main {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
}
.nav-logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-links li a {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 14px;
  transition: all 0.2s;
}
.nav-links li a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 30px !important;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--primary-light) !important; color: white !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  overflow: hidden;
  background: var(--white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-content h1 { margin-bottom: 24px; }

.hero-content > p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image { position: relative; overflow: hidden; }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--black);
}
.hero-stat h3 {
  font-size: 32px;
  color: var(--black);
  font-weight: 700;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}
.hero-stat p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== FAMILY SECTION ===== */
.family-section {
  background: var(--black);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.family-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
}

.overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.family-content h2 { margin-bottom: 24px; }
.family-content h2 em { color: var(--primary-muted); }

.family-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 16px;
}

.family-values { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.family-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.family-value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 80px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: stretch;
}
.service-card:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-card-icon {
  width: 100px;
  min-height: 100%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.service-card-body { padding: 28px 24px; flex: 1; }
.service-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link::after { content: '\2192'; transition: transform 0.2s; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* Additional Services Bar */
.additional-services {
  max-width: 1000px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.additional-services .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.service-tag {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.quote-section blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto 24px;
  font-weight: 400;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
.quote-section cite {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

/* ===== TEAM SECTION ===== */
.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card a { display: block; }

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ccc, #888);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  overflow: hidden;
  filter: none;
}
.team-card:hover .team-avatar {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  filter: none;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}
.team-card .team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.team-card .team-family {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 3px;
  font-style: italic;
}
.team-card .team-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
  transition: color 0.2s;
}
.team-card:hover .team-link { color: var(--primary); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.review-card:hover { border-color: var(--black); }

.review-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 12px; }
.review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}
.review-author-name { font-weight: 600; font-size: 14px; color: var(--black); }
.review-author-role { font-size: 12px; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; background: var(--bg); }

.cta-box {
  background: var(--black);
  border-radius: 20px;
  padding: 72px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.1;
  top: -150px;
  right: -100px;
}
.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 14px;
  position: relative;
  color: white;
}
.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  position: relative;
}
.cta-box .btn-primary {
  position: relative;
  font-size: 17px;
  padding: 18px 36px;
}

/* ===== FOOTER (v6 Editorial: hell) ===== */
.site-footer {
  background: var(--white);
  color: var(--text-light);
  padding: 80px 80px 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto 64px;
}

.footer-logo-name {
  display: block;
  font-family: 'Lora', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--black);
}
.footer-logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.65; color: var(--text-light); }

.site-footer h4 {
  color: var(--black);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  color: var(--text-light);
  font-size: 14px;
}
.site-footer ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9A9A95;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-bottom a { color: var(--text-light); }
.footer-bottom a:hover { color: var(--primary); }
.footer-family {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}
.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
}
.footer-cookie-btn:hover { color: var(--primary); }

/* ===== PROFILE PAGE ===== */
.profile-hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.profile-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter 0.5s;
}
.profile-photo:hover img { filter: none; }

.profile-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-info h1 { margin-bottom: 6px; }
.profile-subtitle {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
}
.profile-bio {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Profile Details Grid */
.profile-details {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.profile-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--black);
  color: white;
  border-radius: 6px;
  font-size: 13px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--primary-pale);
}
.timeline-content h4 {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 2px;
  font-family: 'Outfit', sans-serif;
}
.timeline-period {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Qualification Tags */
.qual-list { display: flex; flex-wrap: wrap; gap: 10px; }
.qual-tag {
  background: var(--primary-pale);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.qual-tag:hover { border-color: var(--primary); }

.qual-tag-dark {
  background: var(--black);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Specialty Grid */
.specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.specialty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
}
.specialty-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Profile CTA */
.profile-cta {
  max-width: 1100px;
  margin: 0 auto 40px;
  background: var(--black);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.profile-cta h3 {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
}
.profile-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 20px 80px;
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }

/* ===== BLOG / POSTS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--black);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 24px; }
.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.blog-card-body h3 a { color: var(--black); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image img { border-radius: var(--radius); }
.entry-content { max-width: 750px; margin: 0 auto; padding: 60px 24px; }
.entry-content h2 { margin: 40px 0 16px; }
.entry-content p { font-size: 17px; line-height: 1.8; color: var(--text); }

/* ===== TOP BAR (B2B Performance) ===== */
/* Top-bar removed — B2B Performance is now a nav item */

/* v6: Dancing-Script-Logo und B2B-Performance-Navlink entfernt */

/* ===== IMAGE PLACEHOLDERS ===== */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #d4d4d4, #a0a0a0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #555;
  font-size: 15px;
}
.image-placeholder-dark {
  background: linear-gradient(135deg, #333, #555);
  color: rgba(255,255,255,0.5);
}
.placeholder-icon {
  opacity: 0.5;
}
.image-placeholder-dark .placeholder-icon { opacity: 0.4; }
.placeholder-hint {
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
}

/* ===== SERVICE CARDS V2 (Improved Layout) ===== */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card-v2 {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s;
  border-radius: 0 0 4px 0;
}
.service-card-v2:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-card-v2:hover::before {
  height: 100%;
}

.service-card-v2-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card-v2:hover .service-card-v2-icon {
  background: var(--primary);
}
.service-card-v2:hover .service-card-v2-icon svg {
  stroke: white;
}

.service-card-v2 h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.service-card-v2 p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero,
  .family-section,
  .profile-hero { grid-template-columns: 1fr; }

  .services-grid,
  .services-grid-v2,
  .reviews-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-details { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .additional-services { flex-direction: column; gap: 16px; }

  .site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; min-width: 48px; min-height: 48px; padding: 8px; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px;
    gap: 4px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  }
  .nav-links.active .nav-cta { text-align: center; margin-top: 8px; }

  .section { padding: 60px 24px; }
  .hero-content { padding: 48px 24px; }
  .family-content { padding: 48px 24px; }
  .site-footer { padding: 40px 24px 20px; }
  .breadcrumb { padding: 16px 24px; }
  .quote-section { padding: 48px 24px; }

  .profile-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 24px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; text-align: center; }

  .nav-logo-script { font-size: 16px; }
  .nav-logo-main { font-size: 16px; }
  .nav-logo-icon { width: 52px; height: 52px; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

/* ===== KONTAKT SECTION ===== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.kontakt-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.kontakt-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.kontakt-item p { font-size: 15px; color: var(--text); margin: 0; }
.kontakt-item a { color: var(--primary); }
.kontakt-item a:hover { color: var(--primary-light); }

.kontakt-cta .cta-box {
  text-align: center;
}

/* ===== LEGAL PAGES (Impressum, Datenschutz) ===== */
.legal-page {
  background: var(--white);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.legal-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}
.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== COOKIE CONSENT BANNER ===== */
#b2b-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#b2b-cookie-banner.cookie-banner-visible {
  transform: translateY(0);
}
#b2b-cookie-banner.cookie-banner-hidden {
  transform: translateY(100%);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
}
.cookie-privacy-link {
  font-size: 13px;
  color: var(--primary) !important;
  text-decoration: underline !important;
}

/* Cookie categories */
.cookie-categories {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-category:hover { background: var(--primary-pale); }
.cookie-category-disabled { opacity: 0.7; cursor: default; }
.cookie-category-disabled:hover { background: var(--bg); }
.cookie-category input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.cookie-cat-info strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 2px;
}
.cookie-cat-info small {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Cookie buttons — EQUAL PROMINENCE for Accept/Reject per DSGVO ruling */
.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

/* CRITICAL: Reject and Accept buttons have SAME visual weight (DSGVO 2025 ruling) */
.cookie-btn-reject {
  background: var(--black);
  color: var(--white);
}
.cookie-btn.cookie-btn-reject:hover {
  background: var(--dark-mid);
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--primary-light);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.cookie-btn-settings:hover {
  border-color: var(--text);
}

.cookie-btn-save {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn-save:hover {
  background: var(--primary-light);
}

@media (max-width: 600px) {
  #b2b-cookie-banner { padding: 16px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* ============================================================
   ===== V6 PREMIUM EDITORIAL – STARTSEITE =====
   ============================================================ */

.ed-micro {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Buttons --- */
.ed-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.ed-btn:hover { background: var(--primary-light); color: #fff; }
.ed-btn-lg { padding: 16px 40px; font-size: 16px; }

.ed-ghost {
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 6px;
}
.ed-ghost:hover { color: var(--primary); border-color: var(--primary); }

.ed-btn-tel {
  display: inline-block;
  border: 1.5px solid #3A3A3A;
  color: #fff;
  border-radius: 100px;
  padding: 16px 38px;
  font-weight: 500;
  font-size: 16px;
}
.ed-btn-tel:hover { border-color: #fff; color: #fff; }

/* --- Bild-Platzhalter (scharfe Kanten) --- */
.ed-img-ph {
  background: var(--ph);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: var(--ph-text);
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
}
.ed-img-ph-dark { background: #26312A; color: #7E8B82; }

/* --- Hero --- */
.ed-hero {
  display: flex;
  gap: 72px;
  align-items: center;
  padding: 72px 80px 88px;
  max-width: 1440px;
  margin: 0 auto;
}
.ed-hero h1 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.12;
  color: var(--black);
  max-width: 620px;
}
.ed-hero h1 em,
.ed-section h2 em { font-family: 'Lora', serif; font-style: italic; color: var(--primary); }

.ed-overline { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.ed-overline::before { content: ""; width: 48px; height: 1px; background: var(--black); }
.ed-overline span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--black);
  text-transform: uppercase;
}
.ed-hero-content > p {
  font-weight: 300;
  font-size: 19px;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 520px;
  margin: 28px 0;
}
.ed-hero-buttons { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.ed-hero-image { min-width: 42%; flex: 1; height: 560px; overflow: hidden; }
.ed-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: none; }

/* --- Trust-Bar --- */
.ed-trust { padding: 0 80px 84px; max-width: 1440px; margin: 0 auto; }
.ed-trust-row {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ed-trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.ed-tag {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
}

/* --- Sektionen --- */
.ed-section { padding: 110px 80px; }
.ed-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.ed-sec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.ed-sec-label-pale { color: var(--primary-muted); }
.ed-section h2 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--black);
  max-width: 560px;
}
.ed-sec-head > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  text-align: right;
  margin: 0;
}

/* --- Leistungen (nummerierte Liste) --- */
.ed-leistungen { background: var(--white); }
.ed-leistungen > .ed-service,
.ed-leistungen > .ed-tags { max-width: 1280px; margin-left: auto; margin-right: auto; }
.ed-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.ed-service:last-of-type { border-bottom: 1px solid var(--border); }
.ed-service:hover { background: var(--bg); }
.ed-service-l { display: flex; align-items: center; gap: 40px; }
.ed-service-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--primary);
}
.ed-service-l h3 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 29px);
  color: var(--black);
}
.ed-service-r { display: flex; align-items: center; gap: 48px; }
.ed-service-r p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 420px;
  margin: 0;
}
.ed-service-arrow { font-size: 24px; color: var(--black); }
.ed-tags { display: flex; align-items: center; gap: 12px; margin-top: 56px; flex-wrap: wrap; }
.ed-tags-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-light);
}

/* --- Familie (Dunkelgrünes Band) --- */
.ed-familie {
  background: var(--green-dark);
  display: flex;
  gap: 80px;
  align-items: center;
}
.ed-familie-image { min-width: 38%; flex: 1; height: 480px; overflow: hidden; }
.ed-familie-image img { width: 100%; height: 100%; object-fit: cover; display: block; } /* Familienfoto in Farbe (kein Graustufenfilter) */
.ed-familie h2 { color: #fff; }
.ed-familie h2 em { color: var(--primary-muted); }
.ed-familie p {
  font-weight: 300;
  font-size: 17px;
  color: #D8E2DB;
  line-height: 1.65;
  max-width: 540px;
  margin: 26px 0;
}
.ed-values { display: flex; gap: 28px; flex-wrap: wrap; }
.ed-values span {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ed-values span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-muted);
}

/* --- Team --- */
.ed-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.ed-team-card a { display: block; }
.ed-team-ph { height: 300px; margin-bottom: 16px; }
.ed-team-photo { height: 300px; margin-bottom: 16px; overflow: hidden; }
.ed-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter 0.4s;
}
.ed-team-card:hover .ed-team-photo img { filter: none; }
.ed-team-card h4 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--black);
}
.ed-team-role {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 6px;
}

/* --- Bewertung --- */
.ed-review { background: var(--white); text-align: center; padding: 44px 24px; }
.ed-stars { color: var(--primary); letter-spacing: 6px; font-size: 16px; margin-bottom: 20px; }
.ed-review blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: var(--black);
  max-width: 760px;
  margin: 0 auto 22px;
}
.ed-review-author b { display: block; font-size: 15px; color: var(--black); font-weight: 600; }
.ed-review-author span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}
.ed-gbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.ed-gbadge:hover { border-color: var(--primary); color: var(--primary); }
.ed-gbadge b { color: var(--primary); font-size: 16px; }

/* --- CTA-Band (schwarz) --- */
.ed-cta { background: var(--brown); text-align: center; }
.ed-cta h2 { color: #fff; margin: 0 auto; max-width: 760px; font-size: clamp(34px, 4vw, 50px); }
.ed-cta h2 em { color: var(--primary-muted); }
.ed-cta > p {
  font-weight: 300;
  font-size: 18px;
  color: #9A9A95;
  margin: 28px 0 36px;
}
.ed-cta-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ed-cta .ed-micro { color: #6B6B6B; }

/* --- Kontakt --- */
.ed-kontakt {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}
.ed-kontakt h2 { margin-bottom: 36px; }
.ed-k-item { margin-bottom: 28px; }
.ed-k-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}
.ed-k-item p { font-size: 17px; color: var(--black); margin: 0; }
.ed-k-item a { color: var(--black); }
.ed-k-item a:hover { color: var(--primary); }
.ed-map { min-width: 44%; flex: 1; height: 520px; overflow: hidden; }
.ed-map-ph small {
  letter-spacing: 0.5px;
  text-transform: none;
  font-size: 11px;
  line-height: 1.6;
  max-width: 320px;
}

/* --- Responsive (Editorial) --- */
@media (max-width: 1100px) {
  .ed-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .topbar { padding: 10px 24px; flex-direction: column; gap: 4px; text-align: center; font-size: 10px; letter-spacing: 0.5px; }
  .site-nav { padding: 16px 24px; }
  .ed-hero, .ed-familie, .ed-kontakt { flex-direction: column; }
  .ed-hero { padding: 48px 24px 64px; gap: 40px; }
  .ed-hero-image, .ed-familie-image, .ed-map { min-width: 100%; width: 100%; }
  .ed-hero-image { height: 400px; }
  .ed-trust { padding: 0 24px 64px; }
  .ed-section { padding: 64px 24px; }
  .ed-review { padding: 40px 24px; }
  .ed-sec-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .ed-sec-head > p { text-align: left; }
  .ed-service { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ed-service-l { gap: 20px; }
  .ed-service-arrow { display: none; }
  .ed-team-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ed-team-grid { grid-template-columns: 1fr; }
  .ed-hero-buttons { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ed-cta-row { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Barrierefreiheit --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ===== BEWERTUNGS-SLIDER (v10) ===== */
.ed-review { position: relative; }
.ed-review-slider { position: relative; max-width: 1000px; margin: 0 auto; }
.ed-review-viewport { overflow: hidden; }
.ed-review-track { display: flex; transition: transform 0.6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.ed-review-slide { flex: 0 0 100%; min-width: 100%; box-sizing: border-box; padding: 0 10px; min-height: 150px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.ed-review-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white); color: var(--primary);
  font-size: 26px; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.ed-review-arrow:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.ed-review-prev { left: -6px; }
.ed-review-next { right: -6px; }
.ed-review-dots { display: flex; gap: 0; justify-content: center; margin-top: 14px; }
.ed-review-dot { width: 12px; height: 12px; padding: 16px; box-sizing: content-box; border: none; border-radius: 50%; background: var(--border); background-clip: content-box; cursor: pointer; transition: all .2s; }
.ed-review-dot.is-active { background: var(--primary); background-clip: content-box; transform: scale(1.3); }
@media (max-width: 768px) { .ed-review-arrow { display: none; } }
/* ===== STICKY MOBILE-CTA (v12) ===== */
.m-cta { display: none; }
@media (max-width: 900px) {
  .m-cta { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; box-shadow: 0 -2px 14px rgba(0,0,0,0.14); }
  .m-cta a { padding: 16px 8px; text-align: center; font-weight: 700; font-size: 15px; text-decoration: none; }
  .m-cta-book { background: var(--primary); color: #fff; }
  .m-cta-call { background: var(--white); color: var(--primary); border-left: 1px solid var(--border); }
  body { padding-bottom: 58px; }
}
body:has(#b2b-cookie-banner.cookie-banner-visible) .m-cta { display: none; }
/* ===== SICHTBARE FOKUS-STATES (v12, WCAG 2.4.7) ===== */
a:focus-visible, button:focus-visible, .ed-btn:focus-visible, .nav-cta:focus-visible,
.ed-review-dot:focus-visible, .ed-review-arrow:focus-visible, input:focus-visible, .m-cta a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.ed-cta a:focus-visible, .ed-familie a:focus-visible, .m-cta-book:focus-visible { outline-color: #fff; }
/* ===== FAQ-AKKORDEON (v13) ===== */
.ed-faq-list { max-width: 880px; margin: 0 auto; }
.ed-faq-item { border-bottom: 1px solid var(--border); }
.ed-faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 26px 48px 26px 0;
  font-family: 'Lora', serif; font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; color: var(--black);
}
.ed-faq-item summary::-webkit-details-marker { display: none; }
.ed-faq-item summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 30px; font-weight: 300; line-height: 1; color: var(--primary);
}
.ed-faq-item[open] summary::after { content: '\2013'; }
.ed-faq-item summary:hover { color: var(--primary); }
.ed-faq-a { padding: 0 48px 30px 0; max-width: 800px; color: var(--text); font-size: 16px; line-height: 1.75; }
.ed-faq-a strong { color: var(--black); font-weight: 600; }
.ed-faq-item[open] .ed-faq-a { animation: edFaqIn .25s ease; }
@keyframes edFaqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (max-width: 768px) { .ed-faq-item summary { padding-right: 40px; } .ed-faq-a { padding-right: 0; } }
/* ===== NEUES LOGO (v14) ===== */
.nav-logo { gap: 14px; }
.nav-logo-signet { height: 84px; width: auto; display: block; }
.nav-logo-wortmarke { height: 84px; width: auto; display: block; }
.footer-wortmarke { height: 84px; width: auto; display: block; margin-bottom: 16px; }
@media (max-width: 900px) { .nav-logo-signet { height: 58px; } .nav-logo-wortmarke { display: none; } }
@media (max-width: 480px) { .nav-logo-signet { height: 52px; } }
/* ===== FIX: WordPress-Adminleiste vs. sticky Header (v16) ===== */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
/* Ende style.css */
