/* ============================================================
   Pilates & Strength — Pastel Theme
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }
button { cursor: pointer; font-family: 'Jost', sans-serif; }

/* ── CSS Variables — Variation E Pastell ─────────────────── */
:root {
  /* Brand palette E */
  --g-dark:     #415347;
  --g-mid:      #6b8c82;
  --g-light:    #a8c0b8;
  --cream:      #f0edea;
  --sand:       #d5d9d6;
  --charcoal:   #1e1e1e;
  --ink:        #1f2b27;

  --nav-h: 92px;
  --font-serif: 'Cormorant Garamond', serif;
  --px: 96px;
  --px-md: 56px;
  --px-sm: 28px;

  /* ── Section backgrounds ── */
  --bg-body:    #f0edea;
  --bg-hero:    #f0edea;
  --bg-courses: #e8e4df;
  --bg-about:   #f0edea;
  --bg-team:    #e8e4df;
  --bg-reviews: #f0edea;
  --bg-cta:     #415347;
  --bg-footer:  #1f2b27;

  /* ── UI backgrounds ── */
  --bg-nav-scrolled: rgba(240,237,234,0.97);
  --courses-glow: none;

  /* ── Nav button ── */
  --btn-nav-bg:    var(--g-dark);
  --btn-nav-color: var(--cream);

  /* ── Image placeholders ── */
  --ph-1a: #c4cdc8; --ph-1b: #bdc6c1;
  --ph-2a: #cdd6d1; --ph-2b: #c6cfca;
  --ph-3a: #c0cac5; --ph-3b: #b9c3be;
  --ph-ta: #c8d0cc; --ph-tb: #bec8c4;
  --ph-tc: #cdd6d1; --ph-td: #c0cac5;
  --ph-cta-a: #c4cdc8; --ph-cta-b: #bdc6c1;

  /* ── Text alpha tokens ── */
  --c-high:  rgba(31,43,39,0.85);
  --c-body:  #6a7a74;
  --c-sub:   rgba(31,43,39,0.48);
  --c-dim:   #aab8b3;
  --c-ghost: rgba(31,43,39,0.26);

  /* ── Border alpha tokens ── */
  --c-border-hi:  rgba(65,83,71,0.25);
  --c-border:     #d5d9d6;
  --c-border-lo:  rgba(65,83,71,0.08);

  /* ── Surface alpha tokens ── */
  --c-surface-hi:  rgba(65,83,71,0.06);
  --c-surface:     #ffffff;
  --c-surface-lo:  rgba(65,83,71,0.02);

  /* ── Heading color token ── */
  --heading-color: #1f2b27;

  /* ── Legacy tokens ── */
  --text-main:   #1f2b27;
  --text-muted:  #6a7a74;
  --text-accent: #415347;
}

body { font-weight: 400; }

/* ── Logo ─────────────────────────────────────────────────── */
.logo svg { display: block; }
.logo-light .ps-path { fill: var(--g-dark); }
.logo-dark  .ps-path { fill: var(--g-dark); }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--px);
  transition: background 0.3s, padding 0.3s;
}
.site-nav.scrolled {
  background: var(--bg-nav-scrolled);
  backdrop-filter: blur(8px);
  padding: 16px var(--px);
}
.site-nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g-dark);
  opacity: 0.7;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.site-nav__link:hover { opacity: 1; }
.site-nav__cta {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--btn-nav-bg);
  color: var(--btn-nav-color);
  border: none;
  padding: 12px 28px;
  transition: opacity 0.2s;
}
.site-nav__cta:hover { opacity: 0.9; }

/* Mobile hamburger */
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.site-nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-body);
  transition: transform 0.25s, opacity 0.25s;
}
.site-nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu Overlay ──────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #1f2b27;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --c-body:       rgba(240,237,234,0.85);
  --c-dim:        rgba(240,237,234,0.4);
  --c-ghost:      rgba(240,237,234,0.25);
  --c-border-lo:  rgba(240,237,234,0.08);
  --c-surface-hi: rgba(240,237,234,0.06);
  --heading-color: #f0edea;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 90% 100%, rgba(107,140,130,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--px-sm);
  border-bottom: 1px solid var(--c-border-lo);
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 36px; height: 36px;
  background: none;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close::before,
.mobile-menu__close::after {
  content: '';
  position: absolute;
  width: 20px; height: 1.5px;
  background: var(--c-body);
}
.mobile-menu__close::before { transform: rotate(45deg); }
.mobile-menu__close::after  { transform: rotate(-45deg); }
.mobile-menu__links {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px var(--px-sm) 0;
}
.mobile-menu__item {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--c-surface-hi);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.mobile-menu__item:last-child { border-bottom: none; }
.mobile-menu__item-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 4px;
}
.mobile-menu__item-sub {
  font-size: 15px;
  color: var(--c-dim);
  letter-spacing: 0.08em;
}
.mobile-menu__arrow { font-size: 20px; color: var(--c-ghost); }
.mobile-menu__footer {
  position: relative;
  padding: 24px var(--px-sm) 40px;
  padding-bottom: max(40px, calc(env(safe-area-inset-bottom) + 24px));
  border-top: 1px solid var(--c-border-lo);
}
.mobile-menu__footer-cta {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--g-dark);
  border: none;
  padding: 18px;
  margin-bottom: 20px;
}
.mobile-menu__social {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 4px;
}
.mobile-menu__social a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-dim);
}

/* ── Hero — Variation E Split ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-hero);
}
/* Right-side photo — 58% width */
.hero__bg {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  z-index: 0;
}
.hero__bg img { object-position: center; }
.hero__bg--fallback {
  background: repeating-linear-gradient(45deg,var(--ph-ta),var(--ph-ta) 10px,var(--ph-tb) 10px,var(--ph-tb) 20px);
}
/* Horizontal fade: BG colour → transparent (masks left edge of photo) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--bg-hero) 0%, rgba(240,237,234,0.5) 30%, rgba(240,237,234,0) 65%);
}
.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--px) 96px;
}
.hero__text { max-width: 660px; }
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--g-mid);
  display: block;
  margin-bottom: 24px;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 600;
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__title em {
  color: var(--g-dark);
  font-weight: 300;
  font-style: normal;
}
.hero__body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-body);
  max-width: 400px;
  margin-bottom: 48px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--g-dark);
  color: var(--cream);
  border: none;
  padding: 18px 48px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline-light {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--g-dark);
  border: 1px solid var(--g-dark);
  padding: 18px 40px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.btn-outline-light:hover { opacity: 1; }
.btn-outline-dark {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--g-dark);
  border: 1px solid var(--g-dark);
  padding: 14px 36px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.btn-outline-dark:hover { opacity: 1; }
.btn-ghost-light {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(240,237,234,0.45);
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.2s;
}
.btn-ghost-light:hover { color: rgba(240,237,234,0.7); }

/* Hero: floating course card — white with shadow */
.hero__card {
  position: absolute;
  right: var(--px);
  bottom: 96px;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--sand);
  box-shadow: 0 8px 40px rgba(65,83,71,0.1);
  padding: 28px 32px;
  width: 264px;
}
.hero__card-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 16px;
}
.hero__card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}
.hero__card-name {
  font-size: 13px;
  color: var(--ink);
  font-weight: 300;
}
.hero__card-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--g-dark);
  font-weight: 600;
}
.hero__card-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-dark);
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.hero__card-link:hover { opacity: 0.7; }

