/* ============================================================
   HEILPRAXIS EDELWEISS – Tatiana Timaeva, Bad Homburg
   Zentrale Stylesheet-Datei
   ============================================================ */

/* ── Design-Tokens ─────────────────────────────────────────── */
:root {
  --c-petrol:       #1a5f6a;
  --c-petrol-dark:  #134a54;
  --c-petrol-light: #e8f4f6;
  --c-teal:         #2d8a96;
  --c-teal-light:   #c8e8ec;
  --c-ivory:        #f8f5f0;
  --c-ivory-dark:   #f0ebe3;
  --c-lilac:        #8b7ba8;
  --c-lilac-light:  #f0ecf7;
  --c-white:        #ffffff;
  --c-text:         #2c2c2c;
  --c-text-muted:   #5a5a5a;
  --c-text-light:   #888888;
  --c-border:       #e0dbd4;
  --c-border-light: #ede9e2;
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  2.75rem;
  --fs-5xl:  3.5rem;
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;
  --r-2xl: 32px;
  --r-full: 9999px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --transition: 0.22s ease;
  --max-w: 1200px;
  --max-w-text: 720px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::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-base); font-size: var(--fs-base); line-height: 1.7; color: var(--c-text); background-color: var(--c-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-petrol); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-petrol-dark); }
ul, ol { list-style: none; }

/* ── Typografie ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-base); font-weight: 600; line-height: 1.25; color: var(--c-text); letter-spacing: -0.02em; }
h1 { font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
p { color: var(--c-text-muted); line-height: 1.75; }
.lead { font-size: var(--fs-md); line-height: 1.7; color: var(--c-text-muted); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow { max-width: var(--max-w-text); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-24) 0; }
.section--sm { padding: var(--sp-16) 0; }
.section--lg { padding: var(--sp-32) 0; }
/* Anker-Scroll-Offset für fixen Header */
[id] { scroll-margin-top: 78px; }
.bg-ivory { background-color: var(--c-ivory); }
.bg-ivory-dark { background-color: var(--c-ivory-dark); }
.bg-petrol-light { background-color: var(--c-petrol-light); }
.bg-white { background-color: var(--c-white); }
.text-center { text-align: center; }

/* ── Section-Header ─────────────────────────────────────────── */
.section-header { margin-bottom: var(--sp-12); }
.section-header--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: var(--sp-12); }
.section-label { display: inline-block; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-teal); margin-bottom: var(--sp-3); }
.section-title { font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl)); color: var(--c-text); margin-bottom: var(--sp-4); }
.section-intro { font-size: var(--fs-md); color: var(--c-text-muted); line-height: 1.7; max-width: 620px; }
.section-header--center .section-intro { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-base); font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.02em;
  padding: var(--sp-3) var(--sp-8); border-radius: var(--r-full); border: 2px solid transparent;
  cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background-color: var(--c-petrol); color: var(--c-white); border-color: var(--c-petrol); }
.btn--primary:hover { background-color: var(--c-petrol-dark); border-color: var(--c-petrol-dark); color: var(--c-white); box-shadow: 0 4px 16px rgba(26,95,106,.3); }
.btn--outline { background-color: transparent; color: var(--c-petrol); border-color: var(--c-petrol); }
.btn--outline:hover { background-color: var(--c-petrol); color: var(--c-white); }
.btn--outline-white { background-color: rgba(255,255,255,.16); color: var(--c-white); border-color: rgba(255,255,255,.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn--outline-white:hover { background-color: var(--c-white); color: var(--c-petrol); border-color: var(--c-white); }
.btn--white { background-color: var(--c-white); color: var(--c-petrol); border-color: var(--c-white); }
.btn--white:hover { background-color: var(--c-petrol-light); color: var(--c-petrol-dark); }
.btn--secondary { background-color: var(--c-white); color: var(--c-petrol); border-color: var(--c-teal-light); box-shadow: var(--shadow-xs); }
.btn--secondary:hover { background-color: var(--c-petrol-light); color: var(--c-petrol-dark); border-color: var(--c-petrol); box-shadow: 0 4px 16px rgba(26,95,106,.16); }
.btn--lg { font-size: var(--fs-base); padding: var(--sp-4) var(--sp-10); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background-color: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
}
.header-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; max-width: min(300px, 30vw); margin-right: var(--sp-6); }
.header-logo__image { width: 100%; max-width: 300px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: var(--sp-1); margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: block; padding: var(--sp-2) var(--sp-4); font-size: var(--fs-sm); font-weight: 500;
  color: var(--c-text); border-radius: var(--r-full);
  transition: background var(--transition), color var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--c-petrol); background-color: var(--c-petrol-light); }
