/* ============================================================
   MD PHYSIO – Design System
   Farben: Navy #1f415a + Blau #437695 + Amber #a96515 + Grau #626161
   ============================================================ */

:root {
  --black:       #0b1820;
  --black-soft:  #132030;
  --black-card:  #162636;
  --white:       #ffffff;
  --beige:       #e7e3dd;
  --navy:        #1f415a;
  --teal:        #437695;
  --teal-dark:   #2d6080;
  --coral:       #a96515;
  --coral-dark:  #8a5210;
  --text-muted:  #888888;
  --border:      rgba(255,255,255,0.08);

  --font-display: 'DM Serif Display', serif;
  --font-body:    'Inter', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;

  --section-py: clamp(80px, 10vw, 140px);
  --container:  1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--beige);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section {
  padding: var(--section-py) 0;
}

.section__header {
  max-width: 560px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover { background: var(--teal-dark); }

.btn--cta {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}
.btn--cta:hover { background: var(--teal-dark); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn--outline:hover { background: var(--teal); color: var(--white); }

.btn--large { padding: 18px 40px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: visible;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.88) 0%,
    rgba(14,14,14,0.55) 45%,
    rgba(14,14,14,0.18) 75%,
    rgba(14,14,14,0) 100%
  );
  transition: background var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 99px;
  gap: 40px;
}

.nav__logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 101;
  margin-bottom: -22px;
}

.nav__logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}

.nav__links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.nav__links a:hover { opacity: 1; color: var(--white); }

.nav__cta {
  flex-shrink: 0;
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 30px;
  font-weight: 600;
}
.nav__cta:hover { background: var(--coral-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: max(600px, 56.25vw);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,14,14,0.95) 0%,
    rgba(14,14,14,0.80) 28%,
    rgba(14,14,14,0.50) 45%,
    rgba(14,14,14,0.15) 65%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 46vw;
  min-width: 340px;
  padding: clamp(120px, 12vw, 160px) clamp(40px, 5vw, 72px) clamp(80px, 8vw, 120px);
}

.hero__content .eyebrow { color: var(--teal); }

.hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero__content h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--beige);
  max-width: 460px;
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.usp-bar__inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.75;
}
.usp-bar__item svg { color: var(--teal); flex-shrink: 0; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  background: #222;
}

/* Blau – Aquafitness */
.service-card--accent { border-color: rgba(67,118,149,0.25); }
.service-card--accent:hover { border-color: var(--teal); }
.service-card--accent .service-card__icon { color: var(--teal); }
.service-card--accent .service-card__link { color: var(--teal); }

/* Amber – Training, Rehasport */
.service-card--coral { border-color: rgba(169,101,21,0.25); }
.service-card--coral:hover { border-color: var(--coral); }
.service-card--coral .service-card__icon { color: var(--coral); }
.service-card--coral .service-card__link { color: var(--coral); }

/* Navy – Physio-Leistungen */
.service-card--navy { border-color: rgba(31,65,90,0.5); }
.service-card--navy:hover { border-color: var(--navy); background: #1a2e3e; }
.service-card--navy .service-card__icon { color: var(--teal); }
.service-card--navy .service-card__link { color: var(--teal); }

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: gap var(--transition);
}

/* ============================================================
   SPLIT SECTION (Bewegungsbad)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-section__media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-section:hover .split-section__media img { transform: scale(1.03); }

.split-section__content {
  background: var(--black-soft);
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.split-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.split-section__content p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--beige);
}

.check-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   ÖFFNUNGSZEITEN
   ============================================================ */
.hours {
  background: #1e3a52;
  padding: clamp(28px, 3vw, 40px) 0;
}

.hours__inner {
  padding: 0 clamp(16px, 3vw, 40px);
  display: flex;
  justify-content: center;
}

.hours__centered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.hours__header {
  margin-bottom: clamp(16px, 2vw, 24px);
  text-align: left;
}

.hours__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.hours__grid {
  display: inline-flex;
  gap: 2px;
}

.hours__day {
  background: transparent;
  border-top: 3px solid rgba(255, 255, 255, 0.35);
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), background var(--transition);
}

.hours__day:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.04);
}

.hours__day--friday { border-color: rgba(255,255,255,0.5); }

.hours__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0.95;
  text-align: left;
}

.hours__slots {
  display: flex;
  flex-direction: row;
  gap: 6px;
  flex-wrap: wrap;
}

.hours__block {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 4px 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hours__block span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
}

