/* ============================================
   OSTEOBILITY — Design inspired by alexhausen.de
   Video Hero · Parallax Backgrounds · Generous Spacing
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --white:       #ffffff;
  --surface:     #f5f5f7;
  --surface-2:   #eeeeee;
  --text:        #1d1d1f;
  --text-mid:    #424245;
  --text-soft:   #6e6e73;
  --accent:      #8d7272;
  --accent-dark: #6b5555;
  --border:      rgba(0,0,0,0.1);
  --overlay:     rgba(0,0,0,0.45);
  --nav-h:       120px;
  --r-sm:        10px;
  --r-md:        18px;
  --r-lg:        28px;
  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ── */
.display     { font-size: clamp(42px, 7vw, 80px);  font-weight: 700; letter-spacing: -0.035em; line-height: 1.0; }
.headline-xl { font-size: clamp(32px, 5vw, 58px);  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
.headline-lg { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; letter-spacing: -0.02em;  line-height: 1.12; }
.headline-md { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
.headline-sm { font-size: 20px;  font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.body-lg     { font-size: clamp(17px, 2vw, 21px);   font-weight: 400; line-height: 1.75; color: var(--text-mid); }
.body        { font-size: 17px;  line-height: 1.75; color: var(--text-mid); }
.body-sm     { font-size: 15px;  line-height: 1.65; color: var(--text-soft); }
.label       { font-size: 12px;  font-weight: 600;  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }

/* ── Layout ── */
.container    { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container-sm { width: 100%; max-width: 780px;  margin: 0 auto; padding: 0 32px; }
.section      { padding: 128px 0; }
.section-sm   { padding: 88px 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 15px 32px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Logo absolut ganz links, unabhängig von den Nav-Links */
.nav-logo {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-40%);
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 0.75; }

/* Weißes Logo auf Hero-Hintergrund */
.nav.on-hero .nav-logo img {
  content: url('logo/Logo_Schriftzug_Osteobility_weiss.png');
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
}

/* Subtiler Verlauf hinter der Nav im Hero */
.nav.on-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav.on-hero .nav-links a { color: var(--white); opacity: 0.9; }
.nav.on-hero .nav-links a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.on-hero .nav-hamburger span { background: var(--white); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════
   HERO — Video Background + Parallax
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Media container: extends 30% beyond hero top/bottom for parallax room */
.hero-media {
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  height: 160%;      /* 100% + 30% top + 30% bottom */
  will-change: transform;
  pointer-events: none;
}

/* HTML5 video — volle Breite, leicht verschleiert */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  z-index: 1;
}

/* Fallback-Bild (sichtbar wenn kein Video geladen) */
.hero-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Dark gradient overlay — über dem Video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.28) 55%,
    rgba(0,0,0,0.48) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 48px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1);   opacity: 0.4; }
  50%       { transform: scaleY(0.4); opacity: 1; }
}

/* ═══════════════════════════════════════════════
   PARALLAX FULL-WIDTH SECTIONS
   ═══════════════════════════════════════════════ */
.parallax-section {
  position: relative;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
}

/* Background image: extends beyond container for parallax movement */
.parallax-bg {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  height: 150%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Content layer */
.parallax-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* Left-side gradient overlay */
.parallax-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.38) 50%,
    rgba(0,0,0,0.05) 100%
  );
}

/* Right-side gradient overlay */
.parallax-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.38) 50%,
    rgba(0,0,0,0.05) 100%
  );
}

/* Text block within parallax section */
.parallax-text {
  max-width: 520px;
  color: var(--white);
  padding: 48px 0;
}
.parallax-text .divider { background: rgba(255,255,255,0.5); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-primary  { background: var(--text); color: var(--white); }
.btn-primary:hover  { background: #3a3a3c; transform: translateY(-2px); }
.btn-accent   { background: var(--accent); color: var(--white); }
.btn-accent:hover   { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--text); border: 1.5px solid var(--text); }
.btn-outline:hover  { background: var(--text); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover { background: var(--white); color: var(--text); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--surface); transform: translateY(-2px); }
.btn-lg  { padding: 18px 42px; font-size: 17px; }
.btn-sm  { padding: 10px 22px; font-size: 13px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.62));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 64px;
  padding-bottom: 72px;
}
.page-hero-content .label { color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.18);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card-bg { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.08) 60%);
}
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
}
.service-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.service-card-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
}
.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-top: 10px;
  line-height: 1.6;
}
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  transition: gap 0.2s, color 0.2s;
}
.service-card:hover .service-card-arrow { gap: 10px; color: var(--white); }

/* ── About Split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA Inline ── */
.cta-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 64px 72px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.cta-inline-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 32px; }

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-label { font-size: 14px; color: var(--text-soft); margin-top: 6px; }

/* ── Quote ── */
.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin: 48px 0;
}
.quote-text {
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: var(--text);
}
.quote-author { font-size: 14px; color: var(--text-soft); margin-top: 12px; }

/* ── Chip/Tag ── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

/* ── Divider ── */
.divider        { width: 40px; height: 2px; background: var(--accent); margin: 20px 0 36px; }
.divider-center { margin: 20px auto 36px; }

