/* ============================================================
   PRAXIS DR. BREDEMEIER — HAUPTSTYLESHEET
   Design: Warm & Einladend | Version 1.0
   ============================================================ */


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:        #8B5E6A;
  --primary-light:  #C4919E;
  --primary-dark:   #6B3F4A;
  --secondary:      #6B8F71;
  --secondary-light:#9CB8A0;
  --bg:             #FBF7F4;
  --bg-soft:        #F5EDE8;
  --bg-medium:      #EDE0D8;
  --text:           #2A1A1A;
  --text-muted:     #5A3535;
  --white:          #FFFFFF;
  --border:         #E8D5CC;
  --shadow:         rgba(139, 94, 106, 0.12);
  --radius:         12px;
  --tr:             0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* Basis: alle rem-Werte skalieren relativ hierzu (+2 px ggü. Browser-Standard) */
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary-dark);
}

a { color: var(--primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo { display: flex; flex-direction: column; }
.nav-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}
.nav-logo .sub {
  font-size: 0.67rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--tr);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width var(--tr);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 0.8rem !important;
  transition: background var(--tr) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }

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

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #F5EDE8 0%, #EDE0D8 55%, #E4D0C8 100%);
  padding: 110px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(196,145,158,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -70px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(107,143,113,0.14) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--primary-dark);
  margin-bottom: 14px;
  font-weight: 300;
}
.hero h1 em { font-style: italic; }
.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────── */
/* Zwei Stile: btn-primary (gefüllt) und btn-secondary (Outline).
   Auf dunklen Hintergründen (.hours-banner) passen sich beide automatisch an. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
}

/* Primär – rose gefüllt, weiße Schrift */
.btn.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 94, 106, 0.32);
}

/* Sekundär – transparenter Rand, rose Schrift */
.btn.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Automatische Anpassung auf dunklen Bannern */
.hours-banner .btn.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.hours-banner .btn.btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}
.hours-banner .btn.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.hours-banner .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── SECTION BASE ───────────────────────────────────────── */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 0 auto 16px;
}

/* ── BILDER ─────────────────────────────────────────────── */
.img-cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.img-portrait {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 50%;
}
.leistung-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-detail-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 50%;
}
.staff-card img {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover; object-position: top center;
  margin: 0 auto 12px;
  border: 3px solid var(--border);
  display: block;
}

/* ── INTRO / PHILOSOPHIE ────────────────────────────────── */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.intro-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.intro-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.intro-highlight-item .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.intro-highlight-item .text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.intro-highlight-item .text p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

.intro-visual {
  background: linear-gradient(145deg, var(--bg-soft), var(--bg-medium));
  border-radius: 28px;
  height: 440px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.intro-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,145,158,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.intro-visual::after {
  content: '';
  position: absolute; bottom: -40px; left: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(107,143,113,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.intro-visual-inner {
  text-align: center;
  padding: 48px;
  position: relative;
  z-index: 1;
}
.intro-visual-icon { font-size: 5rem; display: block; margin-bottom: 20px; opacity: 0.55; }
.intro-visual h3 { font-size: 1.7rem; color: var(--primary-dark); margin-bottom: 12px; }
.intro-visual p { font-size: 0.9rem; color: var(--text-muted); font-style: italic; line-height: 1.7; }

/* ── LEISTUNGEN OVERVIEW ────────────────────────────────── */
.services-overview { background: var(--bg); }
.services-overview .container {
  max-width: none;
  padding: 0 10vw;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--tr);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--tr);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
}
.service-icon { font-size: 2.3rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.service-list li {
  font-size: 0.83rem; color: var(--text-muted);
  padding-left: 14px; position: relative;
}
.service-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
  transition: gap var(--tr);
}
.service-link:hover { gap: 10px; color: var(--primary-dark); }

/* ── TEAM PREVIEW ───────────────────────────────────────── */
.team-preview { background: var(--bg-soft); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--tr);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
}
.team-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-medium));
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  border: 4px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); font-weight: 700;
  margin-bottom: 12px; display: block;
}
.team-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ── ÖFFNUNGSZEITEN BANNER ──────────────────────────────── */
.hours-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 72px 24px;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px; align-items: center;
  max-width: 860px; margin: 0 auto;
}
.hours-info h2 { color: var(--white); font-size: 2rem; margin-bottom: 28px; }
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list .day { opacity: 0.75; font-weight: 300; }
.hours-list .time { font-weight: 700; }
.hours-divider { background: rgba(255,255,255,0.18); }
.hours-contact { text-align: center; }
.hours-contact h3 {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  margin-bottom: 12px;
}
.hours-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; color: var(--white);
  margin-bottom: 20px; font-weight: 300;
}
.hours-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 28px;
}

/* ── PAGE HERO (Unterseiten) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #F5EDE8 0%, #EDE0D8 100%);
  padding: 72px 24px;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--primary);
  font-weight: 700; margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--primary-dark); margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem; color: var(--text-muted);
  max-width: 540px; margin: 0 auto;
}

/* ── LEISTUNGEN DETAIL ──────────────────────────────────── */
.leistung-section { background: var(--white); }
.leistung-section:nth-child(even) { background: var(--bg); }

.leistung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.leistung-grid.reverse { direction: rtl; }
.leistung-grid.reverse > * { direction: ltr; }