/* ── Courses Section — Variation E ───────────────────────── */
.courses {
  background: var(--bg-courses);
  padding: 72px var(--px) 80px;
}
.section-inner { position: relative; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header__text {}

/* Eyebrow with leading line */
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.eyebrow-line__rule {
  width: 28px;
  height: 1px;
  background: var(--g-dark);
  flex-shrink: 0;
}
.eyebrow-line__rule--right { flex: 1; background: var(--sand); }
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.92;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}
.filter-btns { display: flex; gap: 8px; padding-bottom: 8px; }
.filter-btn {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  color: var(--g-mid);
  border: 1px solid var(--sand);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--g-dark);
  color: var(--cream);
  border-color: var(--g-dark);
}

/* Course cards grid — first card highlighted in g-dark */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.course-card {
  background: #ffffff;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  overflow: hidden;
  position: relative;
}
.course-book {
  position: static;
}
.course-book::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.course-card:hover { box-shadow: 0 4px 20px rgba(65,83,71,0.08); }
.course-card__content {
  border: 1px solid var(--sand);
  border-top: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.course-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.course-card:hover .course-card__img img { transform: scale(1.04); }
.course-card__body {
  padding: 20px 24px 8px;
  flex: 1;
}
.course-card:hover { box-shadow: 0 4px 20px rgba(65,83,71,0.08); }
.course-card:first-child .course-card__content {
  background: var(--g-dark);
  border-color: var(--g-dark);
}
.course-card:first-child .course-tag {
  color: var(--g-light);
  background: rgba(168,192,184,0.2);
}
.course-card:first-child .course-duration { color: rgba(240,237,234,0.5); }
.course-card:first-child .course-name { color: var(--cream); }
.course-card:first-child .course-desc { color: rgba(240,237,234,0.55); }
.course-card:first-child .course-footer { border-top-color: rgba(240,237,234,0.12); }
.course-card:first-child .course-level { color: rgba(240,237,234,0.4); }
.course-card:first-child .course-book { color: var(--g-light); }
.course-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.course-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-mid);
  background: rgba(65,83,71,0.08);
  padding: 4px 10px;
}
.course-duration { font-size: 11px; color: #bbb; }
.course-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.course-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--sand);
}
.course-level { font-size: 11px; color: #aaa; letter-spacing: 0.06em; }
.course-book {
  font-size: 13px;
  color: var(--g-dark);
  background: none;
  border: none;
  padding: 0;
  font-family: 'Jost', sans-serif;
}

/* Special courses subsection */
.special-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  margin-top: 24px;
}
.special-header__line-left { width: 28px; height: 1px; background: var(--g-dark); flex-shrink: 0; }
.special-header__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--g-mid);
  white-space: nowrap;
}
.special-header__line-right { flex: 1; height: 1px; background: var(--sand); }
.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.special-card {
  background: rgba(65,83,71,0.05);
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  cursor: pointer;
  transition: background 0.2s;
  overflow: hidden;
  position: relative;
}
.special-more::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.special-card:hover { background: rgba(65,83,71,0.08); }
.special-card__content {
  border: 1px solid rgba(65,83,71,0.16);
  border-top: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.special-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.special-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.special-card:hover .special-card__img img { transform: scale(1.04); }
.special-card__body { padding: 24px 32px 8px; flex: 1; }
.special-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.special-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-mid);
  background: rgba(65,83,71,0.08);
  padding: 4px 10px;
}
.special-badge { font-size: 11px; color: #aaa; text-align: right; }
.special-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.special-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.special-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 12px 32px 24px;
  border-top: 1px solid rgba(65,83,71,0.12);
}
.special-duration { font-size: 11px; color: #aaa; }
.special-more {
  font-size: 13px;
  color: var(--g-dark);
  background: none;
  border: none;
  padding: 0;
  font-family: 'Jost', sans-serif;
}

/* ── About + Video: 50/50 split on desktop ─────────────────── */
.about-video-split {
  display: flex;
  min-height: 600px;
}
.about-video-split > * { flex: 1; }

/* ── About Section ─────────────────────────────────────────── */
.about {
  background: var(--bg-about);
  display: flex;
  overflow: hidden;
}
.about__gallery { display: none !important; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg,var(--ph-1a),var(--ph-1a) 10px,var(--ph-1b) 10px,var(--ph-1b) 20px);
}
.gallery-placeholder--2 {
  background: repeating-linear-gradient(45deg,var(--ph-2a),var(--ph-2a) 10px,var(--ph-2b) 10px,var(--ph-2b) 20px);
}
.gallery-placeholder--3 {
  background: repeating-linear-gradient(45deg,var(--ph-3a),var(--ph-3a) 10px,var(--ph-3b) 10px,var(--ph-3b) 20px);
}
.about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.about__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
  display: block;
  margin-bottom: 16px;
}
.about__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.about__title em {
  color: var(--g-dark);
  font-style: normal;
}
.about__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  max-width: 380px;
  margin-bottom: 20px;
}
.about__body-light { color: #9aaaa4; margin-bottom: 0; }
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
}
.about__stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--g-dark);
}
.about__stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-dim);
  margin-top: 4px;
}
.about__btn {
  align-self: flex-start;
  display: inline-block;
  margin-top: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--g-dark);
  color: var(--cream);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.about__btn:hover { opacity: 0.85; }

/* ── Team Section — Variation E ───────────────────────────── */
.team {
  background: var(--bg-team);
  padding: 80px var(--px);
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}
.team__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trainer-card {
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.trainer-card__img {
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}
.trainer-card__img img { height: 375px; }
.trainer-photo-placeholder {
  width: 100%;
  height: 300px;
  background: repeating-linear-gradient(45deg,var(--ph-ta),var(--ph-ta) 10px,var(--ph-tb) 10px,var(--ph-tb) 20px);
}
.trainer-photo-placeholder--alt {
  background: repeating-linear-gradient(45deg,var(--ph-tc),var(--ph-tc) 10px,var(--ph-td) 10px,var(--ph-td) 20px);
}
.trainer-card__info {
  padding: 24px 28px;
  background: #ffffff;
  border-top: 1px solid var(--sand);
  flex: 1;
  overflow: hidden;
}
.trainer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.trainer-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 12px;
}
.trainer-quote {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #8a9a94;
}

