/*!
 * Primofit Physiotherapie — Stylesheet
 * © 2026 Primofit Physiotherapie. Alle Rechte vorbehalten.
 *
 * Designprinzipien:
 * - Sans-Serif, geradlinig, freundlich
 * - Soft-Card-Stil mit großzügigen Radien & weichen Schatten
 * - Helles Blau im Hintergrund (Logo-Akzent)
 * - Pill-Buttons mit Punkt-Indikator
 * - Alle Ressourcen lokal — keine externen Schriftarten oder CDNs
 */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --c-red: #d12c2b;
  --c-red-dark: #b02322;
  --c-blue: #2eaae1;
  --c-blue-dark: #1a8bbd;
  --c-blue-deep: #1a5a82;

  /* Text */
  --c-ink: #1a2733;
  --c-text: #475569;
  --c-text-soft: #64748b;
  --c-muted: #94a3b8;

  /* Surfaces */
  --c-bg: #f4f9fc;
  --c-surface: #ffffff;
  --c-surface-2: #f8fafc;
  --c-surface-3: #eef5fa;

  /* Lines & Shadows */
  --c-line: #e2e8f0;
  --c-line-soft: #edf2f7;

  --shadow-sm: 0 1px 3px rgba(15, 30, 50, 0.04), 0 1px 2px rgba(15, 30, 50, 0.03);
  --shadow-md: 0 4px 12px rgba(15, 30, 50, 0.06), 0 2px 4px rgba(15, 30, 50, 0.04);
  --shadow-lg: 0 16px 40px -16px rgba(15, 30, 50, 0.18), 0 4px 12px rgba(15, 30, 50, 0.06);
  --shadow-xl: 0 32px 64px -24px rgba(15, 30, 50, 0.20), 0 8px 16px rgba(15, 30, 50, 0.06);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Sans-Serif system stack — modern, geradlinig (à la SF Pro / Inter) */
  --f-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Arial", "Noto Sans", sans-serif;

  /* Maße */
  --container: 1280px;
  --container-narrow: 1080px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .25, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-blue-dark);
  text-decoration: none;
  transition: color 200ms var(--ease);
}

ul, ol, dl, dt, dd { margin: 0; padding: 0; }
ul { list-style: none; }

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

::selection {
  background: var(--c-blue);
  color: white;
}

.skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus {
  position: fixed;
  left: 1rem; top: 1rem;
  background: var(--c-ink);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  z-index: 1000;
}

/* ---------- Typografie ---------- */
.h-section {
  font-family: var(--f-sans);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-ink);
  margin: 0 0 1.5rem;
}

.text-blue { color: var(--c-blue-dark); }
.text-red { color: var(--c-red); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--c-text);
  line-height: 1.6;
  max-width: 38ch;
  margin: 0 0 2rem;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.9rem;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-dark);
  font-weight: 700;
  margin: 0 0 1.5rem;
  box-shadow: 0 2px 6px rgba(15, 30, 50, 0.04);
}

.badge-light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  animation: pulse 2.4s var(--ease) infinite;
}
.badge-light .badge-dot { background: white; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 250ms var(--ease);
  white-space: nowrap;
  font-family: inherit;
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.825rem;
}

.btn-dot {
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  margin-right: 0.1rem;
  opacity: 0.95;
}

.btn-primary {
  background: var(--c-red);
  color: white;
  box-shadow: 0 4px 12px rgba(209, 44, 43, 0.20);
}
.btn-primary:hover {
  background: var(--c-red-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(209, 44, 43, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover {
  background: var(--c-surface);
  color: var(--c-blue-dark);
  border-color: var(--c-blue);
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--c-surface-3);
  color: var(--c-red);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: white;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.4);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 249, 252, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 300ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244, 249, 252, 0.95);
  border-bottom-color: var(--c-line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--pad);
  max-width: 1600px;
  margin: 0 auto;
}

.brand { line-height: 0; display: inline-block; }
.brand-logo {
  height: 56px;
  width: auto;
  transition: height 300ms var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 44px; }

.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 2.25rem;
}
.nav-desktop a {
  font-size: 0.92rem;
  color: var(--c-ink);
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 200ms var(--ease);
}
.nav-desktop a:hover { color: var(--c-blue-dark); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-blue);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 250ms var(--ease);
}
.nav-desktop a:hover::after { width: 24px; }