.leistung-visual {
  background: linear-gradient(145deg, var(--bg-soft), var(--bg-medium));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.leistung-visual .big-icon { font-size: 5rem; display: block; margin-bottom: 20px; opacity: 0.6; }
.leistung-visual h3 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 12px; }
.leistung-visual p { font-size: 0.88rem; color: var(--text-muted); font-style: italic; }

.leistung-content h2 { font-size: 2rem; margin-bottom: 16px; }
.leistung-content .lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }

.leistung-items {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}
.leistung-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.leistung-item .item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  border: 1px solid var(--border);
}
.leistung-item .item-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  color: var(--text); margin-bottom: 3px;
}
.leistung-item .item-text p {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0;
}

/* ── TEAM DETAIL ────────────────────────────────────────── */
.team-detail { background: var(--white); }
.team-detail-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px; align-items: start;
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.team-detail-card:last-child { margin-bottom: 0; }
.team-detail-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-medium));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border: 4px solid var(--border);
  margin: 0 auto;
}
.team-detail-info h3 { font-size: 1.8rem; margin-bottom: 6px; }
.team-detail-info .role {
  font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary);
  font-weight: 700; margin-bottom: 20px; display: block;
}
.team-detail-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.qualifications {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.qual-tag {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--primary-dark);
}

/* Staff-Container: 80vw Breite (10vw Abstand links+rechts) */
.staff-container {
  max-width: none;
  padding: 0 10vw;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.staff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  transition: all var(--tr);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow); }
.staff-icon { font-size: 2.2rem; margin-bottom: 14px; }
.staff-card h4 { font-size: 1.1rem; margin-bottom: 5px; }
.staff-card p { font-size: 0.84rem; color: var(--text-muted); }

/* ── KONTAKT ────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px; align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 24px; }

.kontakt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.kontakt-card .k-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.kontakt-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.kontakt-card p, .kontakt-card a {
  font-size: 0.92rem; color: var(--text); line-height: 1.6;
}
.kontakt-card a:hover { color: var(--primary); }

.hours-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hours-table-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 20px 24px;
  color: var(--white);
}
.hours-table-header h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hours-table-body { padding: 8px 0; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 700; color: var(--text); }
.hours-row .closed { color: var(--text-muted); font-style: italic; font-weight: 300; }

.map-container {
  background: linear-gradient(145deg, var(--bg-soft), var(--bg-medium));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder {
  height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  font-size: 2.5rem;
}
.map-placeholder p { font-size: 0.9rem; color: var(--text-muted); }

.map-info {
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.map-info-item { display: flex; gap: 10px; font-size: 0.84rem; align-items: flex-start; }
.map-info-item .mi-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.map-info-item p { color: var(--text-muted); line-height: 1.5; }

.video-section {
  background: linear-gradient(135deg, var(--bg-soft), var(--white));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
.video-section h3 { font-size: 1.8rem; margin-bottom: 12px; }
.video-section p { font-size: 0.92rem; color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; }

/* ── INFO BOX ────────────────────────────────────────────── */
.info-box {
  background: var(--bg-soft);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 20px;
}
.info-box p { font-size: 0.87rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin: 0; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 8, 8, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.lb-overlay.lb-active { opacity: 1; }

.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  width: 100%;
}
.lb-img {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  display: block;
  outline: none;
  transition: transform 0.3s ease;
}
.lb-overlay.lb-active .lb-img { transform: scale(1); }

.lb-caption {
  margin-top: 28px;
  text-align: center;
}
.lb-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.lb-role {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.lb-close {
  position: fixed;
  top: 22px;
  right: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.22); }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lb-nav:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

@media (max-width: 640px) {
  .lb-img { width: 280px; height: 280px; }
  .lb-overlay { padding: 40px 20px; }
  .lb-nav { display: none; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #2A1F1F;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--white); margin-bottom: 4px;
}
.footer-brand .sub {
  font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.84rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 260px;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 0.84rem; line-height: 1.9; color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.76rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .intro-grid,
  .leistung-grid,
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .leistung-grid.reverse { direction: ltr; }
  .intro-visual { height: 280px; }
  .team-detail-card { grid-template-columns: 1fr; text-align: center; }
  .team-detail-avatar { margin-bottom: 20px; }
  .qualifications { justify-content: center; }
  .hours-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hours-divider { display: none; }
  .hours-list li { justify-content: center; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Leistungen: 2 Spalten auf Tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview .container { padding: 0 6vw; }
  /* Staff: 3 Spalten auf Tablet */
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .staff-container { padding: 0 6vw; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding: 72px 24px 64px; }
  .page-hero { padding: 52px 24px; }
  .nav-links {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 24px; gap: 20px; align-items: flex-start;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow); z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* Leistungen: 1 Spalte auf Mobil */
  .services-grid { grid-template-columns: 1fr; }
  .services-overview .container { padding: 0 5vw; }
  /* Staff: 2 Spalten auf Mobil */
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-container { padding: 0 5vw; }
  .staff-card img { width: 100px; height: 100px; }
  /* Team-Avatare auf Mobil etwas kleiner */
  .team-avatar { width: 120px; height: 120px; border-radius: 50%; }
  .lb-img { width: 260px; height: 260px; border-radius: 50%; }
}
