/* ============================================================
   BE HEALED – Physiotherapie
   Hauptstylesheet
   Design: Pastell-Rosé, Champagner-Gold, Creme, Anthrazit
   Systemfonts – keine externen Schriftarten
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Farben */
  --color-rose-pale:    #f9eff0;
  --color-rose-light:   #f2d0d4;
  --color-rose:         #e8a8b0;
  --color-rose-deep:    #c97a7a;
  --color-rose-dark:    #a85a5a;

  --color-gold-pale:    #fdf6e8;
  --color-gold-light:   #f5e0b0;
  --color-gold:         #d4a853;
  --color-gold-bronze:  #b8872a;

  --color-cream:        #faf7f4;
  --color-sand:         #f0ebe3;
  --color-beige:        #e8e0d5;

  --color-text:         #2a2520;
  --color-text-soft:    #4a4038;
  --color-text-muted:   #7a6e65;
  --color-text-light:   #a89e95;

  --color-white:        #ffffff;
  --color-dark:         #1e1a17;
  --color-footer-bg:    #2a2520;

  /* Typografie */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-serif: Georgia, "Times New Roman", Times, serif;

  /* Abstände */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Radien */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Schatten */
  --shadow-sm: 0 1px 3px rgba(42,37,32,0.06), 0 1px 2px rgba(42,37,32,0.04);
  --shadow-md: 0 4px 12px rgba(42,37,32,0.08), 0 2px 4px rgba(42,37,32,0.04);
  --shadow-lg: 0 12px 32px rgba(42,37,32,0.10), 0 4px 8px rgba(42,37,32,0.05);
  --shadow-xl: 0 24px 48px rgba(42,37,32,0.12), 0 8px 16px rgba(42,37,32,0.06);

  /* Navigation */
  --nav-height: 72px;

  /* Übergänge */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --transition: 200ms var(--ease-out);
}

/* ── Reset & Basis ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-rose-deep);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-rose-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Typografie ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1em;
  color: var(--color-text-soft);
}

p:last-child {
  margin-bottom: 0;
}

/* ── Layout-Helfer ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

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

/* ── Sections ── */
.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section--alt {
  background-color: var(--color-sand);
}

.section--rose {
  background-color: var(--color-rose-pale);
}

.section--gold {
  background-color: var(--color-gold-pale);
}

.section--dark {
  background-color: var(--color-footer-bg);
  color: rgba(255,255,255,0.85);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-bronze);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bronze));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* ── Scroll-Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 160ms var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,122,122,0.28);
  background-clip: padding-box;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-rose-deep) 0%, var(--color-rose-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(201,122,122,0.38);
  transform: translateY(-1px);
  background-clip: padding-box;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-beige);
}

.btn-secondary:hover {
  background: var(--color-white);
  border-color: var(--color-rose-light);
  color: var(--color-rose-deep);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: var(--color-dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212,168,83,0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bronze) 100%);
  color: var(--color-dark);
  box-shadow: 0 6px 20px rgba(212,168,83,0.35);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.83rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0.9rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1160px, calc(100% - 2rem));
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(232, 224, 213, 0.85);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 36px rgba(42,37,32,0.10);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), top var(--transition);
}