/* ── Reviews Section — Variation E ───────────────────────── */
.reviews {
  background: var(--bg-reviews);
  padding: 80px var(--px);
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}
.reviews__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.reviews__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
  display: block;
  margin-bottom: 16px;
}
.reviews__rating {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
  align-items: flex-end;
}
.reviews__score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--g-dark);
  line-height: 1;
}
.reviews__score-meta {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
  gap: 4px;
}
.reviews__source {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stars { display: flex; gap: 3px; }
.stars svg { fill: var(--g-dark); }
.reviews__grid {
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track .review-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 260px;
}
/* Default: white cards */
.review-card {
  background: #ffffff;
  border: 1px solid var(--sand);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
}
/* Middle card highlighted in g-dark */
.review-card:nth-child(2) {
  background: var(--g-dark);
  border-color: var(--g-dark);
}
.review-card:nth-child(2) .review-quote-mark { color: var(--g-light); opacity: 0.4; }
.review-card:nth-child(2) .review-text { color: rgba(240,237,234,0.82); }
.review-card:nth-child(2) .review-footer { border-top-color: rgba(240,237,234,0.1); }
.review-card:nth-child(2) .avatar { background: rgba(240,237,234,0.12); }
.review-card:nth-child(2) .avatar__initials { color: rgba(240,237,234,0.6); }
.review-card:nth-child(2) .review-name { color: var(--cream); }
.review-card:nth-child(2) .review-since { color: rgba(240,237,234,0.4); }
.review-card:nth-child(2) .review-name-row .stars svg { fill: var(--g-light); }
.review-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--g-dark);
  margin-bottom: 12px;
  opacity: 0.4;
  user-select: none;
  flex-shrink: 0;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #666;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.review-footer {
  padding-top: 20px;
  border-top: 1px solid var(--sand);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.avatar__initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--g-dark);
  letter-spacing: 0.04em;
}
.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-since {
  font-size: 11px;
  color: #bbb;
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.review-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

/* ── CTA Section (Screen 6C) ──────────────────────────────── */
.cta {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
}
.cta__photo {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.cta__photo img { height: 100%; }
.cta-photo-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg,var(--ph-cta-a),var(--ph-cta-a) 10px,var(--ph-cta-b) 10px,var(--ph-cta-b) 20px);
}
.cta__content {
  flex: 1;
  background: var(--bg-cta);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px var(--px) 80px 72px;
}
.cta__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-light);
  display: block;
  margin-bottom: 24px;
}
.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.cta__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,237,234,0.6);
  margin-bottom: 48px;
  max-width: 340px;
}
.btn-cta-primary {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--g-dark);
  border: none;
  padding: 20px 56px;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.btn-cta-primary:hover { opacity: 0.9; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-footer);
  padding: 72px var(--px) 40px;
  /* Override all ink-based variables for dark footer background */
  --c-sub:        rgba(240,237,234,0.5);
  --c-high:       rgba(240,237,234,0.9);
  --c-ghost:      rgba(240,237,234,0.35);
  --c-body:       rgba(240,237,234,0.7);
  --c-border:     rgba(240,237,234,0.12);
  --c-border-lo:  rgba(240,237,234,0.08);
  --c-surface-hi: rgba(240,237,234,0.06);
}
.footer__top {
  margin-bottom: 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__address {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-sub);
}
.footer__address a {
  color: var(--c-sub);
  transition: color 0.2s;
}
.footer__address a:hover { color: var(--c-high); }
.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.4);
  margin-bottom: 24px;
}
.footer__link {
  font-size: 15px;
  font-weight: 300;
  color: var(--c-sub);
  margin-bottom: 12px;
  cursor: pointer;
  display: block;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--c-high); }
.footer__newsletter-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-sub);
  margin-bottom: 20px;
}
.footer__form { display: flex; }
.footer__input {
  flex: 1;
  background: var(--c-surface-hi);
  border: 1px solid var(--c-border);
  border-right: none;
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.footer__input::placeholder { color: var(--c-ghost); }
.footer__input:focus { border-color: var(--c-ghost); }
.footer__submit {
  background: var(--g-mid);
  border: none;
  padding: 12px 18px;
  color: var(--cream);
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.footer__submit:hover { background: var(--g-dark); }
.footer__bar {
  padding-top: 28px;
  border-top: 1px solid var(--c-border-lo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__bar-row1 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__bar-row2 { display: flex; gap: 24px; }
.footer__copy {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-ghost);
  letter-spacing: 0.04em;
}
.footer__instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--c-ghost);
}
.footer__instagram span {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-ghost);
  letter-spacing: 0.04em;
}
.footer__legal {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-ghost);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer__legal:hover { color: var(--c-body); }
.footer__made {
  font-size: 12px;
  font-weight: 300;
  color: var(--c-ghost);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}
.footer__made-link {
  color: var(--c-ghost);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__made-link:hover { color: var(--c-body); }

/* Logo in footer — always cream on dark bg */
.footer .logo { margin-bottom: 28px; }
.footer .logo .ps-path { fill: var(--cream); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --px: 56px; }
  .hero__title  { font-size: 96px; }
  .about__text  { width: 440px; }
  .about__title { font-size: 52px; }
  .section-title, .team__title, .reviews__title, .cta__title { font-size: 56px; }
}

