:root {
  --bg-a: #eddcf0;
  --bg-b: #f6eef7;
  --bg-c: #d9edf1;
  --bg-d: #f7f3f7;
  --text: #31293a;
  --muted: #61586c;
  --line: rgba(91, 71, 101, 0.10);
  --white: rgba(255,255,255,0.62);
  --white-strong: rgba(255,255,255,0.78);
  --purple: #c17bc6;
  --turquoise: #8dcfd7;
  --shadow: 0 24px 60px rgba(89, 58, 103, 0.12);
  --shadow-soft: 0 10px 28px rgba(89, 58, 103, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wrap: 1220px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(rgba(239,230,243,0.55), rgba(231,243,246,0.50)),
    url('assets/hauptbild.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 133, 204, 0.18), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(143, 210, 219, 0.18), transparent 20%),
    radial-gradient(circle at 86% 88%, rgba(143, 210, 219, 0.12), transparent 22%),
    radial-gradient(circle at 12% 84%, rgba(196, 133, 204, 0.08), transparent 20%);
}

.site-wrap {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
  padding: 28px 0 0;
}

.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── HERO ─────────────────────────────── */
.hero {
  border-radius: 38px;
  padding: clamp(22px, 3vw, 40px);
  min-height: min(900px, calc(100vh - 56px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
}

.portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  gap: 14px;
}

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

.logo {
  width: clamp(180px, 24vw, 385px);
}

.status,
.mini-title {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #9152a2;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 400;
}

.subline {
  max-width: 30ch;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  font-family: var(--font-display);
  color: var(--text);
}

.lead {
  max-width: 52ch;
  margin: 18px auto 0;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.78;
  color: var(--muted);
  font-family: var(--font-body);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font-body);
  border: 0px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #b972c0 0%, #85cdd7 100%);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.76);
  border-color: rgba(118, 97, 128, 0.12);
}


.portrait-frame {
  width: min(100%, 300px);
  position: relative;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  object-position: center top;
  border-radius: 62% 38% 55% 45% / 50% 48% 52% 50%;
  box-shadow: 0 28px 56px rgba(89, 58, 103, 0.18);
  border: 4px solid rgba(255,255,255,0.70);
  transition: border-radius 0.6s ease;
}

.portrait:hover {
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}

/* ── SCHWERPUNKTE ─────────────────────── */
.services,
.contact {
  margin-top: 50px;
}

.services {
  padding: 18px 0 2px;
}

.section-copy {
  text-align: center;
  padding: 8px 14px 40px;
}

.section-copy h2,
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-style: italic;
  font-weight: 400;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.service-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.60));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(88, 61, 101, 0.14);
}

.card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.card-img {
  transition: transform 0.45s ease;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 6;
  border-radius: 26px 26px 0 0;
  object-fit: cover;
  object-position: center 35%;
  border: none;
   box-shadow: none;
}

.service-card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-style: italic;
}

.service-card p,
.note {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.92rem;
  margin: 0;
}

/* ── SERVICE CARD ALS LINK ────────────── */
a.service-card {
  text-decoration: none;
  color: inherit;
  position: relative;
}

a.service-card .card-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9152a2;
  opacity: 0.85;
  transition: opacity .25s ease;
}

a.service-card:hover .card-cta {
  opacity: 1;
}

/* ── PROZESS (Ihr Weg) ────────────────── */
.process {
  margin-top: 50px;
  border-radius: 32px;
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 4vw, 44px) clamp(28px, 3vw, 40px);
}

.process .section-copy { padding: 0 0 28px; }
.process .section-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.52));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}

.step.is-visible { transform: translateY(0); opacity: 1; }

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
  background: linear-gradient(135deg, #b972c0 0%, #85cdd7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 4px;
}

.step .meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9152a2;
  margin: 0 0 12px;
  opacity: 0.85;
}

.step p:not(.meta) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

.process-note {
  margin: 26px auto 0;
  max-width: 96ch;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.98rem;
  text-align: center;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .process { padding: 22px 18px 26px; border-radius: 26px; }
}

/* ── SERVICE GRID mit 5. Karte (Entgiftung) ── */
/* Desktop >960px: Detox-Karte versteckt – Feature-Banner übernimmt */
.detox-card-mobile { display: none; }