.nav-link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.nav-link--has-dropdown::after {
  content: "";
  width: .42rem;
  height: .42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-item--dropdown:hover .nav-link--has-dropdown::after { transform: rotate(225deg) translateY(-1px); }
.nav-item--dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px; background-color: var(--c-white);
  border: 1px solid var(--c-border-light); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: var(--sp-2);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown a {
  display: block; padding: var(--sp-3) var(--sp-4); font-size: var(--fs-sm);
  color: var(--c-text); border-radius: var(--r-lg);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background-color: var(--c-petrol-light); color: var(--c-petrol); }
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--sp-8);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-full);
  background-color: var(--c-petrol);
  color: var(--c-white);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,95,106,.22);
  animation: headerContactPulse 2.6s ease-in-out infinite;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.header-contact-btn:hover { background-color: var(--c-petrol-dark); color: var(--c-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,95,106,.32); }
@keyframes headerContactPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(26,95,106,.22), 0 0 0 0 rgba(26,95,106,.22); }
  50% { box-shadow: 0 4px 16px rgba(26,95,106,.22), 0 0 0 9px rgba(26,95,106,0); }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 8px;
  border-radius: var(--r-full);
}
.nav-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--c-text);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background-color: var(--c-white); overflow-y: auto; padding: var(--sp-6);
  z-index: 999; border-top: 1px solid var(--c-border-light);
}
.mobile-nav.open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  background-color: var(--c-ivory);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
}
.mobile-nav__link:hover { color: var(--c-petrol); background-color: var(--c-petrol-light); border-color: var(--c-teal-light); }
.mobile-nav__sub { padding-left: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-1); margin-top: var(--sp-2); }
.mobile-nav__sub a { display: block; padding: var(--sp-3) var(--sp-4); font-size: var(--fs-sm); color: var(--c-text-muted); border-radius: var(--r-lg); }
.mobile-nav__sub a:hover { color: var(--c-petrol); background-color: var(--c-petrol-light); }
.mobile-nav__contact { margin-top: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid var(--c-border-light); display: flex; justify-content: center; }
.mobile-nav__cta { justify-content: center; min-width: 190px; text-align: center; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 72px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-image: url('../images/hero.webp'); background-size: cover; background-position: center 30%; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(19,74,84,.85) 0%, rgba(26,95,106,.68) 45%, rgba(26,95,106,.22) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: var(--sp-32) var(--sp-6) var(--sp-24);
}
.hero__inner { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: var(--sp-5);
}
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background-color: rgba(255,255,255,.45); }
.hero__eyebrow,
.hero__title,
.hero__lead { text-shadow: 0 2px 12px rgba(0, 35, 42, .46), 0 1px 2px rgba(0, 35, 42, .32); }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; color: var(--c-white); line-height: 1.15; margin-bottom: var(--sp-6); letter-spacing: -0.03em; }
.hero__title em { font-style: normal; color: rgba(255,255,255,.78); font-weight: 400; }
.hero__lead { font-size: clamp(var(--fs-base), 1.8vw, var(--fs-md)); color: rgba(255,255,255,.9); line-height: 1.7; margin-bottom: var(--sp-10); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
/* ── ANSATZ ─────────────────────────────────────────────────── */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.approach-text p { margin-bottom: var(--sp-5); }
.approach-text p:last-of-type { margin-bottom: var(--sp-8); }
.approach-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-top: var(--sp-8); }
.approach-pillar { display: flex; align-items: flex-start; gap: var(--sp-3); padding: var(--sp-4); background-color: var(--c-petrol-light); border: 1px solid var(--c-petrol); border-radius: var(--r-lg); }
.approach-pillar__icon {
  width: 36px; height: 36px; background-color: var(--c-petrol); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--c-white); font-size: var(--fs-sm); font-weight: 700;
}
.approach-pillar__text { font-size: var(--fs-sm); font-weight: 600; color: var(--c-text); line-height: 1.4; }
.approach-image-wrap { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.approach-image-wrap img { width: 100%; height: 520px; object-fit: cover; }
.approach-image-badge {
  position: absolute; bottom: var(--sp-6); left: var(--sp-6);
  background-color: var(--c-white); border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-md);
}
.approach-image-badge__num { font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl)); font-weight: 700; color: var(--c-petrol); line-height: 1.15; white-space: nowrap; }
.approach-image-badge__text { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: var(--sp-1); max-width: 220px; line-height: 1.45; }