@media (max-width: 1024px) {
  :root { --px: 40px; }
  .hero__title  { font-size: 80px; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-video-split { flex-direction: column; min-height: auto; }
  .about { min-height: auto; }
  .about__text  { padding: 64px var(--px); }
}

@media (max-width: 768px) {
  :root { --px: var(--px-sm); }

  /* Nav + Logo */
  .site-nav { padding: 20px var(--px-sm); }
  .site-nav.scrolled { padding: 14px var(--px-sm); }
  .site-nav__links, .site-nav__cta { display: none; }
  .site-nav__hamburger { display: flex; }
  .site-nav .logo svg { width: auto; height: 36px; }

  /* Hero — on mobile, photo covers full width from top */
  .hero { min-height: 95vh; }
  .hero__bg { width: 100%; }
  .hero__bg img { object-position: top center; }
  .hero__overlay { background: linear-gradient(to top, var(--bg-hero) 30%, rgba(240,237,234,0.5) 55%, rgba(240,237,234,0.35) 75%, rgba(240,237,234,0.4) 100%); }
  .hero__eyebrow { color: var(--g-dark); }
  .hero__title { font-size: 72px; }
  .hero__body { font-size: 15px; max-width: 300px; }
  .hero__content { padding: 0 var(--px-sm) 48px; }
  .hero__card { display: none; }
  .btn-primary { padding: 16px 36px; width: 100%; text-align: center; }
  .btn-outline-light { padding: 16px 36px; width: 100%; text-align: center; }
  .hero__actions { flex-direction: column; }

  /* Sections */
  .courses { padding: 48px var(--px-sm) 40px; }
  .section-title, .team__title, .reviews__title { font-size: 48px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .courses-grid { grid-template-columns: 1fr; gap: 16px; }
  .special-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .about__text { padding: 48px var(--px-sm); width: 100%; }
  .about__title { font-size: 44px; }
  .about__stat-number { font-size: 22px; }
  .about__stat-label  { font-size: 9px; }
  .about__stats { gap: 24px; }
  .about__gallery {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
    overflow: hidden;
  }
  .about__gallery-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .about__gallery > div:not(.about__gallery-main) { overflow: hidden; }
  .about__gallery > div img { width: 100%; height: 100%; object-fit: cover; }

  /* Team */
  .team { padding: 48px var(--px-sm); min-height: auto; }
  .team__header { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .team__title { font-size: 52px; }
  .team__grid { grid-template-columns: 1fr; gap: 3px; }
  .trainer-card { flex-direction: row; min-height: 120px; }
  .trainer-card__img { width: 110px; height: auto; flex-shrink: 0; }
  .trainer-card__img img { width: 110px; height: 100%; object-fit: cover; }
  .trainer-card__info { border-top: none; border-left: 1px solid var(--sand); padding: 20px; }

  /* Reviews */
  .reviews { padding: 48px var(--px-sm); min-height: auto; }
  .reviews__header { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .reviews__title { font-size: 48px; }
  /* Carousel on mobile — CSS scroll-snap */
  .reviews__track {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }
  .reviews__track .review-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }
  .review-card { min-height: auto; }

  /* CTA */
  .cta { flex-direction: column; min-height: auto; }
  .cta__photo { width: 100%; height: 220px; }
  .cta__content { padding: 48px var(--px-sm) 56px; }
  .cta__title { font-size: 56px; }
  .btn-cta-primary { width: 100%; text-align: center; }
  .btn-ghost-light { width: 100%; text-align: center; }

  /* Footer */
  .footer { padding: 48px var(--px-sm) 32px; }
  .footer .logo svg { height: 44px; width: auto; }
  .footer__top { margin-bottom: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; margin-bottom: 36px; }
  .footer__newsletter-col { grid-column: 1 / 3; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__bar-row1 { gap: 14px; }
  .footer__bar-row2 { gap: 16px; }
  .footer__copy, .footer__instagram span, .footer__legal { font-size: 12px; }
}

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--bg-footer);
  border-top: 1px solid rgba(138, 170, 120, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-banner__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-body);
}
.cookie-banner__link {
  color: var(--g-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.cookie-banner__link:hover { opacity: 0.75; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--decline {
  background: transparent;
  color: var(--c-sub);
  border: 1px solid var(--c-border);
}
.cookie-banner__btn--accept {
  background: var(--g-dark);
  color: var(--cream);
  border: 1px solid var(--g-dark);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px var(--px-sm);
    gap: 16px;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 14px 24px;
  }
  .cookie-banner__btn--accept {
    background: var(--cream);
    color: var(--g-dark);
    border-color: var(--cream);
  }
  .cookie-banner__btn--decline {
    background: transparent;
    color: rgba(240,237,234,0.45);
    border-color: rgba(240,237,234,0.15);
  }
}

/* ── Video Section ────────────────────────────────────────── */
.video-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center top;
}
.video-section:hover .video-section__play { transform: translate(-50%, -50%) scale(1.08); }
.video-section__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(31,43,39,0.90) 0%,
    rgba(31,43,39,0.62) 50%,
    rgba(31,43,39,0.50) 100%
  );
}

.video-section__label,
.video-section__play,
.video-section__quote,
.video-section__attribution { position: absolute; z-index: 1; }

.video-section__label {
  top: 32px;
  left: var(--px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.5);
}
.video-section__label .eyebrow-line__rule {
  background: rgba(240,237,234,0.3);
}

.video-section__play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240,237,234,0.18);
  border: 1px solid rgba(240,237,234,0.3);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s;
  padding-left: 4px; /* optical centering of triangle */
}
.video-section__play:hover { background: rgba(240,237,234,0.28); }

.video-section__quote {
  bottom: 48px;
  left: var(--px);
  max-width: 560px;
}
.video-section__quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  font-style: normal;
}

.video-section__attribution {
  bottom: 52px;
  right: var(--px);
  text-align: right;
}
.video-section__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
}
.video-section__role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.45);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .video-section { min-height: 420px; }
  .video-section__label { left: var(--px-sm); top: 24px; }
  .video-section__quote { left: var(--px-sm); bottom: 100px; max-width: calc(100% - 56px); }
  .video-section__attribution { right: var(--px-sm); bottom: 48px; }
}

/* ── YouTube Lightbox ─────────────────────────────────────── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(15,20,18,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.video-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.video-lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(240,237,234,0.7);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.video-lightbox__close:hover { color: var(--cream); }
.video-lightbox__frame {
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
}
.video-lightbox__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   Subpages — shared
   ============================================================ */

/* ── Shared buttons ── */
.btn-outline-dark {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-dark);
  border: 1px solid var(--g-dark);
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-outline-dark:hover { background: var(--g-dark); color: var(--cream); }

.btn-outline-light {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(240,237,234,0.5);
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-outline-light:hover { background: rgba(240,237,234,0.1); }

.btn-primary-light {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--cream);
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
}
.btn-primary-light:hover { opacity: 0.85; }

/* ── Page Hero (Trainerinnen / Preise shared) ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) var(--px) 72px;
  background: var(--bg-body);
}
.page-hero--tan { background: var(--bg-courses); }
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-hero__split {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
  white-space: nowrap;
}
.page-hero__desc {
  max-width: 480px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  padding-top: 12px;
}

/* ── Page CTA (shared dark section) ── */
.page-cta {
  background: var(--ink);
  padding: 80px var(--px);
}
.page-cta__inner { max-width: 680px; }
.page-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.page-cta__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Trainerinnen page
   ============================================================ */
.trainers-page { background: var(--bg-body); }

.trainer-full {
  display: flex;
  min-height: 480px;
  background: #fff;
  border-bottom: 3px solid var(--bg-body);
}
.trainer-full--alt { flex-direction: row-reverse; background: var(--bg-courses); }

.trainer-full__img {
  flex: 0 0 380px;
  overflow: hidden;
}
.trainer-full__img img { width: 100%; height: 100%; object-fit: cover; }

.trainer-full__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px var(--px);
}
.trainer-full__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 12px;
}
.trainer-full__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.trainer-full__meta {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-dim);
  margin-bottom: 20px;
}
.trainer-full__quote {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--c-body);
  line-height: 1.7;
  max-width: 480px;
}
.trainer-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trainer-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(65,83,71,0.08);
  color: var(--g-mid);
}

@media (max-width: 900px) {
  .trainer-full, .trainer-full--alt { flex-direction: column; min-height: auto; }
  .trainer-full__img { flex: 0 0 260px; height: 260px; }
  .trainer-full__content { padding: 32px var(--px-sm); }
  .trainer-full__name { font-size: 36px; }
  .page-hero__split { flex-direction: column; gap: 20px; }
  .page-hero__title { white-space: normal; }
}