/* 761–960px: 2-Spalten-Grid, alle 5 Karten sichtbar */
@media (max-width: 960px) and (min-width: 761px) {
  .service-grid--with-detox {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detox-card-mobile { display: flex; }
}

/* Mobile ≤760px: alle 5 Karten sichtbar, Feature-Banner ausblenden */
@media (max-width: 760px) {
  .detox-card-mobile { display: flex; }
  .feature-banner { display: none; }
}

.weg-btn {
  font-size: 0.88rem;
  min-height: 42px;
  padding: 0 22px;
}


.portrait-caption {
  margin-top: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.portrait-caption .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.portrait-caption .weg-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9152a2;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(145, 82, 162, 0.30);
  transition: border-color .25s ease, color .25s ease;
}

.portrait-caption .weg-link:hover {
  border-bottom-color: #9152a2;
  color: #7a3d8b;
}

/* ── FEATURE BANNER (Entgiftung etc.) ── */
.feature-banner {
  margin-top: 50px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  min-height: 320px;
  text-decoration: none;
}

.feature-banner .fb-image {
  position: relative;
  overflow: hidden;
}

.feature-banner .fb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.feature-banner:hover .fb-image img { transform: scale(1.04); }

.feature-banner .fb-text {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.feature-banner .fb-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.feature-banner .fb-text p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 6px 0 14px;
}

.feature-banner .fb-text .btn { align-self: flex-start; margin-top: 4px; }

@media (max-width: 760px) {
  .feature-banner { grid-template-columns: 1fr; min-height: 0; border-radius: 26px; }
  .feature-banner .fb-image { height: 220px; }
}

/* ── ANFAHRT in Kontakt ───────────────── */
.anfahrt {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.anfahrt .label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #916795;
  font-weight: 600;
}

.anfahrt ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 6px;
}

.anfahrt li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.anfahrt li strong {
  color: var(--text);
  font-weight: 600;
}

.anfahrt .maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #b972c0 0%, #85cdd7 100%);
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.anfahrt .maps-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-bottom-color: transparent;
}

.anfahrt .maps-link svg { width: 16px; height: 16px; }

/* Detox-Bild auf Entgiftungsseite: mehr Mitte zeigen */
.detox-hero-img {
  object-position: center 35% !important;
}


.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 4px 0;
  margin-bottom: 18px;
}

.topbar .home-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.topbar .home-link img {
  width: clamp(120px, 14vw, 170px);
  transition: opacity .2s ease;
}

.topbar .home-link:hover img { opacity: 0.78; }

.topbar .back {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9152a2;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, background .2s ease;
}

.topbar .back:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.86);
}

.sub-hero {
  border-radius: 38px;
  padding: clamp(22px, 3vw, 44px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
}

.sub-hero-text .mini-title { color: #9152a2; }

.sub-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.02;
  margin: 4px 0 22px;
  font-style: italic;
  font-weight: 400;
}

.sub-hero .lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 36ch;
  font-weight: 500;
}

.sub-hero .lede + p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1rem;
  max-width: 50ch;
  margin: 0;
}

.sub-hero-image {
  position: relative;
}

.sub-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 42% 58% 52% 48% / 46% 44% 56% 54%;
  box-shadow: 0 28px 56px rgba(89, 58, 103, 0.18);
  border: 4px solid rgba(255,255,255,0.70);
  transition: border-radius 0.6s ease;
}


/* Content sections */
.content {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.prose {
  border-radius: 32px;
  padding: clamp(28px, 4vw, 52px) clamp(22px, 5vw, 64px);
}

.prose h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 18px;
}

.prose h2 + p { margin-top: 0; }

.prose p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--muted);
  margin: 0 0 16px;
  text-wrap: pretty;
}

.prose p strong { color: var(--text); font-weight: 600; }

.prose .lead-p {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 22px;
  font-style: italic;
}

.prose ul {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.prose ul li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, #c17bc6, #8dcfd7);
  border-radius: 2px;
}

.prose .section + .section { margin-top: 38px; }

.prose .section { animation: none; }

/* Pull quote / accent block */
.accent-card {
  border-radius: 28px;
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(135deg, rgba(193, 123, 198, 0.18) 0%, rgba(141, 207, 215, 0.22) 100%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.accent-card p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--text);
  margin: 0;
}

.accent-card .qmark {
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: #c17bc6;
  margin-bottom: 12px;
  opacity: 0.75;
}

.accent-card .qmark-close {
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: #c17bc6;
  margin-top: 12px;
  opacity: 0.75;
}

/* Related topics */
.related {
  margin-top: 48px;
}

.related .section-copy {
  padding: 0 0 26px;
  text-align: left;
}

.related .section-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-grid--3col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-grid .service-card .card-img-wrap { height: 150px; }
.related-grid .service-card .card-body { padding: 18px 18px 22px; }
.related-grid .service-card h3 { font-size: 1.3rem; }

/* CTA strip */
.cta-strip {
  margin-top: 36px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.2;
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
  max-width: 56ch;
}

.cta-strip .button-row { margin: 0; justify-content: flex-end; }

@media (max-width: 1080px) {
  .sub-hero { grid-template-columns: 1fr; }
  .sub-hero-image {
    order: -1;
    width: calc(100% + clamp(44px, 6vw, 88px));
    margin-left: calc(-1 * clamp(22px, 3vw, 44px));
    margin-right: calc(-1 * clamp(22px, 3vw, 44px));
    margin-top: calc(-1 * clamp(22px, 3vw, 44px));
  }
  .sub-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: 26px 26px 0 0;
    object-fit: cover;
    object-position: center 35%;
    border: none;
    box-shadow: none;
  }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .related-grid--3col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .button-row { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .topbar { padding-top: 0; }
  .topbar .back { padding: 8px 14px; font-size: 0.76rem; }
  .sub-hero { border-radius: 28px; padding: 20px 16px 28px; }
  .prose { padding: 24px 20px; border-radius: 26px; }
  .prose p, .prose ul li { font-size: 0.96rem; }
  .related-grid { grid-template-columns: 1fr; }
  .accent-card { padding: 22px 18px; border-radius: 22px; }
}

