/* =========================================
   PRAXIS JANSSEN — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- Variables ---- */
:root {
  --primary: #2DBD9B;
  --primary-dark: #1A9B7D;
  --primary-light: #E8F8F4;
  --accent: #FF6B6B;
  --accent-dark: #E55252;
  --emergency: #E53E3E;
  --warm-white: #FFF9F4;
  --card-bg: #FFFFFF;
  --text-dark: #1C2B3A;
  --text-mid: #4A5568;
  --text-light: #8A9BB0;
  --border: #E2EBF0;
  --shadow-sm: 0 2px 8px rgba(28,43,58,0.06);
  --shadow-md: 0 8px 32px rgba(28,43,58,0.10);
  --shadow-lg: 0 20px 60px rgba(28,43,58,0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --nav-height: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); line-height: 1.8; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-subtext {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* Fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.19s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }
.fade-up:nth-child(5) { transition-delay: 0.33s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(45,189,155,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,189,155,0.45);
}
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,107,0.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: white; }
.btn-white {
  background: white;
  color: var(--primary-dark);
  font-weight: 800;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-emergency {
  background: var(--emergency);
  color: white;
  box-shadow: 0 4px 20px rgba(229,62,62,0.4);
  font-size: 1.1rem;
  padding: 18px 36px;
}
.btn-emergency:hover {
  background: #C53030;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229,62,62,0.5);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0 24px;
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: rgba(255,249,244,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo .logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: white;
  transition: color 0.3s ease;
}
.nav-logo .logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav.scrolled .nav-logo .logo-main { color: var(--text-dark); }
.nav.scrolled .nav-logo .logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav.scrolled .nav-links a:hover { color: var(--text-dark); background: var(--primary-light); }

.nav-cta {
  padding: 10px 22px !important;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(45,189,155,0.4) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: white !important;
  transform: translateY(-1px);
  background: var(--primary) !important;
}
.nav.scrolled .nav-cta { color: white !important; }

.nav-cta-2 {
  padding: 10px 22px !important;
  background: rgba(255,255,255,0.14) !important;
  color: white !important;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px !important;
  margin-left: 8px;
}
.nav-cta-2:hover {
  background: rgba(255,255,255,0.26) !important;
  border-color: white;
  color: white !important;
}
.nav.scrolled .nav-cta-2 {
  background: var(--primary-light) !important;
  color: var(--primary-dark) !important;
  border-color: var(--primary);
}
.nav.scrolled .nav-cta-2:hover {
  background: var(--primary) !important;
  color: white !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--text-dark); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: white;
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-mobile a:hover { background: var(--primary-light); color: var(--primary); }
.nav-mobile .btn-primary {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A3028 0%, #0F4C3A 30%, #1A7A5E 60%, #2DBD9B 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,30,40,0.58) 0%,
    rgba(10,30,40,0.32) 55%,
    rgba(10,30,40,0.62) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 24px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.92);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.hero-content h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-content .hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  font-weight: 400;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: hero-bounce 2.4s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ---- Info Bar ---- */
.info-bar {
  background: white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.25s ease;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: var(--primary-light); }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
}
.info-icon.emergency { background: #FFF0F0; color: var(--emergency); }
.info-icon svg { width: 20px; height: 20px; }
.info-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.info-text span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}
.info-text a { color: var(--primary); transition: color 0.2s; }
.info-text a:hover { color: var(--primary-dark); }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--primary-light); }
.section-sm { padding: 64px 0; }