.nav.scrolled {
  top: 0.6rem;
  border-color: rgba(212,168,83,0.32);
  box-shadow: 0 16px 44px rgba(42,37,32,0.14);
  background: rgba(255, 255, 255, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0.65rem 0 1.15rem;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav__inner {
    padding: 0 2.5rem;
  }
}

.nav__logo img {
  height: 60px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  display: inline-block;
  padding: 0.48rem 0.82rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-text-soft);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-rose-dark);
  background: rgba(249,239,240,0.95);
  box-shadow: inset 0 0 0 1px rgba(232,168,176,0.35);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__dropdown-arrow {
  font-size: 0.8rem;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.75;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 0.6rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(232,224,213,0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(42,37,32,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a:focus-visible {
  background: var(--color-rose-pale);
  color: var(--color-rose-dark);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.nav__hamburger:hover {
  background: var(--color-rose-pale);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform 250ms var(--ease-out), opacity 200ms;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 900px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 280ms var(--ease-out);
    border-top: 1px solid var(--color-beige);
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.05rem;
    padding: 0.75rem 0.5rem;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid var(--color-sand);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .nav {
    top: 0;
    width: 100%;
    height: var(--nav-height);
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    transform: none;
    left: 0;
    right: 0;
  }

  .nav.scrolled {
    top: 0;
  }

  .nav__inner {
    padding: 0 1rem;
  }

  .nav__menu {
    top: var(--nav-height);
  }
}

@media (max-width: 900px) {
  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
  }

  .nav__dropdown-arrow {
    display: none;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0.25rem 0 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    transform: none;
  }

  .nav__dropdown-menu a {
    padding: 0.6rem 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-sand);
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero:hover .hero__bg {
  transform: scale(1.0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(30, 26, 23, 0.62) 0%,
      rgba(30, 26, 23, 0.58) 42%,
      rgba(30, 26, 23, 0.50) 72%,
      rgba(30, 26, 23, 0.46) 100%
    ),
    radial-gradient(
      circle at 42% 48%,
      rgba(30, 26, 23, 0.18) 0%,
      rgba(30, 26, 23, 0.10) 38%,
      transparent 70%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) 1.25rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__content {
    padding: var(--space-2xl) 2.5rem;
    max-width: 720px;
    margin: 0 auto 0 auto;
  }
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(212,168,83,0.25);
  border: 1px solid rgba(212,168,83,0.45);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 18px rgba(0,0,0,0.42);
}

.hero__title em {
  font-style: normal;
  color: var(--color-rose-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0,0,0,0.38);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 118px;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}

.hero__trust-item strong {
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--color-white);
  line-height: 1.25;
}

.hero__trust-item span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero__trust {
    gap: 0.65rem;
  }

  .hero__trust-item {
    min-width: calc(50% - 0.35rem);
    padding: 0.7rem 0.8rem;
  }
}

.hero__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.hero__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

/* ── Praxis ── */
.praxis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .praxis-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.praxis__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.praxis__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.praxis__image:hover img {
  transform: scale(1.03);
}

.praxis__image--portrait {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.praxis__image--portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  background: transparent;
  border-radius: 0;
}

.praxis__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.praxis__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-rose-pale);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-rose-light);
}

.praxis__feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-light), var(--color-gold-light));
  border: 2px solid var(--color-white);
  box-shadow: 0 6px 14px rgba(42,37,32,0.10);
  position: relative;
}

.praxis__feature-icon::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

.praxis__feature-icon--clinic::after {
  content: "RE";
}

.praxis__feature-icon--care::after {
  content: "KP";
}

.praxis__feature-icon--parking::after {
  content: "P";
}

.praxis__feature-icon--home::after {
  content: "HB";
}

.praxis__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.praxis__feature-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}

.praxis__feature-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.praxis__image-mobile {
  display: none;
}

@media (max-width: 767px) {
  .praxis__image-desktop {
    display: none;
  }

  .praxis__image-mobile {
    display: block;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  .praxis__image-mobile img {
    height: auto;
    max-height: 360px;
    object-fit: cover;
  }
}

/* ── Leistungen ── */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .leistungen-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .leistungen-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .leistung-card {
    grid-column: span 2;
  }

  .leistungen-grid .leistung-card:nth-child(7) {
    grid-column: 2 / span 2;
  }

  .leistungen-grid .leistung-card:nth-child(8) {
    grid-column: 4 / span 2;
  }
}

.leistung-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,224,213,0.95);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.leistung-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,168,176,0.75);
}

.leistung-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-rose-pale);
}

.leistung-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42,37,32,0.02) 0%,
    rgba(42,37,32,0.14) 100%
  );
  pointer-events: none;
}

.leistung-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.leistung-card:hover .leistung-card__media img {
  transform: scale(1.045);
}

.leistung-card__body {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.leistung-card__icon {
  display: none;
}

.leistung-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-bronze);
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.leistung-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.leistung-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

.leistung-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-rose-deep);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: auto;
}

.leistung-card__link:hover {
  color: var(--color-rose-dark);
}

/* ── Spezialgebiete ── */
.spezial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .spezial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .spezial-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spezial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-rose-light);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spezial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spezial-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-rose-light);
  line-height: 1;
  letter-spacing: -0.04em;
}

.spezial-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.spezial-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

.spezial-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-rose-deep);
  text-decoration: none;
  transition: color var(--transition);
}

.spezial-card__link:hover {
  color: var(--color-rose-dark);
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-beige);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .team-card {
    flex-direction: row;
  }
}

.team-card__image {
  flex-shrink: 0;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .team-card__image {
    width: 200px;
    height: auto;
  }
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms var(--ease-out);
}