/* ============================================================
   Studio page
   ============================================================ */

/* Hero */
.studio-hero {
  display: flex;
  min-height: 520px;
  margin-top: var(--nav-h);
}
.studio-hero__img {
  flex: 0 0 50%;
  overflow: hidden;
}
.studio-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.studio-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--px) 64px 64px;
  background: var(--bg-body);
}
.studio-hero__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 16px;
}
.studio-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.studio-hero__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  max-width: 440px;
}

/* Stats Bar */
.studio-stats {
  display: flex;
  background: var(--ink);
  padding: 48px var(--px);
}
.studio-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(240,237,234,0.15);
  padding: 0 24px;
}
.studio-stat:last-child { border-right: none; }
.studio-stat__val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.studio-stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.55);
}

/* Philosophy */
.studio-philosophy {
  display: flex;
  min-height: 520px;
}
.studio-philosophy__text {
  flex: 0 0 50%;
  padding: 80px var(--px) 80px var(--px);
  background: var(--bg-courses);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.studio-philosophy__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.studio-philosophy__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.studio-philosophy__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  max-width: 480px;
}
.studio-philosophy__img {
  flex: 1;
  overflow: hidden;
}
.studio-philosophy__img img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery beside philosophy */
.studio-philosophy__gallery {
  flex: 0 0 50%;
  overflow: hidden;
}
.studio-phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 100%;
}
.studio-phil-grid__cell { overflow: hidden; }
.studio-phil-grid__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.studio-phil-grid__cell:hover img { transform: scale(1.04); }

/* Gallery */
.studio-gallery {
  display: flex;
  gap: 3px;
  height: 560px;
  background: var(--bg-body);
}
.studio-gallery__main {
  flex: 0 0 calc(50% - 1.5px);
  overflow: hidden;
}
.studio-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.studio-gallery__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.studio-gallery__cell { overflow: hidden; }
.studio-gallery__cell img { width: 100%; height: 100%; object-fit: cover; }

/* Location */
.studio-location {
  display: flex;
  min-height: 440px;
  background: var(--ink);
}
.studio-location__content {
  flex: 0 0 50%;
  padding: 72px var(--px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.studio-location__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.5);
}
.studio-location__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.studio-location__details { display: flex; flex-direction: column; gap: 16px; }
.studio-location__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(240,237,234,0.75);
  line-height: 1.5;
}
.studio-location__key {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.45);
}
.studio-location__item a { color: rgba(240,237,234,0.75); text-decoration: underline; }
.studio-location__map {
  flex: 1;
  overflow: hidden;
  opacity: 0.5;
}
.studio-location__map img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .studio-hero { flex-direction: column; }
  .studio-hero__img { flex: 0 0 320px; height: 320px; }
  .studio-hero__content { padding: 40px var(--px-sm); }
  .studio-stats { flex-wrap: wrap; padding: 40px var(--px-sm); gap: 0; }
  .studio-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(240,237,234,0.15); padding: 20px 16px; }
  .studio-stat:nth-child(odd) { border-right: 1px solid rgba(240,237,234,0.15); }
  .studio-stat:nth-last-child(-n+2) { border-bottom: none; }
  .studio-stat__val { font-size: 28px; }
  .studio-philosophy { flex-direction: column; }
  .studio-philosophy__text { flex: 0 0 auto; padding: 48px var(--px-sm); }
  .studio-philosophy__img { height: 300px; flex: 0 0 300px; }
  .studio-philosophy__gallery { flex: 0 0 260px; height: 260px; }
  .studio-location { flex-direction: column; }
  .studio-location__content { flex: 0 0 auto; padding: 48px var(--px-sm); }
  .studio-location__map { flex: 0 0 220px; height: 220px; }
}

/* ============================================================
   Preise page
   ============================================================ */
.pricing-section {
  padding: 72px var(--px);
  background: var(--bg-body);
}
.pricing-group-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-group-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--g-dark);
  flex-shrink: 0;
}
/* Tabs */
.pricing-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1.5px solid var(--sand);
}
.pricing-tab {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-dim);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 28px;
  cursor: pointer;
  margin-bottom: -1.5px;
  transition: color 0.2s, border-color 0.2s;
}
.pricing-tab:hover { color: var(--g-dark); }
.pricing-tab.is-active {
  color: var(--g-dark);
  border-bottom-color: var(--g-dark);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  max-width: 1100px;
}
.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.pricing-card--highlight {
  background: var(--g-dark);
  border-color: var(--g-dark);
  color: var(--cream);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--cream);
  color: var(--g-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--sand);
}
.pricing-card--highlight .pricing-card__badge {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--g-dark);
}
.pricing-card__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.pricing-card--highlight .pricing-card__name { color: rgba(240,237,234,0.65); }
.pricing-card__price { display: flex; align-items: baseline; gap: 6px; }
.pricing-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}
.pricing-card--highlight .pricing-card__amount { color: var(--cream); }
.pricing-card__unit { font-size: 13px; font-weight: 300; color: var(--c-dim); }
.pricing-card--highlight .pricing-card__unit { color: rgba(240,237,234,0.6); }
.pricing-card__desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--c-body); }
.pricing-card--highlight .pricing-card__desc { color: rgba(240,237,234,0.8); }
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 14px;
  font-weight: 300;
  color: var(--c-body);
  padding-left: 18px;
  position: relative;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--g-mid);
  font-size: 12px;
}
.pricing-card--highlight .pricing-card__features li { color: rgba(240,237,234,0.85); }
.pricing-card--highlight .pricing-card__features li::before { color: rgba(240,237,234,0.5); }
.pricing-card__btn {
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--g-dark);
  background: transparent;
  color: var(--g-dark);
  cursor: pointer;
  transition: background .2s, color .2s;
  margin-top: auto;
}
.pricing-card__btn:hover { background: var(--g-dark); color: var(--cream); }
.pricing-card--highlight .pricing-card__btn {
  background: var(--cream);
  color: var(--g-dark);
  border-color: var(--cream);
}
.pricing-card--highlight .pricing-card__btn:hover { opacity: 0.9; }

/* Krankenkasse box */
.pricing-kk {
  background: var(--bg-courses);
  padding: 72px var(--px);
}
.pricing-kk__inner { max-width: 700px; }
.pricing-kk__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 16px;
}
.pricing-kk__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.pricing-kk__inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  margin-bottom: 28px;
}

/* FAQ */
.pricing-faq {
  padding: 72px var(--px);
  background: var(--bg-body);
}
.pricing-faq__inner { max-width: 960px; }
.pricing-faq__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 28px 32px;
}
.faq-item__q {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.faq-item__a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
}