/* ---- Welcome ---- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.welcome-image { position: relative; }
.welcome-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.inhaberin-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #C8F0E6 0%, #A8E8D8 50%, #88D4C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  padding: 24px;
}
.img-placeholder svg { width: 56px; height: 56px; opacity: 0.45; }
.welcome-image-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}
.badge-icon {
  width: 46px; height: 46px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.badge-text strong { display: block; font-size: 1.6rem; font-family: 'DM Serif Display', serif; color: var(--text-dark); line-height: 1; }
.badge-text span { font-size: 0.78rem; color: var(--text-light); font-weight: 700; letter-spacing: 0.05em; }
.welcome-text blockquote {
  border-left: 4px solid var(--primary);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 1.05rem;
}
.welcome-text .section-subtext { margin-bottom: 28px; }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.06);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 18px; }
.service-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  background: #FFF3E0;
  color: #D97706;
  letter-spacing: 0.05em;
}

/* ---- CTA Block ---- */
.cta-section { padding: 48px 0; }
.cta-block {
  background: linear-gradient(135deg, #0F4C3A 0%, var(--primary-dark) 50%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -40%; right: 20%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-text h2 { color: white; margin-bottom: 14px; }
.cta-text p { color: rgba(255,255,255,0.78); max-width: 480px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* ---- Team Cards ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.team-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #E0F5EE, #C0EAE0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}
.team-card-img svg { width: 52px; height: 52px; opacity: 0.35; }
.team-card-img svg.team-avatar,
.img-placeholder svg.team-avatar {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.team-card-img.has-avatar,
.img-placeholder.has-avatar {
  padding: 0;
  gap: 0;
  overflow: hidden;
}
.team-card-body { padding: 26px; }
.team-card-body h3 { font-size: 1.18rem; margin-bottom: 4px; }
.team-role {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.team-card-body p { font-size: 0.9rem; }

/* ---- News Cards ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
}
.news-card h4 { font-family: 'DM Serif Display', serif; font-size: 1.12rem; line-height: 1.3; }
.news-card p { font-size: 0.9rem; }

/* ---- Emergency Block ---- */
.emergency-section { padding: 48px 0; }
.emergency-block {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 40%, #DC2626 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: white;
  position: relative;
  overflow: hidden;
}
.emergency-block::before {
  content: '!';
  position: absolute;
  right: 3%; top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  font-family: 'DM Serif Display', serif;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.emergency-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.emergency-main h2 { color: white; font-size: 2.1rem; margin-bottom: 16px; }
.emergency-main p { color: rgba(255,255,255,0.82); margin-bottom: 10px; font-size: 1rem; }
.emergency-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.em-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.em-card strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
}
.em-card .phone {
  font-size: 1.9rem;
  font-family: 'DM Serif Display', serif;
  color: white;
  display: block;
  line-height: 1.1;
  margin-bottom: 5px;
}
.em-card .phone-link {
  font-size: 1.9rem;
  font-family: 'DM Serif Display', serif;
  color: white;
  display: block;
  line-height: 1.1;
  margin-bottom: 5px;
  text-decoration: none;
}
.em-card .phone-link:hover { color: rgba(255,255,255,0.82); }
.em-card span { font-size: 0.82rem; color: rgba(255,255,255,0.72); }

/* ---- Instagram ---- */
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.instagram-handle { display: flex; align-items: center; gap: 14px; }
.ig-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
}
.instagram-handle strong { display: block; font-size: 1rem; color: var(--text-dark); font-weight: 800; }
.instagram-handle span { font-size: 0.84rem; color: var(--text-light); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ig-item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #D4F0E8, #B8E8D8);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ig-item:nth-child(even) { background: linear-gradient(145deg, #C8EAE0, #A8D8C8); }
.ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,189,155,0);
  transition: background 0.25s ease;
}
.ig-item:hover::after { background: rgba(45,189,155,0.45); }
.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.ig-item:hover .ig-overlay { opacity: 1; }

/* ---- Footer ---- */
.footer {
  background: #0A1622;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: white;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.88rem; margin-bottom: 24px; line-height: 1.75; color: rgba(255,255,255,0.58); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.52);
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-col h4 {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--primary); }
.footer-address { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.55); }
.footer-address strong { color: rgba(255,255,255,0.85); display: block; margin-bottom: 4px; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #15806A 0%, var(--primary-dark) 45%, var(--primary) 100%);
  padding: 140px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -25%; right: -8%;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -35%; left: 3%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.035);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 560px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  font-weight: 600;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.35); }