/* ── KONTAKT ──────────────────────────── */
.contact {
  border-radius: 32px;
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card,
.hours-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.54));
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.contact h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(191,126,197,0.16), rgba(141,208,217,0.24));
  color: #7aaeb6;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #916795;
  font-weight: 600;
}

.contact-list a {
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
}

.hours-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}

.hours-list div span:first-child {
  color: var(--text);
  font-weight: 600;
}

.note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}

.hours-actions {
  justify-content: flex-start;
}

/* ── MOBILE BAR ───────────────────────── */
.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.70);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 44px rgba(71, 48, 80, 0.16);
}

.mobile-bar a {
  flex: 1;
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.mobile-bar a:first-child {
  background: rgba(255,255,255,0.90);
  color: var(--text);
}

.mobile-bar a:last-child {
  background: linear-gradient(135deg, #b972c0 0%, #85cdd7 100%);
  color: white;
}

/* ── TO-TOP ───────────────────────────── */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 29;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.82);
  color: #9152a2;
  box-shadow: var(--shadow-soft);
  font-size: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.to-top:hover {
  background: rgba(255,255,255,0.95);
}

.to-top::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-top-right-radius: 2px;
  transform: rotate(-45deg) translate(-2px, 2px);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── ANIMATIONEN ──────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .20s; }

/* ── FOOTER ───────────────────────────── */
.footer-links {
  text-align: center;
  margin: 32px 0 28px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.footer-links a {
  display: inline-block;
  padding: 4px 2px;
  margin: 0 14px;
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  font-family: var(--font-body);
}

.footer-links a:hover {
  color: #9152a2;
  border-bottom-color: #c17bc6;
}

/* ── RESPONSIVE 1080px ────────────────── */
@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portrait-frame {
    width: min(100%, 340px);
  }
}

/* ── RESPONSIVE 760px (Mobile) ─────────── */
@media (max-width: 760px) {
  .site-wrap {
    width: min(calc(100% - 20px), var(--wrap));
    padding-top: 10px;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    border-radius: 28px;
    padding: 20px 16px 40px;
  }

  .hero-logo-row {
    margin-bottom: 20px;
  }

  .logo {
    width: min(220px, 50vw);
  }

  .hero-inner,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-block { order: 1; }
  .portrait-wrap { order: 2; }

  .portrait-frame {
    width: min(100%, 290px);
    margin: 0 auto;
  }

  /* Mein Weg button visible under portrait on mobile */
  .mobile-weg-btn {
    display: inline-flex !important;
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .subline { max-width: 26ch; }
  .lead { font-size: 0.95rem; }


  .card-img-wrap {
    height: 160px;
  }

  .desktop-actions,
  .hours-actions {
    display: none;
  }

  .mobile-bar {
    display: flex;
  }

  .to-top {
    bottom: 82px;
    right: 12px;
  }

  .footer-links {
    margin-bottom: 90px;
  }
}

/* ── ERGÄNZUNGEN ──────────────────────────────────────────────── */

/* Detox-Bild auf Entgiftungsseite: Motiv besser zeigen */
.detox-hero-img {
  object-position: center 35% !important;
}

/* Mein Weg Button: Primary-Glow beim Hover */
.btn-primary:hover {
  background: linear-gradient(135deg, #c97fd0 0%, #95dde6 100%);
  box-shadow: 0 8px 24px rgba(185, 114, 192, 0.45);
}

/* Detox-Karte: nur auf Startseite versteckt, auf Unterseiten sichtbar */
.detox-card-mobile { display: none; }

@media (max-width: 960px) and (min-width: 761px) {
  .service-grid--with-detox { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detox-card-mobile { display: flex; }
}

/* Mobile: auf Startseite NICHT anzeigen – Feature-Banner auch nicht */
@media (max-width: 760px) {
  .feature-banner { display: none; }
}

/* Sub-Hero-Bild bei ≤1080px: randlos und vollflächig */
@media (max-width: 1080px) {
  .sub-hero { overflow: hidden; }
  .sub-hero-image {
    order: -1;
    width: calc(100% + clamp(44px, 6vw, 88px));
    margin-left: calc(-1 * clamp(22px, 3vw, 44px));
    margin-right: calc(-1 * clamp(22px, 3vw, 44px));
    margin-top: calc(-1 * clamp(22px, 3vw, 44px));
  }
  .sub-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: 26px 26px 0 0;
    object-fit: cover;
    object-position: center 35%;
    border: none;
    box-shadow: none;
  }
}

/* Mein-Weg-Button mobil unter Portrait */
@media (max-width: 760px) {
  .mobile-weg-btn {
    display: inline-flex !important;
    margin: 0 auto;
  }
}
