/* ============================================================
   PRIMEFIT — Design System
   Farben: Dunkelblau #00001A | Blau #01A1FF | Grün #7BE101
   ============================================================ */

:root {
  --bg:            #00001A;
  --surface:       #0f132b;
  --surface-soft:  #101836;
  --surface-card:  #0d1020;
  --text:          #f7f7ff;
  --muted:         #aab2c8;
  --primary:       #01A1FF;
  --primary-dark:  #0085d4;
  --accent:        #7BE101;
  --accent-dark:   #5d8b00;
  --shadow:        0 28px 80px rgba(0,0,0,0.35);
  --shadow-subtle: 0 2px 12px rgba(0,0,0,0.2);
  --shadow-lift:   0 20px 60px rgba(0,0,0,0.4);
  --overlay:       rgba(0,0,26,0.62);
  --radius-card:   18px;
  --radius-pill:   999px;
  --nav-h:         72px;
  --transition:    0.3s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a, button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ==============================================================
   NAVIGATION — modern, animiert, farbpassend
   ============================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  /* Transparent am Anfang, wird per JS gefüllt */
  background: transparent;
}

/* Header scrolled — Glassmorphism mit Primärfarbe */
.site-header.scrolled {
  background: rgba(0, 0, 26, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(1,161,255,0.15);
}

/* Animierter blauer Akzent-Strich unten */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.6s ease;
}
.site-header.scrolled::after { width: 100%; }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 1rem;
  justify-content: space-between;
}

/* ── Logo / Brand ─────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(1,161,255,0.12);
  padding: 4px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.brand:hover .brand-logo {
  transform: scale(1.06);
  box-shadow: 0 0 0 3px rgba(1,161,255,0.35);
}
.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  /* Glow-Effekt in Primärfarbe */
  text-shadow: 0 0 20px rgba(1,161,255,0.4);
}

/* ── Haupt-Navigation ─────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}

/* Underline-Effekt: wächst aus der Mitte */
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.8rem);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(.25,.46,.45,.94);
  transform-origin: center;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after,
.main-nav a.active::after { transform: translateX(-50%) scaleX(1); }
.main-nav a.active { color: #fff; }

/* ── Nav Actions ──────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ── CTA-Button: schräg wie Fitness First ─────── */
.button-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(123,225,1,0.3);
}
.button-cta:hover {
  background: #8ff510;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(123,225,1,0.45);
}
.button-cta:active { transform: translateY(0); }

/* ── Mobile Hamburger ─────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none;
  background: rgba(1,161,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:hover { background: rgba(1,161,255,0.22); }

/* ==============================================================
   HERO SECTION
   ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Hero-Hintergrundbild */
.hero-bg {
  position: absolute;
  inset: 0;
  background: #000 center/cover no-repeat;
  z-index: 0;
}
/* Platzhalter-Bild für Hero */
.hero-bg[data-image="startseite_hero"] {
  background: #000 center/cover no-repeat;
}

/* Wenn echtes Bild vorhanden */
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,26,0.85) 40%,
    rgba(1,161,255,0.18) 80%,
    rgba(123,225,1,0.08) 100%
  );
  z-index: 1;
}