/* ── LEISTUNGSWELTEN ────────────────────────────────────────── */
.worlds-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-5); }
.world-card {
  grid-column: span 2;
  background-color: var(--c-white); border: 1px solid var(--c-border-light); border-radius: var(--r-xl); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.world-card:nth-child(4), .world-card:nth-child(5) { grid-column: span 2; }
.world-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-teal-light); }
.world-card__image { width: 100%; height: 200px; overflow: hidden; flex-shrink: 0; }
.world-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.world-card:hover .world-card__image img { transform: scale(1.04); }
.world-card__body { padding: var(--sp-6) var(--sp-8) var(--sp-8); display: flex; flex-direction: column; flex: 1; }
.world-card__title { font-size: var(--fs-lg); font-weight: 600; color: var(--c-text); margin-bottom: var(--sp-3); line-height: 1.3; }
.world-card__text { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.65; margin-bottom: var(--sp-6); flex: 1; }
.world-card__link { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); font-weight: 600; color: var(--c-petrol); transition: gap var(--transition); margin-top: auto; }
.world-card__link:hover { gap: var(--sp-3); color: var(--c-petrol-dark); }
.world-card__link::after { content: '→'; }

/* ── LEISTUNGEN (Bild-Text-Wechsel) ─────────────────────────── */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; padding: var(--sp-12) 0; border-bottom: 1px solid var(--c-border-light); }
.service-row:last-child { border-bottom: none; }
.service-row--reverse .service-row__image { order: 2; }
.service-row--reverse .service-row__text { order: 1; }
.service-row__image { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.service-row__image img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.4s ease; }
.service-row__image:hover img { transform: scale(1.02); }
.service-row__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-teal); margin-bottom: var(--sp-3); }
.service-row__title { font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-2xl)); margin-bottom: var(--sp-4); }
.service-row__text { color: var(--c-text-muted); line-height: 1.75; margin-bottom: var(--sp-6); }
.service-row__list { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.service-row__list li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); color: var(--c-text-muted); }
.service-row__list li::before { content: ''; display: block; width: 6px; height: 6px; background-color: var(--c-teal); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }

/* ── ÜBER MICH ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: var(--sp-16); align-items: start; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); object-fit: cover; }
.about-image-badge {
  position: absolute; bottom: var(--sp-5); right: calc(-1 * var(--sp-5));
  background-color: var(--c-petrol); color: var(--c-white);
  border-radius: var(--r-xl); padding: var(--sp-5) var(--sp-6); box-shadow: var(--shadow-md);
}
.about-image-badge__title { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-white); opacity: 1; margin-bottom: var(--sp-1); }
.about-image-badge__name { font-size: var(--fs-base); font-weight: 700; color: var(--c-white); }
.about-image-badge__role { font-size: var(--fs-xs); color: var(--c-white); opacity: .85; margin-top: var(--sp-1); }
.about-content p { margin-bottom: var(--sp-5); }
.about-credentials { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-8); }
.credential-tag {
  display: inline-block; padding: var(--sp-2) var(--sp-4);
  background-color: var(--c-petrol-light); color: var(--c-petrol);
  font-size: var(--fs-xs); font-weight: 600; border-radius: var(--r-full); border: 1px solid var(--c-teal-light);
}

/* ── ABLAUF ─────────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 27px;
  left: calc(10% + 28px); right: calc(10% + 28px);
  height: 1px; background: linear-gradient(to right, var(--c-teal-light), var(--c-teal), var(--c-teal-light)); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 var(--sp-2); }
.process-step__num {
  width: 54px; height: 54px; background-color: var(--c-white); border: 2px solid var(--c-teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-base); font-weight: 700; color: var(--c-petrol);
  margin: 0 auto var(--sp-5); transition: background var(--transition), color var(--transition);
}
.process-step:hover .process-step__num { background-color: var(--c-petrol); color: var(--c-white); border-color: var(--c-petrol); }
.process-step__title { font-size: var(--fs-sm); font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-2); }
.process-step__text { font-size: var(--fs-xs); color: var(--c-text-muted); line-height: 1.6; }

/* ── KONTAKT ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--sp-16); align-items: start; }
.contact-info > p { margin-bottom: var(--sp-8); }
.contact-details { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-item { display: flex; align-items: flex-start; gap: var(--sp-4); }
.contact-item--booking { margin-bottom: var(--sp-6); }
.contact-item__icon { width: 44px; height: 44px; background-color: var(--c-petrol-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-petrol); font-size: var(--fs-md); }

.contact-item__svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.contact-item__icon--whatsapp { color: var(--c-petrol); }
.contact-item__label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-light); margin-bottom: var(--sp-1); }
.contact-item__value { font-size: var(--fs-base); color: var(--c-text); font-weight: 500; }
.contact-item__value a { color: var(--c-text); }
.contact-item__value a:hover { color: var(--c-petrol); }
.contact-item__action {
  display: inline-flex;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-petrol);
  border-bottom: 1px solid currentColor;
}
.contact-item__action:hover { color: var(--c-petrol-dark); }
.contact-form { background-color: var(--c-white); border: 1px solid var(--c-border-light); border-radius: var(--r-2xl); padding: var(--sp-10); box-shadow: var(--shadow-sm); }
.contact-form__title { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.contact-form__subtitle { font-size: var(--fs-sm); color: var(--c-text-muted); margin-bottom: var(--sp-8); }
.form-alert { margin-bottom: var(--sp-6); padding: var(--sp-4); border-radius: var(--r-md); font-size: var(--fs-sm); line-height: 1.55; }
.form-alert--error { color: #7a1f1f; background: #fff1f1; border: 1px solid #f0c7c7; }
.contact-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: var(--sp-3) var(--sp-4); font-family: var(--font-base); font-size: var(--fs-sm);
  color: var(--c-text); background-color: var(--c-ivory); border: 1.5px solid var(--c-border);
  border-radius: var(--r-md); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(45,138,150,.12); background-color: var(--c-white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-privacy { display: block; font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.55; margin-top: 0; }
.form-privacy a { color: var(--c-teal); text-decoration: underline; text-underline-offset: 2px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--c-white); border: 1px solid var(--c-border-light); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--transition); }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6); cursor: pointer; user-select: none;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-base); font-size: var(--fs-base); font-weight: 600; color: var(--c-text);
  transition: background var(--transition);
}
.faq-question:hover { background-color: var(--c-ivory); }
.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  background-color: var(--c-petrol-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  font-size: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 3px;
  background-color: var(--c-petrol);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform .28s ease, background var(--transition);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon { background-color: var(--c-petrol); box-shadow: 0 8px 18px rgba(24, 91, 101, .18); }
.faq-item.open .faq-icon::before { transform: translate(-50%, -50%) rotate(45deg); background-color: var(--c-white); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(-45deg); background-color: var(--c-white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--sp-6);
  opacity: 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.75;
  border-top: 0 solid transparent;
  transition: max-height .38s ease, padding .38s ease, opacity .25s ease, border-color .25s ease;
}
.faq-item.open .faq-answer {
  max-height: 480px;
  padding: 18px var(--sp-6) var(--sp-5);
  opacity: 1;
  border-top: 1px solid var(--c-border-light);
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-petrol) 0%, var(--c-teal) 100%);
  border-radius: var(--r-2xl); padding: var(--sp-16) var(--sp-12); text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; background-color: rgba(255,255,255,.05); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 300px; height: 300px; background-color: rgba(255,255,255,.04); border-radius: 50%; }
.cta-banner__label { display: inline-block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: var(--sp-4); }
.cta-banner__title { font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl)); color: var(--c-white); margin-bottom: var(--sp-4); position: relative; z-index: 1; }
.cta-banner__text { font-size: var(--fs-md); color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto var(--sp-10); line-height: 1.65; position: relative; z-index: 1; }
.cta-banner__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--sp-4); position: relative; z-index: 1; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background-color: #1a2a2d; color: rgba(255,255,255,.75); padding: var(--sp-16) 0 var(--sp-8); }
.footer-brand, .footer-col { } /* layout containers */
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-10); padding-bottom: var(--sp-12); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: var(--sp-8); }
.footer-brand__logo { display: flex; align-items: center; margin-bottom: var(--sp-5); }
.footer-brand__logo-img { width: min(260px, 100%); height: auto; object-fit: contain; }
.footer-brand__tagline { font-size: var(--fs-sm); color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: var(--sp-6); }
.footer-brand__contact { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-brand__contact a, .footer-brand__contact span { font-size: var(--fs-sm); font-family: inherit; color: rgba(255,255,255,.6); line-height: 1.55; }
.footer-brand__contact a { transition: color var(--transition); }
.footer-brand__contact a:hover { color: var(--c-white); }
.footer-col__title { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: var(--sp-5); }
.footer-col__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col__list a { font-size: var(--fs-sm); color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col__list a:hover { color: var(--c-white); }
.footer-col__note { font-size: var(--fs-sm); color: rgba(255,255,255,.6); line-height: 1.55; margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.footer-bottom__copy { font-size: var(--fs-xs); color: rgba(255,255,255,.35); }
.footer-bottom__links { display: flex; gap: var(--sp-6); }
.footer-bottom__links a { font-size: var(--fs-xs); color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom__links a:hover { color: rgba(255,255,255,.75); }
.footer-social { display: flex; align-items: center; }
.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.7);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: color var(--transition), transform var(--transition);
}
.footer-social__link:hover { color: var(--c-white); transform: translateY(-1px); }
.footer-social__icon { width: 28px; height: 28px; flex: 0 0 28px; }

/* ── UNTERSEITEN ────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--c-petrol) 0%, var(--c-teal) 100%); padding: calc(72px + var(--sp-16)) 0 var(--sp-16); }
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span { font-size: var(--fs-xs); color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb__sep { color: rgba(255,255,255,.3); }
.breadcrumb__current { color: rgba(255,255,255,.85); }
.page-hero__title { font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-5xl)); color: var(--c-white); margin-bottom: var(--sp-4); }
.page-hero__lead { font-size: var(--fs-md); color: rgba(255,255,255,.8); max-width: 600px; line-height: 1.7; }
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.service-intro__image { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-intro__image img { width: 100%; height: 460px; object-fit: cover; }

.service-intro__image--mobile { display: none; }
.service-intro__text p { margin-bottom: var(--sp-5); }
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.treatment-card { background-color: var(--c-white); border: 1px solid var(--c-border-light); border-radius: var(--r-xl); padding: var(--sp-8); transition: transform var(--transition), box-shadow var(--transition); }
.treatment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.treatment-card__icon { width: 52px; height: 52px; background-color: var(--c-petrol-light); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5); color: var(--c-petrol); font-size: var(--fs-xl); }
.treatment-card__title { font-size: var(--fs-md); font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-3); }
.treatment-card__text { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.7; }
.notice-box { background-color: var(--c-petrol-light); border-left: 3px solid var(--c-petrol); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: var(--sp-5) var(--sp-6); font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.7; }
.notice-box strong { color: var(--c-petrol); }


.service-intro--expanded { align-items: center; }
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.insight-card {
  background-color: var(--c-white);
  border: 1px solid rgba(26,95,106,.14);
  border-radius: var(--r-xl);
  padding: var(--sp-7, 1.75rem);
  box-shadow: var(--shadow-xs);
}
.insight-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: var(--sp-5);
  border-radius: var(--r-full);
  background-color: var(--c-petrol-light);
  color: var(--c-petrol);
  font-size: var(--fs-xs);
  font-weight: 800;
}
.insight-card__title {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-3);
}
.insight-card p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: var(--sp-12);
  align-items: center;
}
.split-panel__content p { margin-top: var(--sp-5); }
.check-list-card {
  background: linear-gradient(145deg, var(--c-ivory) 0%, var(--c-white) 100%);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-6);
}
.check-list li {
  position: relative;
  padding-left: var(--sp-8);
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .38em;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background-color: var(--c-petrol-light);
  border: 1px solid rgba(26,95,106,.18);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: calc(.38em + 4px);
  width: 6px;
  height: 9px;
  border: solid var(--c-petrol);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.treatments-grid--service .treatment-card { min-height: 100%; }
.treatment-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.service-step {
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.service-step__num {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--sp-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background-color: var(--c-petrol);
  color: var(--c-white);
  font-weight: 800;
}
.service-step h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-3);
}
.service-step p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.notice-box--soft { background-color: var(--c-white); }

/* ── IMPRESSUM / DATENSCHUTZ ────────────────────────────────── */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: var(--fs-xl); margin-top: var(--sp-10); margin-bottom: var(--sp-4); padding-top: var(--sp-10); border-top: 1px solid var(--c-border-light); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: var(--fs-md); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.legal-content p { margin-bottom: var(--sp-4); }
.legal-content ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-content ul li { margin-bottom: var(--sp-2); font-size: var(--fs-sm); color: var(--c-text-muted); }
.legal-content a { color: var(--c-petrol); text-decoration: underline; }


/* Mobile-spezifische Bildpositionen */
.approach-image-wrap--mobile,
.service-row__image--mobile,
.about-image-wrap--mobile {
  display: none;
}


/* ── Floating Actions ──────────────────────────────────────── */
.floating-actions {
  position: fixed;
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: calc(clamp(1rem, 2vw, 1.5rem) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .55rem;
  pointer-events: none;
}
.floating-actions__link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.25rem;
  padding: .68rem .95rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(19,74,84,.92);
  color: var(--c-white);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  text-align: center;
  box-shadow: 0 10px 28px rgba(19,74,84,.24), 0 2px 8px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.floating-actions__link:hover,
.floating-actions__link:focus-visible {
  color: var(--c-white);
  background: rgba(26,95,106,.98);
  border-color: rgba(255,255,255,.95);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(19,74,84,.30), 0 3px 10px rgba(0,0,0,.14);
}
.floating-actions__link--booking {
  background: rgba(45,138,150,.92);
}
.floating-actions__link--booking:hover,
.floating-actions__link--booking:focus-visible {
  background: rgba(26,95,106,.98);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav, .header-contact-btn { display: none; }
  .nav-toggle { display: flex; }
  .approach-grid, .about-grid, .contact-grid, .service-intro { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }
  .about-image-badge { right: 0; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
  .process-steps::before { display: none; }
  .worlds-grid { grid-template-columns: repeat(2, 1fr); }
  .world-card, .world-card:nth-child(4), .world-card:nth-child(5) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .service-row { grid-template-columns: 1fr; gap: var(--sp-8); }
  .service-row--reverse .service-row__image, .service-row--reverse .service-row__text { order: 0; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid, .service-steps { grid-template-columns: repeat(2, 1fr); }
  .split-panel { grid-template-columns: 1fr; gap: var(--sp-8); }
}
@media (max-width: 768px) {
  [id] { scroll-margin-top: 82px; }
  .section { padding: var(--sp-16) 0; }
  .header-logo { max-width: 235px; margin-right: var(--sp-4); }
  .hero { min-height: auto; align-items: stretch; }
  .hero__bg { background-position: 54% center; }
  .hero__overlay { background: linear-gradient(180deg, rgba(19,74,84,.62) 0%, rgba(19,74,84,.58) 48%, rgba(19,74,84,.76) 100%); }
  .hero__content { padding: var(--sp-20) var(--sp-6); }
  .hero__lead { text-align: center; margin-left: auto; margin-right: auto; }
  .hero__actions { flex-direction: column; align-items: center; justify-content: center; }
  .worlds-grid { grid-template-columns: 1fr; }
  .world-card, .world-card:nth-child(4), .world-card:nth-child(5) { grid-column: auto; }
  .approach-pillars { grid-template-columns: 1fr; }
  .approach-image-wrap--desktop,
  .service-row__image--desktop,
  .about-image-wrap--desktop { display: none; }
  .approach-image-wrap--mobile,
  .service-row__image--mobile,
  .about-image-wrap--mobile { display: block; }
  .approach-image-wrap--mobile { margin: var(--sp-6) 0 var(--sp-8); }
  .service-row__image--mobile { margin: var(--sp-5) 0 var(--sp-6); }
  .about-image-wrap--mobile { max-width: 400px; margin: var(--sp-6) auto var(--sp-8); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: var(--sp-6); }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: var(--sp-10) var(--sp-6); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); text-align: center; }
  .footer-brand, .footer-col { text-align: center; }
  .footer-brand__logo, .footer-social, .footer-bottom__links { justify-content: center; }
  .footer-brand__logo-img { margin: 0 auto; }
  .footer-brand__contact { align-items: center; }
  .footer-col__list { align-items: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: calc(var(--sp-24) + env(safe-area-inset-bottom, 0px));
  }
  .treatments-grid { grid-template-columns: 1fr; }
  .insight-grid, .service-steps, .check-list { grid-template-columns: 1fr; }
  .approach-image-wrap img { height: 320px; }
  .service-row__image img { height: 260px; }
  .service-intro__image img { height: 280px; }

  .service-intro__image--desktop { display: none; }
  .service-intro__image--mobile { display: block; margin: var(--sp-5) 0 var(--sp-6); }
}

@media (max-width: 768px) {
  .floating-actions {
    right: .8rem;
    bottom: calc(.8rem + env(safe-area-inset-bottom, 0px));
    gap: .45rem;
  }
  .floating-actions__link {
    min-width: 7.25rem;
    padding: .58rem .78rem;
    font-size: .78rem;
    box-shadow: 0 8px 20px rgba(19,74,84,.22), 0 2px 6px rgba(0,0,0,.10);
  }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
  .page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* ── Utility ────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


.footer-col__title--spaced { margin-top: 2rem; }
.footer-muted { color: rgba(255,255,255,.6); font-size: .8125rem; }
.form-group label.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: flex-start;
  gap: .75rem;
  width: 100%;
  padding: var(--sp-4);
  background-color: var(--c-ivory);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  font-weight: 400;
  cursor: pointer;
}
.form-group .privacy-check__input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: .2rem;
  padding: 0;
  border-radius: 3px;
  flex-shrink: 0;
  accent-color: var(--c-petrol);
  -webkit-appearance: checkbox;
  appearance: auto;
}
.form-actions { margin-top: 1.5rem; }
/* ── Dankeseite ─────────────────────────────────────────────── */
.danke-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: calc(72px + var(--sp-20));
  padding-bottom: var(--sp-24);
}
.danke-section .section-header--center { margin-bottom: 0; }
.danke-section .section-intro + .section-intro { margin-top: var(--sp-4); }
.danke-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-8); }
.danke-actions .btn { justify-content: center; }

@media (max-width: 768px) {
  .danke-section {
    min-height: 56vh;
    padding-top: calc(72px + var(--sp-12));
    padding-bottom: var(--sp-16);
  }
  .danke-actions { flex-direction: column; align-items: center; }
  .danke-actions .btn { width: min(100%, 320px); }
}