/* ── Intro block ── */
.intro-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.intro-block .divider { margin: 20px auto 36px; }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  gap: 24px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
  font-size: 18px;
  line-height: 1;
  color: var(--text-soft);
}
.faq-item.open .faq-icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  max-width: 680px;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ── Service List (Osteopathie pages) ── */
.service-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.service-area-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-area-list { display: flex; flex-direction: column; gap: 8px; }
.service-area-list li {
  font-size: 15px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.service-area-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ── Pricing Cards ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.pricing-card {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 32px 28px;
  text-align: center;
}
.pricing-amount {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 12px 0 8px;
}
.pricing-label-text { font-size: 14px; color: var(--text-soft); }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item { border-radius: var(--r-md); overflow: hidden; transition: transform 0.3s var(--ease); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:nth-child(1) { aspect-ratio: 1; }
.gallery-item:nth-child(2) { aspect-ratio: 1; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 1; }
.gallery-item:nth-child(6) { aspect-ratio: 4/3; grid-column: span 2; }
.gallery-item:nth-child(7) { aspect-ratio: 1; }

/* ── Video Grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-info { padding: 0 4px; }

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Course Cards ── */
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.course-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-3px); }
.course-day {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
  min-width: 80px;
}
.course-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 6px;
}
.course-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: #fef3f3;
  color: var(--accent);
  margin-top: 16px;
}
.course-badge.online { background: #f0f7ff; color: #3b82f6; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--accent);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-content { font-size: 15px; color: var(--text-mid); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.kontakt-info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.kontakt-info-item:first-child { padding-top: 0; }
.kontakt-link {
  color: var(--text-mid);
  transition: color 0.2s;
}
.kontakt-link:hover { color: var(--accent); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group { margin-top: 8px; }
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}
.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-checkbox-label a { color: var(--accent); text-decoration: underline; }

.form-feedback {
  padding: 20px 24px;
  border-radius: var(--r-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.form-feedback--success { background: #f0faf4; border: 1.5px solid #6dbf8d; }
.form-feedback--error   { background: #fff4f4; border: 1.5px solid #e07070; }
.form-feedback-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.form-feedback--success .form-feedback-icon { background: #6dbf8d; color: #fff; }
.form-feedback--error   .form-feedback-icon { background: #e07070; color: #fff; }
.form-feedback-title { font-weight: 600; font-size: 15px; color: var(--text); }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ── Qualifications ── */
.qual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.qual-card { background: var(--surface); border-radius: var(--r-md); padding: 32px 28px; }
.qual-icon { font-size: 32px; margin-bottom: 16px; }

/* ── Footer ── */
footer {
  background: rgba(141, 114, 114, 0.45);
  color: var(--text-soft);
  padding: 72px 0 44px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1.4fr 1fr 1fr;
  column-gap: 72px;
  row-gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 20px 0 12px;
}
.footer-brand-addr { font-size: 14px; line-height: 1.9; }
.footer-col-title {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-soft); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text); }
.footer-logo img { height: 160px; width: auto; object-fit: contain; opacity: 1; }

/* ── Fade-in animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.22s; }
.fade-up-delay-3 { transition-delay: 0.34s; }
.fade-up-delay-4 { transition-delay: 0.46s; }

/* ── Utility classes ── */
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }
.mb-0  { margin-bottom: 0; }
.text-center  { text-align: center; }
.text-soft    { color: var(--text-soft); }
.text-accent  { color: var(--accent); }
.bg-surface   { background: var(--surface); }
.bg-white     { background: var(--white); }
.bg-dark      { background: var(--text); color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .section   { padding: 96px 0; }
  .about-split { grid-template-columns: 1fr; gap: 56px; }
  .about-image { aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-inner > :first-child { grid-column: span 2; }
  .footer-inner > :nth-child(2) { grid-column: span 2; }
  .cta-inline { grid-template-columns: 1fr; text-align: center; padding: 48px; }
  .cta-inline-actions { flex-direction: row; justify-content: center; }
  .parallax-section { height: 65vh; min-height: 480px; }
  /* Nav collapses to hamburger before links overlap the logo */
  :root { --nav-h: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 52px; }
}

@media (max-width: 768px) {
  .section   { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { aspect-ratio: 4/3; }
  .service-areas { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(3) { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .stats-row     { grid-template-columns: 1fr; gap: 24px; padding-top: 48px; }
  .qual-grid     { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :first-child, .footer-inner > :nth-child(2) { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .course-card   { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .page-hero     { min-height: 400px; }
  .parallax-section { height: auto; min-height: 0; }
  .parallax-content { position: relative; inset: auto; min-height: 320px; }
  .parallax-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; will-change: auto; }
  .parallax-text { padding: 56px 0 48px; }
  .parallax-text .btn-lg { padding: 14px 24px; font-size: 15px; }
  .hero-media    { top: 0; height: 100%; will-change: auto; }
  .cta-inline    { padding: 40px 28px; }
  .cta-inline-actions { flex-direction: column; align-items: stretch; }
}

/* ── Responsive Grids (yogakurse / yogatherapie) ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.anmeldung-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.form-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .two-col-grid    { grid-template-columns: 1fr; gap: 40px; }
  .anmeldung-grid  { grid-template-columns: 1fr; gap: 40px; }
  .three-col-grid  { grid-template-columns: 1fr; gap: 16px; }
  .form-name-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .form-name-grid  { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-title    { letter-spacing: -0.025em; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item  { aspect-ratio: 4/3 !important; grid-column: span 1 !important; grid-row: span 1 !important; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .parallax-text { max-width: 100%; }
}