/* Animierter Hintergrund-Gradient, wenn kein Bild */
.hero-bg:not(:has(img)) {
  background: linear-gradient(135deg, #00001A 0%, #01193a 40%, #001a0a 100%);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  from { background: linear-gradient(135deg, #00001A 0%, #011c40 50%, #001806 100%); }
  to   { background: linear-gradient(135deg, #000a26 0%, #0a2050 50%, #002210 100%); }
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(123,225,1,0.15);
  border: 1px solid rgba(123,225,1,0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.4rem;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-copy .lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Rechte Seite - Bild-Stack */
.hero-image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

/* ==============================================================
   GEMEINSAME BUTTON-STILE
   ============================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}
.button-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 12px 32px rgba(123,225,1,0.28);
}
.button-primary:hover {
  background: #8ff510;
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(123,225,1,0.4);
}
.button-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.button-ghost:hover {
  border-color: rgba(1,161,255,0.6);
  background: rgba(1,161,255,0.1);
  transform: translateY(-2px);
}
.button-secondary {
  background: rgba(1,161,255,0.15);
  color: var(--primary);
  border: 1px solid rgba(1,161,255,0.3);
}
.button-secondary:hover {
  background: rgba(1,161,255,0.25);
  transform: translateY(-2px);
}
.button-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.button-outline:hover {
  background: rgba(123,225,1,0.1);
  transform: translateY(-2px);
}
.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ==============================================================
   BILD-SYSTEM — Platzhalterkarten mit Dateiname
   ============================================================== */

/* Basis-Bildkarte */
.pf-img {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius-card);
}

/* Das eigentliche Bild-Element — wird durch CSS background gesetzt */
.pf-img__inner {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #000 center/cover no-repeat;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
}

/* Overlay mit Dateiname als Label */
.pf-img__label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pf-img:hover .pf-img__label { opacity: 0; }

/* Hover-Zoom */
.pf-img:hover .pf-img__inner {
  transform: scale(1.04);
}

/* Text-Overlay auf großen Karten */
.pf-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,26,0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}
.pf-img__overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.pf-img__overlay p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Spezial-Größen */
.pf-img--hero   { min-height: 540px; border-radius: 0; }
.pf-img--large  { min-height: 440px; }
.pf-img--medium { min-height: 320px; }
.pf-img--small  { min-height: 220px; }
.pf-img--tall   { min-height: 520px; }
.pf-img--wide   { grid-column: span 2; min-height: 360px; }
.pf-img--square { aspect-ratio: 1; min-height: auto; }

/* ==============================================================
   SECTION: ÜBER UNS
   ============================================================== */
.section-about {
  padding: 6rem 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(1,161,255,0.12);
  border: 1px solid rgba(1,161,255,0.2);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.eyebrow.green {
  background: rgba(123,225,1,0.12);
  border-color: rgba(123,225,1,0.25);
  color: var(--accent);
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}
.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Über-uns Alternating Rows */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.about-row:first-of-type { border-top: none; }
.about-row.reverse .pf-img { order: 2; }
.about-row.reverse .text-block { order: 1; }

.text-block h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #fff;
}
.text-block p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.text-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.text-block ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.text-block ul li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(123,225,1,0.15);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ==============================================================
   SECTION: GALERIE-GRID (wie Fitness First Karten)
   ============================================================== */
.section-gallery {
  padding: 0 0 6rem;
  background: var(--bg);
}

/* Hauptgalerie - 3-spaltig */
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Hero-Galerie: 1 Groß + 2 Klein */
.gallery-hero-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-hero-split .pf-img:first-child {
  grid-row: span 2;
}

/* 4-spaltig für kleinere Karten */
.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ==============================================================
   SECTION: ANGEBOTE (Service Cards)
   ============================================================== */
.section-cards {
  padding: 6rem 0;
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Service Card = Bild-Karte mit Overlay */
.service-card {
  position: relative;
  display: block;
  min-height: 340px;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card .pf-img {
  position: absolute;
  inset: 0;
  border-radius: 0;
  height: 100%;
}
.service-card .pf-img__inner {
  height: 100%;
  min-height: auto;
}

.service-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(0,0,26,0.88) 0%, rgba(0,0,26,0.2) 60%, transparent 100%);
  z-index: 2;
}
.service-card-content .eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
}
.service-card-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.service-card-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Pfeil-Button auf Karte */
.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 900;
  margin-top: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  align-self: flex-start;
}
.service-card:hover .card-arrow {
  transform: translateX(4px);
  background: #8ff510;
}

/* ==============================================================
   SECTION: STATS / ZAHLEN
   ============================================================== */
.section-stats {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #004080 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.section-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-card .num {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card .label {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ==============================================================
   SECTION: KURSVORSCHAU (4-Karten Grid)
   ============================================================== */
.section-courses {
  padding: 6rem 0;
  background: var(--bg);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.course-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.course-card .pf-img { height: 100%; }
.course-card .pf-img__inner { min-height: 280px; }
.course-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,26,0.9) 0%, transparent 100%);
}
.course-card-content h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.course-card-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
}

/* ==============================================================
   SECTION: WELLNESS BILD-BANNER
   ============================================================== */
.section-wellness-banner {
  padding: 2rem 0;
  background: var(--bg);
}
.wellness-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.wellness-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  background: var(--surface);
  border-radius: var(--radius-card);
}
.wellness-text-side h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.wellness-text-side p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==============================================================
   SECTION: LAGE / MAP
   ============================================================== */
.section-light {
  padding: 6rem 0;
  background: var(--surface);
}
.map-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}
.map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(1,161,255,0.12);
  box-shadow: var(--shadow-subtle);
}
.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-info { display: grid; gap: 1.25rem; }
.map-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.map-info p { color: var(--muted); line-height: 1.7; }

/* ==============================================================
   SECTION: MITGLIEDSCHAFT CTA
   ============================================================== */
.section-cta {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,161,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.section-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.section-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================================================
   FOOTER
   ============================================================== */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(1,161,255,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 26rem;
}
.footer-col h4 {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(1,161,255,0.1);
  border: 1px solid rgba(1,161,255,0.15);
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(1,161,255,0.2);
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(1,161,255,0.35);
}
.social-link svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ==============================================================
   SCROLL-ANIMATIONEN
   ============================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1100px) {
  .gallery-grid-4, .course-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid, .wellness-split, .about-row, .map-grid { grid-template-columns: 1fr; }
  .about-row.reverse .pf-img { order: -1; }
  .service-grid, .gallery-grid-3, .gallery-hero-split { grid-template-columns: 1fr 1fr; }
  .gallery-hero-split .pf-img:first-child { grid-row: auto; }
  .pf-img--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }

  /* Mobile Nav */
  .main-nav {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(0,0,26,0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), opacity 0.3s ease;
    border-bottom: 1px solid rgba(1,161,255,0.15);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.05rem;
  }
  .main-nav a::after { bottom: 8px; }

  .nav-toggle { display: flex; }

  .service-grid, .gallery-grid-3, .gallery-grid-4, .course-grid { grid-template-columns: 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .pf-img--large { min-height: 280px; }
  .pf-img--hero { min-height: 360px; }
}

@media (max-width: 480px) {
  .gallery-grid-4, .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