.team-card:hover .team-card__image img {
  transform: scale(1.04);
}

.team-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-bronze);
  margin-bottom: 0;
}

.team-card__name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.team-card__bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--color-rose-pale);
  color: var(--color-rose-deep);
  border: 1px solid var(--color-rose-light);
  border-radius: var(--radius-full);
}

.tag--gold {
  background: var(--color-gold-pale);
  color: var(--color-gold-bronze);
  border-color: var(--color-gold-light);
}

/* ── Galerie ── */
.galerie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .galerie-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.galerie-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.galerie-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.galerie-item:hover img {
  transform: scale(1.05);
}

/* ── Orte ── */
.orte-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--space-lg);
}

.orte-link {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-gold-bronze);
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition);
}

.orte-link:hover {
  background: var(--color-gold-light);
  color: var(--color-dark);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--color-rose-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-rose-deep);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-rose-pale);
  color: var(--color-rose-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0;
  transition: transform 250ms var(--ease-out), background var(--transition);
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: var(--radius-full);
}

.faq-question__icon::after {
  transform: rotate(90deg);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--color-rose-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-out);
}

.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Kontakt ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kontakt-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.kontakt-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rose-pale);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-rose-light);
}

.kontakt-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.kontakt-item__content strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.kontakt-item__content a,
.kontakt-item__content address {
  font-size: 0.95rem;
  color: var(--color-text);
}

.oeffnungszeiten {
  background: var(--color-rose-pale);
  border: 1px solid var(--color-rose-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.oeffnungszeiten h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.oeffnungszeiten-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-rose-light);
  color: var(--color-text-soft);
}

.oeffnungszeiten-row:last-of-type {
  border-bottom: none;
}

/* ── Formular ── */
.form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-beige);
}

.form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-soft);
  margin-bottom: 0.4rem;
}

.required {
  color: var(--color-rose-deep);
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  border: 1.5px solid var(--color-beige);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(232,168,176,0.2);
  background: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--color-rose-deep);
  cursor: pointer;
}

.form-check span {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid #a8d8b8;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: #3a7a5a;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* ── Floating Buttons ── */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
  box-shadow: 0 12px 28px rgba(42,37,32,0.20);
  border: 3px solid rgba(255,255,255,0.92);
  outline: 1px solid rgba(42,37,32,0.10);
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 38px rgba(42,37,32,0.26);
  border-color: var(--color-white);
}

.floating-btn:active {
  transform: scale(0.96);
}

.floating-call {
  background: linear-gradient(135deg, var(--color-rose-deep) 0%, var(--color-rose-dark) 100%);
  color: var(--color-white);
}

.floating-mail {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-bronze) 100%);
  color: var(--color-dark);
}

.floating-btn svg {
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.16));
}

@media (min-width: 768px) {
  .floating-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 640px) {
  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-btn {
    width: 54px;
    height: 54px;
  }
}

/* ── Footer ── */
.footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer__address a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__address a:hover {
  color: var(--color-rose-light);
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-rose-light);
}

/* Social */
.footer__social {
  margin-top: 1.35rem;
}

.footer__heading--social {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.footer__social-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.footer__social-link svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--color-rose-light);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── Footer Mobile ── */
@media (max-width: 639px) {
  .footer {
    text-align: center;
  }

  .footer__grid {
    justify-items: center;
    gap: 2rem;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__brand p,
  .footer__address {
    text-align: center;
  }

  .footer__heading {
    text-align: center;
    margin-bottom: 0.85rem;
  }

  .footer__links {
    align-items: center;
  }

  .footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
  }

  .footer__social-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__bottom {
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer__bottom > span {
    max-width: 320px;
  }

  #current-year {
    display: inline;
  }
}

/* ── Unterseiten: Breadcrumb & Page-Hero ── */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--color-rose-pale) 0%, var(--color-cream) 60%, var(--color-gold-pale) 100%);
  border-bottom: 1px solid var(--color-beige);
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-rose-deep);
}

.breadcrumb-sep {
  color: var(--color-text-light);
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-bronze);
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  max-width: 700px;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.65;
}

/* ── Infobox ── */
.infobox {
  background: var(--color-rose-pale);
  border: 1px solid var(--color-rose-light);
  border-left: 4px solid var(--color-rose);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: var(--space-lg) 0;
}