/* ---- Öffnungszeiten ---- */
.hours-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours-table {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.hours-table h3 { margin-bottom: 28px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.hours-time {
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
}
.hours-closed { color: var(--text-light); font-style: italic; font-size: 0.9rem; }
.closure-card {
  background: #FFFBEB;
  border: 1.5px solid #FCD34D;
  border-radius: var(--radius-md);
  padding: 36px;
}
.closure-card h3 { margin-bottom: 8px; }
.closure-card > p { font-size: 0.9rem; margin-bottom: 24px; }
.closure-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(252,211,77,0.45);
  font-size: 0.92rem;
}
.closure-item:last-child { border-bottom: none; }
.closure-item svg { color: #D97706; flex-shrink: 0; width: 18px; height: 18px; }
.closure-item strong { color: var(--text-dark); font-weight: 700; }

/* ---- Leistungen ---- */
.leistung-detail {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  transition: var(--transition);
}
.leistung-detail:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.leistung-icon-lg {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.leistung-icon-lg svg { width: 38px; height: 38px; }
.leistung-text h3 { margin-bottom: 12px; }
.leistung-text p { margin-bottom: 16px; }
.leistung-text ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leistung-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.leistung-text ul li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.leistungen-list { display: flex; flex-direction: column; gap: 20px; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary-light); }
.contact-card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 { margin-bottom: 5px; font-size: 0.95rem; font-family: 'Nunito', sans-serif; font-weight: 800; }
.contact-card p { font-size: 0.88rem; line-height: 1.7; }
.contact-card a { color: var(--primary); font-weight: 700; }
.contact-form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 32px; font-size: 0.95rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45,189,155,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label { text-transform: none; font-weight: 600; font-size: 0.88rem; letter-spacing: 0; }
.form-check label a { color: var(--primary); }

/* ---- Map ---- */
.map-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(145deg, #D4F0E8, #B8E4D4);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px dashed rgba(45,189,155,0.4);
  opacity: 0.85;
  text-align: center;
  padding: 24px;
}
.map-placeholder svg { width: 40px; height: 40px; opacity: 0.5; }

/* ---- Kindergesundheit ---- */
.health-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.health-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.health-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.health-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.health-icon svg { width: 26px; height: 26px; }
.health-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.health-card p { font-size: 0.9rem; }

/* ---- Termin ---- */
.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}
.termin-info { display: flex; flex-direction: column; gap: 20px; }
.termin-embed-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  text-align: center;
}
.termin-embed-card .btn { font-size: 1.15rem; padding: 18px 40px; margin-top: 24px; }
.termin-note { font-size: 0.85rem; color: var(--text-light); margin-top: 16px; }

/* ---- Fragebogen ---- */
.fragebogen-list { display: flex; flex-direction: column; gap: 14px; }
.fragebogen-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition);
}
.fragebogen-item:hover { border-color: var(--primary); transform: translateX(4px); }
.fragebogen-info h4 { margin-bottom: 4px; font-size: 1rem; font-family: 'Nunito', sans-serif; font-weight: 800; }
.fragebogen-info p { font-size: 0.85rem; }
.fragebogen-actions { flex-shrink: 0; }

/* ---- Notfall Page ---- */
.notfall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.notfall-card {
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.notfall-card.primary { background: linear-gradient(135deg, #991B1B, #DC2626); color: white; }
.notfall-card.secondary { background: white; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.notfall-card h3 { color: inherit; font-size: 1.4rem; }
.notfall-card p { color: rgba(255,255,255,0.8); }
.notfall-card.secondary p { color: var(--text-mid); }
.notfall-card .big-phone {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: white;
  line-height: 1;
  text-decoration: none;
  display: block;
}
.notfall-card .big-phone:hover { color: rgba(255,255,255,0.85); }
.notfall-info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.notfall-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 600;
}
.notfall-info-list li svg { color: var(--primary); flex-shrink: 0; }

/* ---- Legal Pages ---- */
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: 1.55rem;
  margin: 48px 0 14px;
  color: var(--text-dark);
  font-family: 'DM Serif Display', serif;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-mid); font-size: 0.95rem; }
.legal-content a { color: var(--primary); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .welcome-image { max-width: 620px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .info-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); }
  .info-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .info-item:last-child { border-bottom: none; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .health-topics-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .termin-grid { grid-template-columns: 1fr; }
  .notfall-grid { grid-template-columns: 1fr; }
  .emergency-grid { grid-template-columns: 1fr; gap: 40px; }
  .leistung-detail { grid-template-columns: 1fr; }
  .leistung-icon-lg { margin-bottom: 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .info-bar-inner { grid-template-columns: 1fr; }
  .info-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .emergency-contacts { grid-template-columns: 1fr; }
  .cta-block { flex-direction: column; text-align: center; padding: 48px 28px; }
  .cta-text p { margin: 0 auto; }
  .emergency-block { padding: 48px 28px; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .health-topics-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .fragebogen-item { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 64px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .container { padding: 0 18px; }
  .inhaberin-grid { grid-template-columns: 1fr; gap: 32px; }
  .welcome-image-badge { right: 12px; bottom: -24px; padding: 16px 20px; min-width: 0; }
}