.nav-cta-btn { gap: 0.45rem; }
.nav-cta-btn .btn-dot { width: 6px; height: 6px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform 300ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem var(--pad) 2rem;
  border-top: 1px solid var(--c-line);
  background: rgba(244, 249, 252, 0.98);
}
.nav-mobile a {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--c-ink);
  font-weight: 500;
  border-bottom: 1px solid var(--c-line-soft);
}
.nav-mobile .btn {
  margin-top: 1.25rem;
  border-bottom: 0;
  color: white;
  align-self: flex-start;
}
.nav-mobile.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) var(--pad) clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface-3) 100%);
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #2eaae1 0%, transparent 70%);
  top: -120px; left: -120px;
}
.blob-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(209, 44, 43, 0.25) 0%, transparent 70%);
  bottom: -80px; right: 15%;
}
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(46, 170, 225, 0.5) 0%, transparent 70%);
  top: 30%; right: -120px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-text { padding: 1rem 0; }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--c-ink);
  margin: 0 0 1.5rem;
}

.hero-accent {
  color: var(--c-red);
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.18em;
  background: rgba(209, 44, 43, 0.18);
  border-radius: 999px;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-text);
  max-width: 38ch;
  line-height: 1.55;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-story {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
  max-width: 52ch;
}
.hero-story p {
  font-size: 0.98rem;
  color: var(--c-text-soft);
  line-height: 1.65;
  margin: 0 0 0.9rem;
}
.hero-story p:last-child { margin-bottom: 0; }
.hero-story-sign {
  font-weight: 600;
  color: var(--c-ink);
  margin-top: 1.1rem !important;
}

/* Hero visual - photo card + spine */
.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  padding: 16px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  transform: rotate(-1deg);
  transition: transform 500ms var(--ease);
}
.hero-card:hover { transform: rotate(0deg); }

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: calc(var(--r-xl) - 8px);
  object-fit: cover;
  object-position: center;
}

.photo-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-ink);
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.photo-tag-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-ink);
}

.hero-spine {
  position: absolute;
  top: 5%;
  left: -8%;
  width: auto;
  height: 90%;
  max-width: 22%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(15, 30, 50, 0.18));
  animation: spine-in 900ms var(--ease-out) both;
  animation-delay: 200ms;
}

@keyframes spine-in {
  from { opacity: 0; transform: translateY(-16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: clamp(3rem, 5vw, 4.5rem) var(--pad);
  background: var(--c-bg);
}

.features-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature {
  background: white;
  padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line-soft);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 0.4rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   PRAXIS
   ============================================================ */
.praxis {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--c-bg);
}

.praxis-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.praxis-photo-card {
  position: relative;
  background: white;
  padding: 14px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
  transition: transform 500ms var(--ease);
}
.praxis-photo-card:hover { transform: rotate(0deg); }

.praxis-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: calc(var(--r-xl) - 6px);
  object-fit: cover;
  object-position: center;
}

.praxis-checks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 0;
}
.praxis-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--c-text);
}
.praxis-checks .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(46, 170, 225, 0.12);
  color: var(--c-blue-dark);
  padding: 6px;
}
.praxis-checks strong {
  color: var(--c-ink);
  font-weight: 600;
}

/* ============================================================
   LEISTUNGEN (Akkordeon)
   ============================================================ */
.leistungen {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface-3) 100%);
}

.leistungen-head {
  max-width: var(--container-narrow);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.leistungen-head .badge { margin: 0 auto 1.5rem; }

.leistungen-intro {
  font-size: 1.05rem;
  color: var(--c-text);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.6;
}

.accordion {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.acc-item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}

.acc-item[open] {
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 170, 225, 0.3);
}

.acc-summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 200ms var(--ease);
}
.acc-summary::-webkit-details-marker { display: none; }
.acc-summary:hover { background: var(--c-surface-2); }
.acc-summary:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

.acc-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-muted);
  font-variant-numeric: tabular-nums;
  min-width: 1.5rem;
}

.acc-title {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}

.acc-pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.acc-pill-blue {
  background: rgba(46, 170, 225, 0.12);
  color: var(--c-blue-dark);
}
.acc-pill-warm {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}
.acc-pill-red {
  background: rgba(209, 44, 43, 0.10);
  color: var(--c-red);
}