.infobox--gold {
  background: var(--color-gold-pale);
  border-color: var(--color-gold-light);
  border-left-color: var(--color-gold);
}

.infobox p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

/* ── CTA-Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-rose-pale) 0%, var(--color-gold-pale) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border: 1px solid var(--color-rose-light);
  box-shadow: var(--shadow-md);
}

.cta-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.cta-banner p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Leistungs-Detail-Grid ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-beige);
  box-shadow: var(--shadow-sm);
}

.detail-card h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-card ul li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.detail-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-rose);
  font-size: 0.8rem;
}

/* ── Ortsseite ── */
.ort-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .ort-intro {
    grid-template-columns: 1.5fr 1fr;
  }
}

.ort-leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .ort-leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ort-leistung-item {
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-soft);
  text-decoration: none;
  transition: all var(--transition);
}

.ort-leistung-item:hover {
  border-color: var(--color-rose-light);
  background: var(--color-rose-pale);
  color: var(--color-rose-deep);
  transform: translateY(-2px);
}

/* ── Impressum / Datenschutz ── */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Utilities ── */
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

/* ── Responsive Anpassungen ── */
@media (max-width: 640px) {
  .section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .praxis__features {
    grid-template-columns: 1fr;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .galerie-item--tall {
    grid-row: span 1;
  }

  .form {
    padding: 1.5rem;
  }

  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ── Print ── */
@media print {
  .nav, .floating-buttons, .hero__actions, .btn, .cta-banner { display: none; }
  .hero { min-height: auto; }
}

.text-center.reveal + .leistungen-grid,
.text-center.reveal + .team-grid,
.text-center.reveal + .galerie-grid,
.text-center.reveal + .faq-list,
.text-center.reveal + .kontakt-grid,
.text-center.reveal + .detail-grid,
.text-center.reveal + .spezial-grid,
.text-center.reveal + .orte-grid,
.text-center.reveal + .ort-leistungen-grid {
  margin-top: 3rem;
}

/* ── Mobile Navigation Fix ── */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    transform: none;
    width: 100%;
    height: var(--nav-height);
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    z-index: 1000;
    overflow: visible;
  }

  .nav.scrolled {
    top: 0;
  }

  .nav__inner {
    height: var(--nav-height);
    padding: 0 1rem;
  }

  .nav__hamburger {
    display: flex;
    z-index: 1002;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
    overflow-y: auto;
    overscroll-behavior: contain;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 1.25rem 1.25rem 2rem;
    background: var(--color-cream);
    border-top: 1px solid var(--color-beige);
    box-shadow: 0 18px 40px rgba(42,37,32,0.14);

    transform: translateX(100%);
    transition: transform 280ms var(--ease-out);
    z-index: 1001;
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__menu > li {
    width: 100%;
  }

  .nav__link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.25rem;
    font-size: 1.05rem;
    border-radius: 0;
    border-bottom: 1px solid var(--color-sand);
  }

  .nav__cta {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Dropdown im mobilen Menü dauerhaft sichtbar */
  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    width: 100%;
  }

  .nav__dropdown-arrow {
    display: none;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    padding: 0.35rem 0 0.65rem 1rem;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    transform: none;
  }

  .nav__dropdown-menu a {
    display: block;
    padding: 0.65rem 0.25rem;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-sand);
    border-radius: 0;
  }

  .nav__dropdown-menu a:hover,
  .nav__dropdown-menu a:focus-visible {
    background: transparent;
    color: var(--color-rose-dark);
  }
}

.region-text {
  max-width: 680px;
}

.kontakt-item__content address {
  font-style: normal;
}

.oeffnungszeiten-hinweis {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

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

.optional {
  color: var(--color-text-muted);
  font-weight: 400;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-hinweis {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
  text-align: center;
}

/* Rechtstexte nie per Scroll-Reveal ausblenden */
.legal-content.reveal {
  opacity: 1;
  transform: none;
}

/* Mobiles Menü: aktive Links ohne Fläche und ohne farbige Umrandung */
@media (max-width: 900px) {
  .nav__link,
  .nav__link:hover,
  .nav__link.active,
  .nav__link:focus,
  .nav__link:focus-visible {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    outline: none;
  }

  .nav__link.active {
    color: var(--color-rose-deep);
  }

  .nav__link:hover {
    color: var(--color-rose-deep);
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  display: none;
  background: #fff3f3;
  border: 1px solid #d8a8a8;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: #8a3a3a;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}