@media (max-width: 768px) {
  .hours__inner { overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
  .hours__grid { flex-wrap: nowrap; min-width: max-content; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  grid-template-columns: 45% 55%;
  background: #0a1825;
}

.faq__left {
  padding: clamp(64px, 8vw, 100px) clamp(40px, 5vw, 72px) clamp(64px, 8vw, 100px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq__header { }

.faq__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-top: 10px;
}

.faq__media {
  width: 60%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.faq__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.faq__right {
  padding: clamp(64px, 8vw, 100px) clamp(40px, 5vw, 72px) clamp(64px, 8vw, 100px) 0;
  display: flex;
  align-items: center;
}

.faq__list {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.faq__question:hover { opacity: 1; color: var(--teal); }
.faq__question[aria-expanded="true"] { color: var(--teal); opacity: 1; }

.faq__icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--teal);
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq__answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.faq__answer p:last-child { margin-bottom: 0; }

.faq__answer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 6px 0 10px;
}

.faq__answer ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.faq__answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

@media (max-width: 768px) {
  .faq { grid-template-columns: 1fr; margin-top: 40px; }
  .faq__media { width: 80%; }
  .faq__right { padding-left: clamp(40px, 5vw, 72px); }
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.team-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.team-card:hover { transform: translateY(-4px); border-color: rgba(67,118,149,0.4); }

.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #2a2a2a;
  position: relative;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%);
  transition: filter var(--transition), transform var(--transition);
}
.team-card:hover .team-card__photo img { filter: grayscale(0); transform: scale(1.04); }

.team-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e2e3a;
  color: var(--teal);
}

.team-card__info {
  padding: 24px;
}

.team-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card__title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.team-card__info p:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.team-teaser__cta {
  text-align: center;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0d2337 0%, #0e0e0e 100%);
  border-top: 1px solid rgba(67,118,149,0.2);
  border-bottom: 1px solid rgba(67,118,149,0.2);
  padding: clamp(60px, 8vw, 100px) 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================================
   CONTACT PREVIEW
   ============================================================ */
.contact-preview { background: var(--black-soft); }

.contact-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-preview__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.contact-item a:hover { color: var(--teal); }

.opening-hours {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.opening-hours h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.opening-hours table { width: 100%; border-collapse: collapse; }
.opening-hours td {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.opening-hours td:first-child {
  color: var(--text-muted);
  width: 100px;
}
.opening-hours td:last-child { color: var(--beige); }

.map-placeholder {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: clamp(60px, 8vw, 100px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__brand .nav__logo-link { margin-bottom: 16px; }
.footer__brand .nav__logo-img { height: 110px; }

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer__nav h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer__nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: #444;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Footer-Logo nicht als Überhang */
.footer__brand .nav__logo-link { margin-bottom: 0; align-self: auto; }
.footer__brand .nav__logo-img  { height: 110px; filter: none; }

/* Aquafitness Nav-Highlight */
.nav__link--aqua {
  border: 1px solid var(--teal);
  border-radius: 20px;
  padding: 3px 12px !important;
  color: var(--white) !important;
  opacity: 1 !important;
}
.nav__link--aqua:hover { background: rgba(67,118,149,0.15); }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section__media { min-height: 300px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-preview__inner { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .usp-bar__inner { gap: 20px; }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 2.6rem; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   BURGER ANIMATION
   ============================================================ */
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   MOBILE NAV OVERLAY + HERO RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav { height: 72px; }
  .nav__logo-img { height: 62px; }
  .nav__burger { position: relative; z-index: 102; }
  .nav__logo-link { margin-bottom: 0 !important; align-items: center; }

  .nav__links.nav__links--open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .nav__links.nav__links--open a {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    opacity: 1;
  }
  .nav__links.nav__links--open + .nav__cta {
    display: flex;
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    white-space: nowrap;
  }

  /* Hero content – volle Breite */
  .hero__content,
  .page-hero__inner,
  .page-hero__content,
  .training-hero__content {
    width: 100% !important;
    min-width: unset !important;
    padding: 100px 24px 56px !important;
  }
  /* Overlay – Verlauf von oben nach unten statt links-rechts */
  .hero__overlay,
  .page-hero__overlay,
  .training-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(11,24,32,0.72) 0%,
      rgba(11,24,32,0.90) 100%
    ) !important;
  }
  .hero { min-height: 90svh; }
  .page-hero,
  .training-hero { min-height: 68svh; }
}

@media (max-width: 480px) {
  .hero__content h1,
  .page-hero__inner h1,
  .page-hero__content h1,
  .training-hero__content h1 { font-size: 2.4rem !important; }
}