.acc-icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface-3);
  border-radius: 50%;
  color: var(--c-blue-dark);
  transition: transform 350ms var(--ease), background 250ms var(--ease);
}
.acc-item[open] .acc-icon {
  background: var(--c-blue);
  color: white;
  transform: rotate(180deg);
}

.acc-content {
  padding: 0 1.5rem 1.5rem 4rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-text);
}
.acc-content p { margin: 0 0 0.85rem; }
.acc-content p:last-child { margin: 0; }

.acc-good {
  background: var(--c-surface-3);
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.93rem;
  border-left: 3px solid var(--c-blue);
}
.acc-good strong { color: var(--c-ink); }

.leistungen-foot {
  max-width: var(--container-narrow);
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.leistungen-foot p {
  font-size: 1.05rem;
  color: var(--c-text);
  margin: 0 0 1rem;
}

/* ============================================================
   TEAM / GALERIE
   ============================================================ */
.team {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--c-bg);
}

.team-head {
  max-width: var(--container);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.team-head .badge { margin: 0 auto 1.5rem; }

.gallery {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
}

.g-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.g-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.g-card-1 { grid-column: 1; grid-row: 1 / span 2; }
.g-card-2 { grid-column: 2; grid-row: 1; }
.g-card-3 { grid-column: 3; grid-row: 1; }
.g-card-4 { grid-column: 2 / span 2; grid-row: 2; }

.gallery-row {
  max-width: var(--container);
  margin: 0.75rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.gallery-row .g-card { height: 220px; }
.g-card.is-placeholder { cursor: default; }
.g-card.is-placeholder:hover { transform: none; box-shadow: var(--shadow-sm); }
.g-card.is-placeholder:hover .g-photo { transform: none; }

.g-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease);
}
.g-card:hover .g-photo { transform: scale(1.04); }

.g-card figcaption {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink);
  z-index: 2;
}
.g-card figcaption span {
  color: var(--c-red);
  margin-right: 0.3rem;
  font-weight: 700;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--c-bg);
}

.kontakt-card {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--c-blue-dark) 0%, var(--c-blue-deep) 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.kontakt-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(46, 170, 225, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}
.kontakt-card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.kontakt-text { position: relative; z-index: 2; color: white; }
.kontakt-text .h-section { color: white; margin-bottom: 1rem; }

.kontakt-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 38ch;
}

.kontakt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.kontakt-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  color: white;
}

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.info-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.95rem;
}
.info-hours dt { color: rgba(255, 255, 255, 0.75); }
.info-hours dd {
  text-align: right;
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.info-addr {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
}

.info-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.15rem;
  transition: border-color 200ms;
}
.info-link:hover { border-color: white; color: white; }

.info-park {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.info-park::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- Karriere (im Kontakt-Block) ---------- */
.kontakt-karriere {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.karriere-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
}

.karriere-h {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: white;
  margin: 0 0 0.85rem;
}

.karriere-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 0 1.1rem;
}

.karriere-link {
  display: inline-block;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.15rem;
  transition: border-color 200ms;
}
.karriere-link:hover { border-color: white; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 5vw, 4rem) var(--pad) 1.5rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand { max-width: 300px; }

.footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.92);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-h {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 200ms;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop { gap: 1.5rem; }
}

@media (max-width: 860px) {
  .nav-desktop, .nav-cta-btn:not(.nav-cta-mobile) { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 1rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }

  .praxis-grid { grid-template-columns: 1fr; gap: 3rem; }
  .praxis-photo-card { max-width: 480px; margin: 0 auto; }

  .acc-summary {
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
  }
  .acc-pill {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
  .acc-content { padding: 0 1.5rem 1.5rem 1.5rem; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .g-card-1 { grid-column: 1 / span 2; grid-row: 1; }
  .g-card-2 { grid-column: 1; grid-row: 2; }
  .g-card-3 { grid-column: 2; grid-row: 2; }
  .g-card-4 { grid-column: 1 / span 2; grid-row: 3; }

  .gallery-row { grid-template-columns: 1fr 1fr; }
  .gallery-row .g-card { height: 200px; }

  .kontakt-card {
    grid-template-columns: 1fr;
  }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }

  .acc-summary {
    padding: 1.1rem 1.1rem;
    gap: 0.7rem;
  }
  .acc-num { display: none; }
  .acc-icon { width: 32px; height: 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-spine { opacity: 1; transform: none; }
}