@media (max-width: 900px) {
  .pricing-grid--3 { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-section, .pricing-kk, .pricing-faq { padding: 48px var(--px-sm); }
  .faq-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-h) + 40px) var(--px-sm) 48px; }
  .page-cta { padding: 56px var(--px-sm); }
  .pricing-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-tab { font-size: 10px; padding: 12px 18px; white-space: nowrap; letter-spacing: 0.14em; }
}

/* ============================================================
   Schwangerschaft & Rückbildung (Mama) page
   ============================================================ */

/* Hero */
.mama-hero {
  display: flex;
  align-items: stretch;
  min-height: 580px;
  margin-top: var(--nav-h);
  background: var(--bg-body);
}
.mama-hero__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--px);
  gap: 20px;
}
.mama-hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g-dark);
  background: var(--bg-courses);
  border: 1px solid var(--sand);
  padding: 6px 14px;
  align-self: flex-start;
}
.mama-hero__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.mama-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.mama-hero__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  max-width: 440px;
}
.mama-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.mama-hero__img {
  flex: 1;
  overflow: hidden;
}
.mama-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* Courses */
.mama-courses {
  display: flex;
  min-height: 440px;
}
.mama-course {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px var(--px);
}
.mama-course--light { background: var(--bg-body); }
.mama-course--dark  { background: var(--ink); }
.mama-course__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.mama-course--dark .mama-course__label { color: rgba(240,237,234,0.45); }
.mama-course__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.mama-course--dark .mama-course__title { color: var(--cream); }
.mama-course__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
  max-width: 420px;
}
.mama-course--dark .mama-course__desc { color: rgba(240,237,234,0.75); }
.mama-course__stats {
  display: flex;
  gap: 32px;
}
.mama-course__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mama-course__stat span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}
.mama-course--dark .mama-course__stat span { color: var(--cream); }
.mama-course__stat {
  font-size: 11px;
  font-weight: 300;
  color: var(--c-dim);
  letter-spacing: 0.08em;
}
.mama-course--dark .mama-course__stat { color: rgba(240,237,234,0.55); }

/* Process */
.mama-process {
  background: var(--bg-courses);
  padding: 80px var(--px);
}
.mama-process__inner { max-width: 1100px; }
.mama-process__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.mama-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mama-step {
  background: var(--bg-body);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mama-step__nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--sand);
  line-height: 1;
}
.mama-step__title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--heading-color);
}
.mama-step__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
}

/* Trainer highlight */
.mama-trainer {
  display: flex;
  min-height: 420px;
  background: var(--bg-body);
}
.mama-trainer__img {
  flex: 0 0 400px;
  overflow: hidden;
}
.mama-trainer__img img { width: 100%; height: 100%; object-fit: cover; }
.mama-trainer__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--px);
  gap: 16px;
}
.mama-trainer__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.mama-trainer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.mama-trainer__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.mama-trainer__quote {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--c-body);
  line-height: 1.7;
  max-width: 440px;
}

@media (max-width: 900px) {
  .mama-hero { flex-direction: column; }
  .mama-hero__content { flex: 0 0 auto; padding: 48px var(--px-sm); gap: 16px; }
  .mama-hero__img { flex: 0 0 280px; height: 280px; }
  .mama-courses { flex-direction: column; }
  .mama-course { padding: 48px var(--px-sm); }
  .mama-process { padding: 56px var(--px-sm); }
  .mama-process__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mama-trainer { flex-direction: column; }
  .mama-trainer__img { flex: 0 0 260px; height: 260px; }
  .mama-trainer__content { padding: 40px var(--px-sm); gap: 14px; }
  .mama-trainer__name { font-size: 36px; }
  .page-cta { padding: 56px var(--px-sm); }
}

@media (max-width: 600px) {
  .mama-process__grid { grid-template-columns: 1fr; }
  .mama-course__stats { gap: 20px; }
}


/* ═══════════════════════════════════════════════════════════
   KURSE PAGE
   ═══════════════════════════════════════════════════════════ */

/* Page Header */
.page-header {
  background: var(--cream);
  color: var(--ink);
  padding: 80px var(--px) 64px;
  text-align: center;
  border-bottom: 1px solid rgba(65,83,71,0.1);
}
.page-header .section-eyebrow { color: var(--g-mid) !important; }
.page-header__inner { max-width: 640px; margin: 0 auto; }
.page-header .eyebrow-line { justify-content: center; }
.page-header .eyebrow-line__rule { display: none; }
.page-header .section-eyebrow { color: rgba(240,237,234,0.5); }
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin: 12px 0 16px;
  color: var(--ink);
}
.page-header__sub {
  font-size: 16px;
  color: var(--g-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter Bar */
.kurse-filter-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(65,83,71,0.1);
  position: sticky;
  top: 64px;
  z-index: 40;
}
.kurse-filter-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
}
.kurse-filter-btns {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.kurse-filter-btns::-webkit-scrollbar { display: none; }
.kurse-filter-btns .filter-btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
  .kurse-filter-bar__inner { padding: 0 var(--px-sm); }
  .kurse-filter-btns { gap: 6px; padding: 12px 0; }
  .kurse-filter-btns .filter-btn { font-size: 11px; padding: 7px 14px; }
}

/* Section layout */
.kurse-section {
  padding: 72px var(--px) 64px;
  border-bottom: 1px solid rgba(65,83,71,0.08);
}
.kurse-section:first-of-type { padding-top: 80px; }
.kurse-section:last-of-type { border-bottom: none; }
.kurse-section__header {
  margin-bottom: 40px;
}
.kurse-section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--g-dark);
  margin: 8px 0 0;
}
.kurse-section__intro {
  margin-top: 16px;
  font-size: 16px;
  color: var(--g-mid);
  max-width: 640px;
  line-height: 1.7;
}

/* Course category tiles on homepage */
.course-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.course-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--cream);
  border: 1.5px solid rgba(65,83,71,0.15);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  gap: 12px;
}
.course-category:hover {
  background: var(--g-dark);
  border-color: var(--g-dark);
  transform: translateY(-2px);
}
.course-category__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--g-dark);
  transition: color 0.2s;
}
.course-category:hover .course-category__label { color: var(--cream); }
.course-category__arrow {
  font-size: 16px;
  color: var(--g-mid);
  transition: color 0.2s, transform 0.2s;
}
.course-category:hover .course-category__arrow {
  color: var(--cream);
  transform: translateX(4px);
}

/* Personal Training section */
.kurse-section--pt { background: var(--bg-courses); }


.pt-card {
  background: #fff;
  border: 1.5px solid rgba(65,83,71,0.12);
  border-radius: 8px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pt-card:hover {
  box-shadow: 0 6px 24px rgba(65,83,71,0.1);
  transform: translateY(-2px);
}
.pt-card--highlight {
  background: var(--g-dark);
  border-color: var(--g-dark);
}
.pt-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent, #b8a898);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pt-card__header { display: flex; flex-direction: column; gap: 4px; }
.pt-card__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--g-dark);
}
.pt-card--highlight .pt-card__name { color: var(--cream); }
.pt-card__sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g-mid);
}
.pt-card--highlight .pt-card__sub { color: rgba(240,237,234,0.5); }
.pt-card__note {
  font-size: 13px;
  color: var(--g-mid);
  line-height: 1.5;
  margin-top: 6px;
}
.pt-card--highlight .pt-card__note { color: rgba(240,237,234,0.6); }

.pt-card__prices { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pt-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(65,83,71,0.08);
}
.pt-card--highlight .pt-price { border-bottom-color: rgba(240,237,234,0.1); }
.pt-price:last-child { border-bottom: none; padding-bottom: 0; }
.pt-price__label {
  font-size: 12px;
  color: var(--g-mid);
}
.pt-card--highlight .pt-price__label { color: rgba(240,237,234,0.5); }
.pt-price__amount {
  font-size: 15px;
  font-weight: 600;
  color: var(--g-dark);
}
.pt-card--highlight .pt-price__amount { color: var(--cream); }
.pt-price__note {
  font-size: 12px;
  font-weight: 400;
  color: var(--g-mid);
}
.pt-card--highlight .pt-price__note { color: rgba(240,237,234,0.5); }

.pt-card__btn {
  background: transparent;
  border: 1.5px solid rgba(65,83,71,0.2);
  color: var(--g-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.pt-card__btn:hover {
  background: var(--g-dark);
  color: var(--cream);
  border-color: var(--g-dark);
}
.pt-card__btn--highlight {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--g-dark);
}
.pt-card__btn--highlight:hover {
  background: rgba(240,237,234,0.85);
}

/* PT Benefits */
.pt-benefits {
  background: #fff;
  border: 1.5px solid rgba(65,83,71,0.1);
  border-radius: 8px;
  padding: 36px 40px;
  max-width: 720px;
}
.pt-benefits__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--g-dark);
  margin: 0 0 20px;
}
.pt-benefits__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pt-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--g-dark);
  line-height: 1.5;
}
.pt-benefits__check {
  color: var(--g-mid);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hidden state when filtered */
.kurse-section--hidden { display: none; }
.course-card--hidden { display: none; }
.special-card--hidden { display: none; }
.pt-card--hidden { display: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .course-categories { grid-template-columns: repeat(2, 1fr); }
  .pt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .kurse-filter-bar { top: 56px; }
  .kurse-section { padding: 48px var(--px-sm) 40px; }
  .page-header { padding: 56px var(--px-sm) 48px; }
  .pt-benefits { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .course-categories { grid-template-columns: 1fr 1fr; gap: 8px; }
  .course-category { padding: 16px; }
  .pt-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MINIMAL LAYOUT — Kursdetail
   ═══════════════════════════════════════════════════════════ */

.minimal-layout { background: var(--cream); }

.minimal-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240,237,234,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(65,83,71,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  height: 60px;
  gap: 24px;
}
.minimal-header__back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--g-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.minimal-header__back:hover { opacity: 0.6; }
.minimal-header__logo { flex-shrink: 0; }
.minimal-header__all {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.minimal-header__all:hover { color: var(--g-dark); }

/* ── Kurs Detail — Hero ────────────────────────────────── */
.kd-hero {
  position: relative;
  height: clamp(440px, 58vh, 560px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.kd-hero__img { position: absolute; inset: 0; }
.kd-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.kd-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31,43,39,0.88) 0%, rgba(31,43,39,0.55) 42%, rgba(31,43,39,0.08) 75%);
}
.kd-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) 64px;
  width: 100%;
  max-width: 780px;
}
.kd-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.kd-hero__tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(240,237,234,0.18);
  padding: 6px 16px;
}
.kd-badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.75);
  border: 1px solid rgba(240,237,234,0.25);
  padding: 5px 12px;
}
.kd-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  color: var(--cream);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.kd-hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  color: rgba(240,237,234,0.8);
  margin: 0 0 36px;
}
.kd-hero__stats { display: flex; gap: 56px; }
.kd-stat { display: flex; flex-direction: column; gap: 6px; }
.kd-stat__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(240,237,234,0.5); }
.kd-stat__value { font-size: 16px; font-weight: 500; color: var(--cream); }

/* ── Kurs Detail — Body ────────────────────────────────── */
.kd-body { padding: 80px var(--px) 80px; }
.kd-body__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  max-width: 1248px;
  margin: 0 auto;
}
.kd-text { display: flex; flex-direction: column; gap: 20px; }
.kd-text__lead {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 8px;
}
.kd-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #6a7a74;
}

/* Info grid — Für wen / Was du brauchst */
.kd-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
  margin-top: 8px;
}
.kd-info-col__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 16px;
}
.kd-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.kd-info-row__dash {
  width: 14px;
  height: 1px;
  background: var(--g-dark);
  flex-shrink: 0;
  margin-top: 11px;
}
.kd-info-row span { font-size: 15px; font-weight: 300; color: var(--ink); line-height: 1.6; }

/* Sidebar */
.kd-sidebar {
  position: sticky;
  top: 72px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Highlights block */
.kd-highlights {
  background: var(--g-dark);
  padding: 36px 40px 32px;
}
.kd-highlights__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 24px;
}
.kd-highlights__list { display: flex; flex-direction: column; gap: 14px; }
.kd-highlights__item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(240,237,234,0.8);
  line-height: 1.5;
}
.kd-highlights__dash {
  width: 16px;
  height: 1px;
  background: var(--g-light);
  flex-shrink: 0;
  margin-top: 10px;
}

/* Price block */
.kd-price {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kd-price__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin-bottom: 8px;
}
.kd-price__amount {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.kd-price__note {
  font-size: 13px;
  font-weight: 300;
  color: #9aaaa4;
  line-height: 1.6;
  margin-bottom: 16px;
}
.kd-price__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--g-dark);
  text-decoration: none;
}
.kd-price__link:hover { opacity: 0.7; }

/* CTA box */
.kd-cta-box {
  background: var(--ink);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kd-cta-box__eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g-light);
  margin: 0 0 14px;
}
.kd-cta-box__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin: 0 0 24px;
}
.kd-cta-box__btn {
  width: 100%;
  background: var(--cream);
  color: var(--ink);
  border: none;
  padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 16px;
  transition: opacity 0.2s;
}
.kd-cta-box__btn:hover { opacity: 0.88; }
.kd-cta-box__calendar {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(240,237,234,0.55);
  text-decoration: none;
  text-align: center;
  display: block;
  transition: color 0.2s;
}
.kd-cta-box__calendar:hover { color: var(--cream); }

/* ── Kurs Detail — Ablauf ──────────────────────────────── */
.kd-ablauf {
  background: #e8e4df;
  padding: 80px var(--px);
}
.kd-ablauf .eyebrow-line { margin-bottom: 48px; }
.kd-ablauf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.kd-ablauf-card {
  background: #fff;
  border: 1px solid var(--sand);
  padding: 40px 36px;
}
.kd-ablauf-card__time {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--g-dark);
  margin-bottom: 12px;
}
.kd-ablauf-card__title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.kd-ablauf-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #777;
}

/* ── Kurs Detail — Related ─────────────────────────────── */
.kd-related { background: var(--cream); padding: 80px var(--px); }
.kd-related__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 48px;
}
.kd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kd-related-card {
  text-decoration: none;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.kd-related-card:hover { box-shadow: 0 4px 20px rgba(65,83,71,0.08); }
.kd-related-card__img { height: 200px; overflow: hidden; }
.kd-related-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.kd-related-card:hover .kd-related-card__img img { transform: scale(1.04); }
.kd-related-card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 0; }
.kd-related-card__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-mid);
  background: rgba(65,83,71,0.08);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 0;
}
.kd-related-card__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 16px 0 6px;
}
.kd-related-card__meta { font-size: 12px; color: var(--g-mid); letter-spacing: 0.06em; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .kd-body__inner { grid-template-columns: 1fr 340px; gap: 48px; }
}
@media (max-width: 900px) {
  .kd-body { padding: 48px var(--px-sm) 56px; }
  .kd-body__inner { grid-template-columns: 1fr; gap: 0; }
  .kd-sidebar { position: static; gap: 0; margin-bottom: 48px; }
  .kd-ablauf { padding: 56px var(--px-sm); }
  .kd-ablauf__grid { grid-template-columns: 1fr; gap: 2px; }
  .kd-related { padding: 56px var(--px-sm); }
  .kd-related__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .minimal-header { padding: 0 var(--px-sm); }
  .kd-hero__content { padding: 0 var(--px-sm) 48px; }
  .kd-hero__stats { gap: 28px; flex-wrap: wrap; }
  .kd-info-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .kd-hero { height: 420px; }
  .kd-hero__stats { gap: 20px; }
  .kd-related__grid { grid-template-columns: 1fr; }
  .kd-highlights { padding: 28px 24px; }
  .kd-price { padding: 24px; }
  .kd-cta-box { padding: 28px 24px; }
}

/* ── Homepage: 4 category cards 2×2 ───────────────────── */
.courses-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.courses-grid--2col .course-card:first-child .course-card__content {
  background: var(--g-dark);
}
.courses-grid--2col .course-card:first-child .course-tag { background: rgba(240,237,234,0.12); color: var(--cream); border-color: rgba(240,237,234,0.2); }
.courses-grid--2col .course-card:first-child .course-duration { color: rgba(240,237,234,0.5); }
.courses-grid--2col .course-card:first-child .course-name { color: var(--cream); }
.courses-grid--2col .course-card:first-child .course-desc { color: rgba(240,237,234,0.55); }
.courses-grid--2col .course-card:first-child .course-footer { border-top-color: rgba(240,237,234,0.12); }
.courses-grid--2col .course-card:first-child .course-level { color: rgba(240,237,234,0.4); }
.courses-grid--2col .course-card:first-child .course-book { color: var(--g-light); }
@media (max-width: 700px) {
  .courses-grid--2col { grid-template-columns: 1fr; }
}

/* Kurse page: single-row sections don't stretch cards too wide */
.kurse-section .courses-grid--1col { grid-template-columns: repeat(3, 1fr); }

/* ── Personal Training Page ─────────────────────────────── */
.pt-intro { padding: 80px var(--px) 64px; }
.pt-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pt-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink);
}
.pt-intro__text p { font-size: 15px; line-height: 1.7; color: #666; margin-bottom: 14px; }
.pt-intro__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.pt-pakete { background: var(--bg-courses, #f7f4f1); padding: 80px var(--px) 80px; }
.pt-pakete__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin: 12px 0 48px;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pt-paket {
  background: #fff;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pt-paket--highlight {
  background: var(--g-dark);
  color: var(--cream);
}
.pt-paket__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--g-mid);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.pt-paket__head { margin-bottom: 14px; }
.pt-paket__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g-mid);
  display: block;
  margin-bottom: 8px;
}
.pt-paket--highlight .pt-paket__label { color: rgba(240,237,234,0.5); }
.pt-paket__price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.pt-paket__price span { font-size: 13px; font-family: 'Jost', sans-serif; color: #999; }
.pt-paket--highlight .pt-paket__price { color: var(--cream); }
.pt-paket--highlight .pt-paket__price span { color: rgba(240,237,234,0.5); }
.pt-paket__desc { font-size: 13px; line-height: 1.6; color: #777; margin-bottom: 16px; }
.pt-paket--highlight .pt-paket__desc { color: rgba(240,237,234,0.6); }
.pt-paket__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pt-paket__features li {
  font-size: 12px;
  color: #888;
  padding: 6px 0;
  border-bottom: 1px solid rgba(65,83,71,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pt-paket__features li::before { content: '—'; color: var(--g-mid); flex-shrink: 0; }
.pt-paket--highlight .pt-paket__features li { color: rgba(240,237,234,0.55); border-color: rgba(240,237,234,0.1); }
.pt-paket__cta { width: 100%; }

.pt-anfrage { padding: 80px var(--px); }
.pt-anfrage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pt-anfrage__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin: 12px 0 16px;
}
.pt-anfrage__text p { font-size: 15px; color: #666; line-height: 1.7; }
.pt-form-placeholder {
  background: var(--bg-courses, #f7f4f1);
  padding: 40px;
  text-align: center;
  color: var(--g-mid);
  font-size: 14px;
}

.pt-back { padding: 24px var(--px) 40px; }
.pt-back__link { font-size: 13px; color: var(--g-dark); letter-spacing: 0.04em; }

@media (max-width: 900px) {
  .pt-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-intro__inner,
  .pt-anfrage__inner { grid-template-columns: 1fr; gap: 32px; }
  .pt-intro__img { order: -1; }
}
@media (max-width: 560px) {
  .pt-grid { grid-template-columns: 1fr; }
}
.pt-paket__price-range { font-size: 28px; }

/* ── Kurse header ───────────────────────────────────────── */
.kurse-header {
  background: var(--cream);
  padding: 48px var(--px) 0;
}
.kurse-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.kurse-header__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .kurse-header { padding: 32px var(--px-sm) 0; }
}


/* ── Partner banner ─────────────────────────────────────── */
.partner-banner {
  background: var(--ink);
  padding: 18px var(--px);
}
.partner-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.partner-banner__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,234,0.4);
}
.partner-banner__logos {
  display: flex;
  align-items: center;
  gap: 12px;
}
.partner-banner__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.partner-banner__sep {
  color: rgba(240,237,234,0.25);
  font-size: 16px;
}
@media (max-width: 600px) {
  .partner-banner { padding: 16px var(--px-sm); }
  .partner-banner__inner { gap: 10px; }
}
