/* ============================================================
   KOSMETIK L'ARTE — Stylesheet
   Stil: Soft Botanical
   Markenfarben: Brand-Lila + Rosa-Töne + Aloe-Grün-Akzente
   Typo: Fraunces (Display) + Roboto (Body)
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  /* Backgrounds */
  --bg:          #faf5f3;          /* warmes Creme */
  --bg-pink:     #f9eef2;          /* zartes Rosa */
  --bg-green:    #eef3ec;          /* zartes Aloe-Grün */
  --bg-soft:     #f5ede9;          /* alternativer Block-BG */

  /* Ink */
  --ink:         #2a1a26;
  --ink-soft:    rgba(42,26,38,.68);
  --ink-faint:   rgba(42,26,38,.45);
  --line:        rgba(42,26,38,.12);

  /* Brand */
  --lila:        #2c024d;
  --lila-2:      #3c1357;
  --lila-soft:   #4a2569;
  --rose:        #cfa6cc;
  --rose-deep:   #b98db6;
  --rose-pop:    #d68bb9;
  --rose-soft:   #f3e6f2;

  /* Accents */
  --aloe:        #7a9978;
  --aloe-deep:   #4e6b4d;
  --aloe-soft:   #c8dcc6;
  --gold:        #c4a878;

  /* Promo soft (sanfter Lila-Verlauf) */
  --promo-1:     #c9a6c8;
  --promo-2:     #b88dbb;
  --promo-3:     #a577a8;

  /* Radii & Shadows */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
  --shadow-sm: 0 4px 12px rgba(42,26,38,.06);
  --shadow-md: 0 12px 32px rgba(42,26,38,.08);
  --shadow-lg: 0 24px 60px rgba(42,26,38,.12);
}

/* ============ RESET / BASE ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.serif { font-family: 'Fraunces', serif; font-variation-settings: "SOFT" 100, "WONK" 0; }

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: .04em;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--rose-deep);
}
.eyebrow--center {
  display: inline-flex;
}
.eyebrow--center::after {
  content: ''; width: 32px; height: 1px; background: var(--rose-deep);
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  color: var(--rose-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

/* ============ HEADER / NAV ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,245,243,.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(44,2,77,.06);
  border-bottom-color: rgba(207,166,204,.18);
}
.header__inner {
  max-width: 1300px; margin: 0 auto;
  padding: 22px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
/* Hinweis: Header-Höhe bleibt beim Scrollen bewusst konstant.
   Eine Verkleinerung von Padding/Logo würde die sticky-Header-Höhe ändern
   und das gesamte Layout verschieben ("Wackeln"). Nur der Schatten/Rahmen
   (siehe .header.is-scrolled oben) wechselt – das ist rein kosmetisch. */
.header__logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.header__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__brand {
  margin-bottom: 12px;
}
.footer__brand img {
  height: 50px;
  width: auto;
  display: block;
  /* Logo bleibt mit Original-Farben, leicht aufgehellt für dunklen Hintergrund */
  filter: brightness(1.15) saturate(1.1);
  opacity: .95;
}

.nav { display: flex; gap: 28px; align-items: center; }
.nav__contact {
  display: none;
}
.nav a {
  font-size: .92rem;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  color: var(--ink);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 2px;
  background: var(--rose-deep);
  border-radius: 2px;
  transition: width .3s cubic-bezier(.2,.8,.2,1);
  transform: translateX(-50%);
}
.nav a:hover::after { width: 60%; }
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--rose-deep); font-weight: 500; }

.header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .3s;
}
.header__cta:hover { background: var(--rose-deep); transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  position: relative;
  z-index: 110;
  transition: background .25s ease, border-color .25s ease;
}
.nav-toggle:hover {
  background: rgba(207,166,204,.1);
  border-color: var(--rose-deep);
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  transform-origin: center;
}
/* Hamburger → X Transformation */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 210; /* Über dem Menü, damit Toggle immer klickbar bleibt */
  }
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    /* Volle mobile Höhe (auch wenn URL-Bar versteckt ist) */
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    /* Vollständig deckender Hintergrund (kein backdrop-filter nötig) */
    background:
      linear-gradient(135deg, #faf5f3 0%, #f5ebee 60%, #f0e5ea 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 90px 5vw 120px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s ease, visibility .3s ease, transform .35s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  /* Soft dekorative Blobs im Hintergrund für mehr Tiefe */
  .nav::before {
    content: '';
    position: absolute;
    top: -10%; right: -15%;
    width: 60vw; height: 60vw;
    max-width: 400px; max-height: 400px;
    background: radial-gradient(circle, rgba(207,166,204,.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav > a:not(.nav__contact) {
    font-family: 'Fraunces', serif;
    font-variation-settings: "SOFT" 100;
    font-weight: 400;
    font-size: 1.7rem;
    padding: 18px 0;
    color: var(--ink);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.2,1), color .25s ease;
    position: relative;
    z-index: 2;
  }
  /* Erster Link pusht alle nach unten = vertikal zentriert */
  .nav > a:not(.nav__contact):first-of-type {
    margin-top: auto;
  }
  /* Letzter Link vor dem Contact-Block pusht den Block ans untere Ende */
  .nav > a:not(.nav__contact):last-of-type {
    margin-bottom: auto;
  }
  .nav.is-open > a:not(.nav__contact) {
    opacity: 1;
    transform: translateY(0);
  }
  /* Gestaffeltes Einblenden der Links */
  .nav.is-open > a:not(.nav__contact):nth-child(1) { transition-delay: .08s; }
  .nav.is-open > a:not(.nav__contact):nth-child(2) { transition-delay: .14s; }
  .nav.is-open > a:not(.nav__contact):nth-child(3) { transition-delay: .20s; }
  .nav.is-open > a:not(.nav__contact):nth-child(4) { transition-delay: .26s; }
  .nav.is-open > a:not(.nav__contact):nth-child(5) { transition-delay: .32s; }
  .nav.is-open > a:not(.nav__contact):nth-child(6) { transition-delay: .38s; }

  .nav > a:not(.nav__contact)::after { display: none; }
  .nav > a:not(.nav__contact):hover,
  .nav > a.active { color: var(--rose-deep); }
  .nav > a.active { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }

  /* Toggle bei offenem Menü: heller Hintergrund, dunkles X */
  .nav-toggle.is-open {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
  }
  .nav-toggle.is-open span { background: #fff; }

  /* Kontakt-Block: schöne CTA-Card am unteren Rand */
  .nav .nav__contact {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 5vw; right: 5vw;
    text-align: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(245,235,238,.85) 100%);
    border: 1px solid rgba(207,166,204,.3);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(44,2,77,.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease .44s, transform .4s cubic-bezier(.2,.8,.2,1) .44s;
    z-index: 2;
  }
  .nav.is-open .nav__contact {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__contact strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--rose-deep);
    margin-bottom: 4px;
    letter-spacing: .01em;
  }
  .nav__contact small {
    display: block;
    font-size: .82rem;
    color: var(--ink-soft);
    letter-spacing: .04em;
  }

  /* Body-Scroll deaktivieren wenn Menü offen */
  body.nav-open { overflow: hidden; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  transition: all .3s;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(185,141,182,.3); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--white { background: #fff; color: var(--lila); }
.btn--white:hover { background: var(--rose); color: #fff; }
.btn--white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ============ HERO (Homepage) ============ */
.hero {
  position: relative;
  padding: 80px 5vw 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: -10%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, var(--bg-pink) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-2 {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, var(--bg-green) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--lila);
  margin-bottom: 32px;
  border: 1px solid rgba(207,166,204,.4);
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--aloe);
  box-shadow: 0 0 0 4px rgba(122,153,120,.2);
}
.hero__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 32px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero__title .leaf {
  display: inline-block;
  width: clamp(40px, 7vw, 80px);
  height: clamp(40px, 7vw, 80px);
  vertical-align: middle;
  margin: 0 .1em;
}
.hero__lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__features { display: flex; flex-wrap: wrap; gap: 32px; }
.hero__feature { display: flex; align-items: center; gap: 12px; }
.hero__feature-icon {
  width: 40px; height: 40px;
  background: var(--bg-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--aloe-deep);
  flex: none;
}
.hero__feature-text { font-size: .82rem; color: var(--ink-soft); }
.hero__feature-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

/* Hero visual blob + aloe */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 580px;
  margin: 0 auto;
}
.hero__blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blob 16s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(185,141,182,.35));
}
.hero__blob-2 {
  position: absolute;
  inset: 8%;
  background: linear-gradient(135deg, var(--bg-green) 0%, var(--aloe-soft) 100%);
  border-radius: 55% 45% 60% 40% / 60% 50% 50% 40%;
  animation: blob 14s ease-in-out infinite reverse;
}
@keyframes blob {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%      { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
  66%      { border-radius: 50% 50% 45% 55% / 45% 60% 40% 55%; }
}
.hero__plant {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72%; height: 72%;
  z-index: 2;
  filter: drop-shadow(0 20px 32px rgba(78,107,77,.35));
}
.hero__circle { position: absolute; border-radius: 50%; }
.hero__circle--1 { width: 24px; height: 24px; background: var(--gold); top: 12%; right: 14%; opacity: .7; }
.hero__circle--2 { width: 14px; height: 14px; background: var(--lila); bottom: 18%; left: 10%; opacity: .6; }
.hero__circle--3 { width: 50px; height: 50px; border: 1px solid var(--rose-deep); bottom: 8%; right: 12%; opacity: .5; }

/* ============ HERO PORTRAIT (Startseite, oben) ============ */
.hero-portrait {
  padding: 80px 5vw 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-portrait__bg {
  position: absolute;
  top: -10%; right: -8%;
  width: 580px; height: 580px;
  background: radial-gradient(circle at center, var(--bg-pink) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-portrait__bg-2 {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, var(--bg-green) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-portrait__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-portrait__inner { grid-template-columns: 1fr; gap: 40px; }
}

.hero-portrait__image {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin: 0 auto;
}
.hero-portrait__image-bg {
  position: absolute;
  inset: 8% -6% -6% 8%;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose) 100%);
  border-radius: var(--r-lg);
  z-index: 0;
}
.hero-portrait__image-wrap {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-portrait__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-portrait__sticker {
  position: absolute;
  top: -12px; right: -12px;
  z-index: 2;
  width: 110px; height: 110px;
  background: var(--rose-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .82rem;
  line-height: 1.2;
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
}
.hero-portrait__sticker strong {
  display: block;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
}

.hero-portrait__content { position: relative; }
.hero-portrait__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(207,166,204,.15);
  color: var(--brand);
  border: 1px solid rgba(207,166,204,.3);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-portrait__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.hero-portrait__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
}
.hero-portrait__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 50ch;
}
.hero-portrait__content .portrait__quali {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hero-portrait__content .portrait__quali li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.hero-portrait__content .portrait__quali li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--aloe-deep);
  border-radius: 2px;
}
.hero-portrait__content .portrait__text {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 56ch;
}
.hero-portrait__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}
.hero-portrait__features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ============ SPLIT HERO (Naildesign / Madero Subpages) ============ */
.split-hero {
  padding: 80px 5vw 100px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.split-hero__bg {
  position: absolute;
  top: -8%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle at center, rgba(207,166,204,.28) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.split-hero__bg-2 {
  position: absolute;
  bottom: -10%; left: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle at center, rgba(122,153,120,.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.split-hero--green .split-hero__bg {
  background: radial-gradient(circle at center, rgba(168,132,80,.28) 0%, transparent 65%);
}
.split-hero--green .split-hero__bg-2 {
  background: radial-gradient(circle at center, rgba(232,212,184,.4) 0%, transparent 65%);
}
.split-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 940px) {
  .split-hero__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }
}

/* ============ GLASSBOX (links) ============ */
.glassbox {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255,255,255,.85) 0%,
    rgba(255,255,255,.55) 100%);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  padding: 32px 32px 28px;
  box-shadow:
    0 24px 60px rgba(44,2,77,.12),
    0 4px 12px rgba(44,2,77,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.glassbox--green {
  background: linear-gradient(135deg,
    rgba(245,232,212,.88) 0%,
    rgba(232,212,184,.6) 100%);
  border: 1px solid rgba(184,148,108,.5);
}
.glassbox::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, transparent 100%);
  border-radius: 28px 28px 0 0;
  pointer-events: none;
}
.glassbox__chip {
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(207,166,204,.3);
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .82rem;
  color: var(--rose-deep);
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}
.glassbox--green .glassbox__chip {
  border-color: rgba(168,132,80,.45);
  color: #8a5a2a;
  background: rgba(255,250,242,.85);
}
.glassbox__art {
  position: relative;
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(44,2,77,.18);
}
.glassbox__art img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.glassbox__art:hover img {
  transform: scale(1.04);
}
.glassbox__caption {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(207,166,204,.2);
  position: relative;
  z-index: 1;
}
.glassbox--green .glassbox__caption {
  border-top-color: rgba(168,132,80,.3);
}
.glassbox__caption strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.glassbox__caption strong em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
}
.glassbox--green .glassbox__caption strong em {
  color: #8a5a2a;
}
.glassbox__caption span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .92rem;
  color: var(--ink-soft);
}

/* ============ SPLIT HERO CONTENT (rechts) ============ */
.split-hero__content {
  position: relative;
}
.split-hero__content .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.split-hero__content h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.split-hero__content h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
}
.split-hero--green .split-hero__content h1 em {
  color: #8a5a2a;
}
.split-hero__lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 54ch;
}
.split-hero__lead strong {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}
.split-hero__text {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 58ch;
}
.split-hero__text strong {
  color: var(--ink);
  font-weight: 500;
}
.split-hero__list-head {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 26px 0 14px;
  font-weight: 500;
}
.split-hero__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 58ch;
}
.split-hero__list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: .96rem;
}
.split-hero__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 2px;
  background: var(--rose-deep);
  border-radius: 2px;
}
.split-hero--green .split-hero__list li::before {
  background: #a8845c;
}
.split-hero__highlight {
  background: linear-gradient(135deg, var(--bg-pink) 0%, rgba(207,166,204,.25) 100%);
  border-left: 3px solid var(--rose-deep);
  padding: 16px 20px;
  margin: 22px 0 28px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  max-width: 58ch;
}
.split-hero__highlight--green {
  background: linear-gradient(135deg, rgba(245,232,212,.7) 0%, rgba(232,212,184,.5) 100%);
  border-left-color: #a8845c;
}
.split-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.split-hero__features {
  list-style: none;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.split-hero__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.split-hero__features li svg {
  width: 20px; height: 20px;
  color: var(--rose-deep);
  flex: none;
}
.split-hero--green .split-hero__features li svg {
  color: var(--aloe-deep);
}

/* ============ PAGE HERO (für Unterseiten mit Visual) ============ */
.page-hero {
  padding: 80px 5vw 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: -10%; right: -8%;
  width: 580px; height: 580px;
  background: radial-gradient(circle at center, var(--bg-pink) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .page-hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }
}
.page-hero__content {
  text-align: left;
}
.page-hero__content .eyebrow,
.page-hero__content .eyebrow--center {
  text-align: left;
  display: inline-block;
  margin-bottom: 14px;
}
.page-hero__content h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.page-hero__content h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
}
.page-hero__content .page-header__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 52ch;
  text-align: left;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.page-hero__visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.page-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 20px 40px rgba(44,2,77,.12));
}

/* ============ PAGE HEADER (für Unterseiten) ============ */
.page-header {
  padding: 64px 5vw 48px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.page-header--top {
  padding-top: 100px;
}
.page-header__bg {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, var(--bg-pink) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-header__content { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 18px 0 16px;
}
/* Produkte-Seite: grüne Em-Akzente (Aloe-Thema) */
.page-header--green h1 em {
  color: var(--aloe-deep);
}
.page-header__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ ALOE SPOTLIGHT ============ */
.aloe-section {
  padding: 80px 5vw;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-green) 100%);
  position: relative;
  overflow: hidden;
}
.aloe-section__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .aloe-section { padding: 120px 5vw; }
  .aloe-section__inner { grid-template-columns: 1fr 1.3fr; gap: 80px; }
}
.aloe-section__visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  margin: 0 auto;
  display: block;
}
@media (min-width: 900px) {
  .aloe-section__visual {
    max-width: 560px;
    min-height: 480px;
  }
}
.aloe-section__visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--aloe-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.aloe-section__blob {
  position: absolute;
  inset: 4% 4% 6% 4%;
  background: linear-gradient(135deg, var(--bg-green) 0%, var(--aloe-soft) 100%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blob 18s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(78,107,77,.18));
  z-index: 1;
}
.aloe-section__blob-2 {
  position: absolute;
  inset: 14%;
  background: linear-gradient(135deg, rgba(255,255,255,.6) 0%, rgba(168,196,168,.4) 100%);
  border-radius: 50% 50% 45% 55% / 60% 45% 55% 40%;
  animation: blob 14s ease-in-out infinite reverse;
  z-index: 2;
}
.aloe-section__visual .big-aloe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  z-index: 5;
  filter: drop-shadow(0 24px 48px rgba(78,107,77,.35));
  display: block;
}
.aloe-section__droplet {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(200,220,198,.6));
  border-radius: 50%;
  box-shadow: inset -4px -4px 8px rgba(78,107,77,.15);
}
.aloe-section__droplet--1 { width: 36px; height: 36px; top: 12%; right: 18%; }
.aloe-section__droplet--2 { width: 24px; height: 24px; top: 28%; right: 10%; }
.aloe-section__droplet--3 { width: 18px; height: 18px; top: 38%; right: 22%; }

.aloe-section__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.7);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--aloe-deep);
  margin-bottom: 24px;
}
.aloe-section__tag::before { content: '🌿'; font-size: 1rem; }
.aloe-section__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 28px;
}
.aloe-section__title em { color: var(--aloe-deep); }
.aloe-section__text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}
.aloe-section__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 500px) {
  .aloe-section__benefits {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 32px;
  }
}
.aloe-benefit {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 16px;
  border: 1px solid rgba(122,153,120,.18);
  min-width: 0;
}
@media (min-width: 500px) {
  .aloe-benefit { padding: 20px; }
}
.aloe-benefit__icon {
  width: 36px; height: 36px;
  background: var(--aloe-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--aloe-deep);
}
.aloe-benefit strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.aloe-benefit span { font-size: .82rem; color: var(--ink-soft); }

/* ============ PORTRAIT ============ */
.portrait {
  padding: 120px 5vw;
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .portrait { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
}
.portrait__image {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.portrait__image-bg {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  z-index: 0;
}
.portrait__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: 50% 50% 45% 55% / 50% 50% 50% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(42,26,38,.18);
}
.portrait__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.portrait__sticker {
  position: absolute;
  z-index: 2;
  background: var(--bg);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: .85rem;
  line-height: 1.2;
  color: var(--ink);
  border: 1px solid var(--rose);
  bottom: -10px; right: -10px;
  transform: rotate(-8deg);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.portrait__sticker strong {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
  color: var(--rose-deep);
  margin-bottom: 2px;
}
.portrait__content .eyebrow {
  margin-bottom: 20px;
}
.portrait__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
}
.portrait__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
  line-height: 1.5;
}
.portrait__text { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.portrait__quali {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.portrait__quali li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,.7);
  border-radius: var(--r-md);
  font-size: .95rem;
  border: 1px solid rgba(207,166,204,.25);
}
.portrait__quali li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex: none;
}

/* ============ KATEGORIEN GRID (Cards) ============ */
.cats {
  padding: 120px 5vw;
  max-width: 1300px; margin: 0 auto;
}
.cats__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.cats__head .eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
}
.cats__head .eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--rose-deep); }
.cats__head h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 16px;
}
.cats__head p { font-size: 1.05rem; color: var(--ink-soft); }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.cats__grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (min-width: 1100px) {
  .cats__grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.cat-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(207,166,204,.2);
  display: flex; flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(185,141,182,.25);
}
.cat-card__visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-card--1 .cat-card__visual { background: linear-gradient(135deg, var(--bg-pink), var(--rose)); }
.cat-card--2 .cat-card__visual { background: linear-gradient(135deg, var(--bg-green), var(--aloe-soft)); }
.cat-card--3 .cat-card__visual { background: linear-gradient(135deg, #f5ebee, #e8d4e6); }
.cat-card--4 .cat-card__visual { background: linear-gradient(135deg, #ede4d8, #d4c1a8); }
.cat-card__visual svg { width: 50%; height: 50%; }
.cat-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.cat-card:hover .cat-card__visual img {
  transform: scale(1.06);
}
.cat-card__visual::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.cat-card__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.cat-card__title em { font-style: italic; color: var(--rose-deep); }
.cat-card__desc { font-size: .95rem; color: var(--ink-soft); margin: 0 0 20px; line-height: 1.6; flex: 1; }
.cat-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  transition: gap .3s;
}
.cat-card__link:hover { gap: 14px; }

/* ============ PROMO (Sanftes Rosa-Lila, weicher Kontrast) ============ */
/* ============ PRODUKTE: ALOE-VERA-STORY-PFAD ============ */
.path {
  padding: 40px 5vw 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.path__track {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .path__track { gap: 0; }
}

/* Vertikale Linie in der Mitte */
.path__line {
  display: none;
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--aloe-soft) 5%,
    var(--aloe-deep) 50%,
    var(--rose-deep) 95%,
    transparent 100%);
  transform: translateX(-50%);
  z-index: 0;
}
@media (min-width: 900px) {
  .path__line { display: block; }
}

/* Einzelne Station */
.path__step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0;
  z-index: 1;
}
@media (min-width: 900px) {
  .path__step {
    grid-template-columns: 1fr 80px 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
  }
  .path__step--left .path__visual { grid-column: 1; grid-row: 1; }
  .path__step--left .path__marker { grid-column: 2; grid-row: 1; }
  .path__step--left .path__content { grid-column: 3; grid-row: 1; }
  .path__step--right .path__content { grid-column: 1; grid-row: 1; text-align: right; }
  .path__step--right .path__marker { grid-column: 2; grid-row: 1; }
  .path__step--right .path__visual { grid-column: 3; grid-row: 1; }
  .path__step--right .path__list,
  .path__step--right .path__benefits,
  .path__step--right .path__steps-list { text-align: left; }
}

/* Marker auf der Linie */
.path__marker {
  position: relative;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--aloe-soft) 0%, var(--aloe-deep) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(78,107,77,.35), inset 0 2px 0 rgba(255,255,255,.3);
  border: 4px solid var(--bg);
  flex-direction: column;
}
.path__marker--final {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  box-shadow: 0 8px 24px rgba(185,141,182,.4), inset 0 2px 0 rgba(255,255,255,.3);
}
.path__num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1;
}
.path__leaf {
  width: 20px; height: 20px;
  margin-top: 4px;
}
.path__marker--final svg {
  width: 32px; height: 32px;
}

/* Visual (Bild) */
.path__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--bg-green), var(--aloe-soft));
}
.path__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(78,107,77,.15) 100%);
  pointer-events: none;
}
.path__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
/* SVG-Visuals als contain (komplett sichtbar) */
.path__visual img[src$=".svg"] {
  object-fit: contain;
}
.path__step:hover .path__visual img {
  transform: scale(1.05);
}

/* Content */
.path__content {
  padding: 8px 0;
}
.path__tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(122,153,120,.12);
  border: 1px solid rgba(122,153,120,.25);
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .82rem;
  color: var(--aloe-deep);
  margin-bottom: 14px;
}
.path__content h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.path__content h2 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--aloe-deep);
}
.path__content p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: .98rem;
}
.path__content strong {
  color: var(--ink);
  font-weight: 500;
}

/* Listen innerhalb der Stationen */
.path__list {
  margin: 14px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.path__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: .94rem;
}
.path__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--aloe-deep);
  border-radius: 2px;
}

/* Geordnete Schritte (Fünfklang) */
.path__steps-list {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.path__steps-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(122,153,120,.18);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
  transition: transform .25s ease, border-color .25s ease;
}
.path__steps-list li:hover {
  transform: translateX(4px);
  border-color: var(--aloe-deep);
}
.path__steps-list li span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-size: 1.3rem;
  color: var(--aloe-deep);
  font-weight: 500;
  min-width: 24px;
}

/* Highlight-Box */
.path__highlight {
  background: linear-gradient(135deg, var(--bg-green) 0%, rgba(184,212,184,.4) 100%);
  border-left: 3px solid var(--aloe-deep);
  padding: 14px 18px;
  margin: 18px 0 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* Benefits-Grid (Station 4) */
.path__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 16px 0 0;
}
.path__benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.path__benefit strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--aloe-deep);
}
.path__benefit span {
  font-size: .82rem;
  color: var(--ink-soft);
}

/* CTA-Link */
.path__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--aloe-deep);
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: gap .25s ease;
}
.path__cta:hover { gap: 12px; }

/* Final-Station: zentral, ohne Bild */
.path__step:has(.path__content--final) {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 60px 0 20px;
}
@media (min-width: 900px) {
  .path__step:has(.path__content--final) {
    grid-template-columns: 1fr 80px 1fr;
  }
  .path__content--final {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    text-align: center !important;
    margin-top: 24px;
  }
  .path__step:has(.path__content--final) .path__marker {
    grid-column: 2;
    grid-row: 1;
  }
}
.path__content--final {
  max-width: 720px;
  margin: 0 auto;
}
.path__quote-title {
  font-family: 'Fraunces', serif !important;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  margin-bottom: 20px !important;
}
.path__quote-title em {
  color: var(--rose-deep) !important;
}
.path__final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* Mobile: alle Stationen linear, kein Versatz */
@media (max-width: 899px) {
  .path__step {
    padding: 20px 0;
    border-left: 2px solid var(--aloe-soft);
    padding-left: 24px;
    margin-left: 8px;
  }
  .path__step:last-child {
    border-left-color: var(--rose);
  }
  .path__marker {
    margin: 0 0 16px -64px;
    transform: scale(.85);
  }
  .path__step--right .path__content {
    text-align: left;
  }
}

/* ============ TREATMENT GRID (Karten-Variante) ============ */
.tg-filters {
  padding: 8px 5vw 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.tg-filters__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 720px) {
  .tg-filters__inner { flex-direction: row; align-items: center; gap: 20px; }
}
.tg-filters__label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .92rem;
  color: var(--ink-soft);
  flex: none;
}
.tg-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tg-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.tg-chip:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}
.tg-chip.is-active {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(185,141,182,.3);
}

.tg {
  padding: 8px 5vw 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.tg__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
@media (min-width: 900px) {
  .tg__grid { grid-template-columns: repeat(3, 1fr); }
}

.tg-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.tg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(44,2,77,.1);
  border-color: rgba(207,166,204,.4);
}
.tg-card:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}
.tg-card.is-hidden {
  display: none;
}

.tg-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-pink), var(--rose));
}
.tg-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.tg-card:hover .tg-card__image img {
  transform: scale(1.06);
}
.tg-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .76rem;
  color: var(--ink);
  letter-spacing: .02em;
}

.tg-card__body {
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tg-card__body h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.tg-card__body p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.tg-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--rose-deep);
  transition: gap .25s ease;
}
.tg-card:hover .tg-card__more {
  gap: 10px;
}

/* Treatment-Card Meta (Dauer + Intensität) */
.tg-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 2px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}
.tg-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.tg-card__meta-item svg {
  width: 15px; height: 15px;
  color: var(--aloe-deep);
}
.tg-card__intensity {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.tg-card__intensity-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background .25s ease;
}
.tg-card__intensity-dot.is-on {
  background: var(--rose-deep);
}

/* ============ MODAL ============ */
.tg-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.tg-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.tg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44,2,77,.55);
  backdrop-filter: blur(8px);
}
.tg-modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(44,2,77,.3);
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .tg-modal__panel { grid-template-columns: 0.85fr 1.15fr; max-height: 85vh; }
}
.tg-modal[aria-hidden="false"] .tg-modal__panel {
  transform: translateY(0) scale(1);
}
.tg-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.tg-modal__close:hover {
  background: var(--rose-deep);
  color: #fff;
  border-color: var(--rose-deep);
  transform: rotate(90deg);
}
.tg-modal__image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-pink), var(--rose));
  overflow: hidden;
}
@media (min-width: 760px) {
  .tg-modal__image { aspect-ratio: auto; height: 100%; min-height: 400px; }
}
.tg-modal__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tg-modal__content {
  padding: 36px 36px 16px;
}
.tg-modal__content .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}
.tg-modal__content h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.tg-modal__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-deep);
  margin: 0 0 22px;
  line-height: 1.45;
}

/* Modal Meta-Bar */
.tg-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-pink) 0%, rgba(207,166,204,.15) 100%);
  border-radius: var(--r-md);
  border: 1px solid rgba(207,166,204,.25);
  margin: 0 0 24px;
}
.tg-modal__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 140px;
}
.tg-modal__meta-item > svg {
  width: 28px; height: 28px;
  color: var(--rose-deep);
  flex: none;
}
.tg-modal__meta-item > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.tg-modal__meta-item strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
}
.tg-modal__meta-item span {
  font-size: .76rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.tg-modal__intensity {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  flex: none;
}
.tg-modal__intensity-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.tg-modal__intensity-dot.is-on {
  background: var(--rose-deep);
}
.tg-modal__content p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
}
.tg-modal__sectionhead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  margin: 22px 0 12px !important;
}
.tg-modal__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.tg-modal__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: .95rem;
}
.tg-modal__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 2px;
  background: var(--aloe-deep);
  border-radius: 2px;
}
.tg-modal__highlight {
  background: linear-gradient(135deg, var(--bg-green) 0%, rgba(184,212,184,.4) 100%);
  border-left: 3px solid var(--aloe-deep);
  padding: 14px 18px;
  margin: 20px 0 8px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.tg-modal__cta {
  grid-column: 1 / -1;
  padding: 20px 36px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
@media (min-width: 760px) {
  .tg-modal__cta {
    grid-column: 2 / 3;
    border-top: 1px solid var(--line);
    padding: 16px 36px 28px;
  }
}

body.modal-open {
  overflow: hidden;
}

/* ============ TREATMENTS QUICK NAV (Chips) ============ */
.treatments-nav {
  padding: 8px 5vw 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.treatments-nav__inner {
  background: linear-gradient(135deg, rgba(207,166,204,.08) 0%, rgba(122,153,120,.06) 100%);
  border: 1px solid rgba(207,166,204,.2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.treatments-nav__label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .92rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.treatments-nav__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.chip:hover {
  background: var(--rose-deep);
  color: #fff;
  border-color: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185,141,182,.3);
}
.chip:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 2px;
}

/* Scroll-Offset für Sticky-Header beim Anchor-Jump */
html { scroll-behavior: smooth; }
.treatment[id],
section[id] { scroll-margin-top: 100px; }

/* ============ ABOUT (Bio mit Timeline + Zitat) ============ */
.about {
  padding: 60px 5vw 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.about__inner {
  display: grid;
  gap: 50px;
}
.about__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about__head .eyebrow { margin-bottom: 12px; }
.about__head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 14px;
}
.about__head p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* Layout: Timeline links, Zitat rechts */
.about__layout {
  display: grid;
  gap: 50px;
  align-items: start;
}
@media (min-width: 900px) {
  .about__layout {
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
  }
}

/* TIMELINE */
.about__timeline {
  position: relative;
  padding-left: 8px;
}
.about__timeline-line {
  position: absolute;
  top: 18px; bottom: 18px;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg,
    var(--rose-deep) 0%,
    var(--aloe-deep) 50%,
    var(--gold) 100%);
  border-radius: 2px;
  opacity: .5;
}

.about__milestone {
  position: relative;
  padding-left: 64px;
  padding-bottom: 32px;
}
.about__milestone:last-child {
  padding-bottom: 0;
}
.about__milestone-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, var(--bg-pink) 100%);
  border: 2px solid var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--rose-deep);
  box-shadow: 0 6px 16px rgba(185,141,182,.2);
  z-index: 1;
}
.about__milestone-dot--final {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-color: var(--rose-deep);
  color: #fff;
  box-shadow: 0 8px 20px rgba(185,141,182,.4);
}
.about__milestone-dot--final svg {
  width: 18px; height: 18px;
}
.about__milestone-content {
  padding-top: 4px;
}
.about__milestone-year {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(122,153,120,.12);
  border: 1px solid rgba(122,153,120,.25);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--aloe-deep);
  margin-bottom: 8px;
}
.about__milestone-year--highlight {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-color: transparent;
  color: #fff;
}
.about__milestone h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.2;
}
.about__milestone p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  font-size: .95rem;
}

/* QUOTE BLOCK */
.about__quote {
  position: relative;
  background: linear-gradient(135deg, var(--bg-pink) 0%, rgba(207,166,204,.2) 100%);
  border-radius: var(--r-lg);
  padding: 36px 32px 30px;
  border: 1px solid rgba(207,166,204,.3);
  overflow: hidden;
}
.about__quote::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(122,153,120,.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.about__quote-mark {
  width: 40px;
  height: 40px;
  color: var(--rose-deep);
  opacity: .55;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.about__quote-text {
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
}
.about__quote-text strong {
  color: var(--rose-deep);
  font-style: normal;
  font-weight: 500;
  font-variation-settings: "SOFT" 100;
}
.about__quote-author {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  border-top: 1px solid rgba(185,141,182,.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__quote-author > span:first-child {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}
.about__quote-role {
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ TRUST BAR (Auszeichnungen & Vertrauen) ============ */
.trust {
  padding: 30px 5vw 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.trust__inner {
  background: linear-gradient(135deg, rgba(207,166,204,.05) 0%, rgba(122,153,120,.04) 100%);
  border: 1px solid rgba(207,166,204,.18);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.trust__intro {
  text-align: center;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.trust__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  margin: 8px 0 0;
  color: var(--ink);
}
.trust__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--rose-deep);
}

.trust__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
@media (min-width: 720px) {
  .trust__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  position: relative;
  text-align: left;
  min-width: 0;
}
@media (min-width: 720px) {
  .trust__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(207,166,204,.35) 50%,
      transparent 100%);
  }
}

.trust__item-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(207,166,204,.18) 0%, rgba(122,153,120,.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
}
.trust__item-icon svg {
  width: 22px;
  height: 22px;
}

.trust__item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.trust__item-text strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.15;
}
.trust__item-text span {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ============ CONTACT GRID (Formular + Karte) ============ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
}

.contact__form-wrap,
.contact__map-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact__form-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.contact__form-sub {
  color: var(--ink-soft);
  font-size: .9rem;
  margin: 0 0 24px;
  line-height: 1.55;
}
.contact__map-wrap .contact__map {
  flex: 1;
  width: 100%;
  min-height: 360px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field > span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' width='12' height='8' fill='none' stroke='%23b98db6' stroke-width='2' stroke-linecap='round'><polyline points='1 1 6 6 11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  border-color: var(--rose-deep);
  outline: none;
  box-shadow: 0 0 0 3px rgba(185,141,182,.15);
}
.contact-form__field input:invalid:not(:placeholder-shown),
.contact-form__field textarea:invalid:not(:placeholder-shown) {
  border-color: #d97076;
}
.contact-form__submit {
  margin-top: 6px;
  align-self: flex-start;
}
.contact-form__hint {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.contact-form__hint a {
  color: var(--rose-deep);
  font-weight: 500;
}

/* ============ ACCESSIBILITY ============ */
/* Konsistente, sichtbare Focus-Outlines */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.footer__cta:focus-visible,
.back-to-top:focus-visible,
.nav-toggle:focus-visible,
.modal__close:focus-visible,
.tg-modal__close:focus-visible {
  outline-offset: 4px;
}

/* Skip-to-Content Link (für Tastatur-Nutzer) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-weight: 500;
  z-index: 200;
  border-bottom-right-radius: var(--r-sm);
  transition: top .25s ease;
}
.skip-link:focus {
  top: 0;
}

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

/* Global reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ CONTACT MAP (Click-to-Load, Datenschutz-konform) ============ */
.contact__map {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
}
.contact__map-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-pink) 0%, var(--bg-green) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 24px;
  text-align: center;
  z-index: 2;
  transition: opacity .4s ease;
}
.contact__map-placeholder svg {
  width: 110px; height: 110px;
  border-radius: var(--r-md);
  flex: none;
}
.contact__map-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__map-info strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
}
.contact__map-info span {
  color: var(--ink-soft);
  font-size: .95rem;
}
.contact__map-note {
  margin: 0;
  font-size: .8rem;
  color: var(--ink-faint);
  max-width: 44ch;
  line-height: 1.45;
}
.contact__map-load { cursor: pointer; }
.contact__map.is-loaded .contact__map-placeholder {
  opacity: 0;
  pointer-events: none;
}
.contact__map-cta {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  text-decoration: none;
  transition: all .25s ease;
}
.contact__map-cta:hover {
  background: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
}


/* ============ PROMO (kompakter Termin-Streifen) ============ */
.promo {
  padding: 48px 5vw;
  max-width: 1300px;
  margin: 0 auto;
}
.promo__card {
  background: linear-gradient(135deg, var(--promo-1) 0%, var(--promo-2) 60%, var(--promo-3) 100%);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(168,124,166,.25);
}
@media (min-width: 800px) {
  .promo__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 48px;
  }
}
.promo__card::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.promo__card::after {
  content: '';
  position: absolute;
  bottom: -50%; left: 20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(122,153,120,.2) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.promo__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.promo__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: #fff;
}
.promo__tag::before { content: '✨'; font-size: .85rem; }
.promo__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin: 0 0 6px;
  color: #fff;
}
.promo__title em {
  font-style: italic;
  color: #fff;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.promo__title br { display: none; }
.promo__text {
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin: 0;
}
.promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.promo__visual { display: none; }

/* Promo white card variant — auch kompakt */
.promo__card--white {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(207,166,204,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.promo__card--white .promo__tag { background: var(--bg-pink); color: var(--rose-deep); }
.promo__card--white .promo__title { color: var(--ink); }
.promo__card--white .promo__title em { color: var(--rose-deep); }
.promo__card--white .promo__text { color: var(--ink-soft); }
.promo__card--white::before { background: radial-gradient(circle, rgba(207,166,204,.25) 0%, transparent 65%); }
.promo__card--white::after { background: radial-gradient(circle, rgba(122,153,120,.18) 0%, transparent 65%); }
.promo__card--white .promo__visual-circle {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-color: transparent;
}

/* ============ INSTITUTE / GALLERY ============ */
.institute {
  padding: 120px 5vw;
  max-width: 1400px; margin: 0 auto;
}
.institute__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.institute__head .eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
}
.institute__head .eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--rose-deep); }
.institute__head h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 16px;
}
.institute__head p { font-size: 1.05rem; color: var(--ink-soft); }

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  background: var(--bg-soft);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:nth-child(1) { grid-column: span 4; aspect-ratio: 3/2; }
.gallery__item:nth-child(2) { grid-column: span 2; aspect-ratio: 3/4; }
.gallery__item:nth-child(3) { grid-column: span 2; aspect-ratio: 1; }
.gallery__item:nth-child(4) { grid-column: span 2; aspect-ratio: 1; }
.gallery__item:nth-child(5) { grid-column: span 2; aspect-ratio: 1; }
.gallery__item:nth-child(6) { grid-column: span 3; aspect-ratio: 3/2; }
.gallery__item:nth-child(7) { grid-column: span 3; aspect-ratio: 3/2; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { grid-column: span 1 !important; aspect-ratio: 1 !important; }
}

/* ============ MAP / KONTAKT ============ */
.contact {
  padding: 120px 5vw 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.contact__head {
  text-align: center;
  margin-bottom: 48px;
}
.contact__head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 16px 0 8px;
}
.contact__map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* Placeholder vor dem Klick (datenschutz-konform) */
.contact__map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(207,166,204,.18) 0%, rgba(122,153,120,.18) 100%);
  gap: 14px;
  transition: opacity .4s ease;
}
.contact__map.is-loaded .contact__map-placeholder {
  display: none;
}
.contact__map-placeholder svg {
  width: 140px;
  max-width: 50%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(44,2,77,.15));
}
.contact__map-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__map-info strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
}
.contact__map-info span {
  color: var(--ink-soft);
  font-size: .95rem;
}
.contact__map-load {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.contact__map-note {
  font-size: .78rem;
  color: var(--ink-faint);
  max-width: 50ch;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
@media (max-width: 600px) {
  .contact__map { aspect-ratio: 4/5; }
  .contact__map-placeholder svg { width: 100px; }
  .contact__map-note { font-size: .72rem; }
}

.contact__map-cta {
  position: absolute;
  bottom: 24px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: all .3s;
  z-index: 2;
}
.contact__map-cta:hover { background: var(--rose-deep); color: #fff; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 5vw 40px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(207,166,204,.15) 0%, transparent 65%);
  border-radius: 50%;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(122,153,120,.1) 0%, transparent 65%);
  border-radius: 50%;
}
.footer__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
}
.footer__tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: rgba(250,245,243,.7);
  max-width: 30ch;
}
.footer__col h4 {
  font-size: .82rem;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--rose);
  font-family: 'Roboto', sans-serif;
  letter-spacing: .04em;
}
.footer__col p, .footer__col a {
  font-size: .95rem; line-height: 1.7;
  color: rgba(250,245,243,.8);
  margin: 0;
}
.footer__col a:hover { color: var(--rose); }
.footer__social {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.footer__social a:hover { background: var(--rose-deep); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; color: rgba(250,245,243,.85); }
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 22px 13px 20px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 6px 18px rgba(207,166,204,.35), inset 0 1px 0 rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.footer__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 50%);
  pointer-events: none;
}
.footer__cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.footer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(207,166,204,.45), inset 0 1px 0 rgba(255,255,255,.3);
  background: linear-gradient(135deg, #d6b3d3 0%, #c69ac3 100%);
}
.footer__cta:hover::after { transform: translateX(4px); }
.footer__bottom {
  max-width: 1300px; margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(250,245,243,.12);
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  font-size: .85rem;
  color: rgba(250,245,243,.5);
  position: relative;
  z-index: 1;
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom a { color: rgba(250,245,243,.6); }
.footer__bottom a:hover { color: var(--rose); }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 80;
  width: 44px; height: 44px;
  background: rgba(185,141,182,.92);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), background .25s;
  box-shadow: 0 8px 20px rgba(185,141,182,.35);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--rose-pop);
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .back-to-top { bottom: 78px; right: 20px; width: 40px; height: 40px; }
}

/* ============ TREATMENTS LIST (Behandlungsseite) ============ */
.treatments {
  padding: 80px 5vw;
  max-width: 1300px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 80px;
}
.treatment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 800px) {
  .treatment { grid-template-columns: 1fr 1fr; gap: 60px; }
  .treatment--reverse > div:first-child { order: 2; }
}
.treatment__image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-pink), var(--rose));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.treatment__image::before {
  content: '';
  position: absolute;
  top: -20%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.treatment--green .treatment__image { background: linear-gradient(135deg, var(--bg-green), var(--aloe-soft)); }
.treatment--cream .treatment__image { background: linear-gradient(135deg, #f5ebee, #e8d4e6); }
.treatment--cream-bg { background: linear-gradient(135deg, #ede4d8, #d4c1a8) !important; }
.treatment--green-bg { background: linear-gradient(135deg, var(--bg-green), var(--aloe-soft)) !important; }
.treatment__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.treatment__image:hover img { transform: scale(1.04); }
.treatment__image .placeholder {
  position: relative; z-index: 1;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 24px;
}
.treatment__icon {
  position: relative; z-index: 1;
  width: 30%; height: 30%;
}
.treatment__no {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.treatment__content .eyebrow {
  margin-bottom: 16px;
}
.treatment__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 8px;
}
.treatment__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rose-deep);
  margin: 0 0 20px;
}
.treatment__content p { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin: 0 0 14px; }
.treatment__content p strong { color: var(--ink); font-weight: 500; }
.treatment__highlight {
  margin: 20px 0;
  padding: 16px 20px;
  background: rgba(255,255,255,.7);
  border-left: 3px solid var(--rose-deep);
  border-radius: var(--r-sm);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}
.treatment__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}
.treatment__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.treatment__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  margin-top: 8px;
  flex: none;
}
.treatment__subheadline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 24px 0 12px;
  font-weight: 500;
}
.treatment__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============ INTRO BLOCK (Synergieprinzip-Style) ============ */
.intro-block {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-pink) 100%);
  padding: 120px 5vw;
  position: relative;
  overflow: hidden;
}
.intro-block__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .intro-block__inner { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.intro-block__content .eyebrow {
  margin-bottom: 18px;
}
.intro-block__content h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
}
.intro-block__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.4;
}
.intro-block__content p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin: 0 0 16px; }
.intro-block__content p strong { color: var(--ink); font-weight: 500; }
.intro-block__highlight {
  padding: 18px 24px;
  background: rgba(255,255,255,.85);
  border-radius: var(--r-md);
  margin: 24px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  border-left: 3px solid var(--rose-deep);
}
.intro-block__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.intro-block__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 25%, rgba(255,255,255,.5) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.intro-block__visual svg {
  position: relative; z-index: 1;
  width: 60%; height: 60%;
  filter: drop-shadow(0 16px 32px rgba(78,107,77,.25));
}
.intro-block__visual--photo {
  background: var(--bg-soft);
  aspect-ratio: 4/5;
}
.intro-block__visual--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.intro-block__visual--photo::before { display: none; }

/* ============ NUMBERED STEPS (Pflege-Fünfklang) ============ */
.steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  counter-reset: steps;
  display: grid;
  gap: 14px;
}
.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  background: rgba(255,255,255,.8);
  border-radius: var(--r-md);
  border: 1px solid rgba(207,166,204,.25);
  font-size: 1.05rem;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}
.steps li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose-deep);
  font-weight: 500;
}

/* ============ PRODUCT SHOWCASE ============ */
.product-showcase {
  padding: 60px 5vw 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-showcase__inner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
}
.product-showcase__inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ PARTNER CARDS ============ */
.partners {
  padding: 80px 5vw 60px;
  max-width: 1300px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 32px;
}
.partner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid rgba(207,166,204,.2);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.partner-card:nth-child(even) { background: var(--bg-pink); }
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@media (min-width: 800px) {
  .partner-card { grid-template-columns: 240px 1fr auto; align-items: center; gap: 48px; }
}
.partner-card__logo {
  aspect-ratio: 16/9;
  background: #fff;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  border: 1px solid var(--line);
}
.partner-card__logo .placeholder {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rose-deep);
  text-align: center;
}
.partner-card__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 6px;
}
.partner-card__sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.partner-card__details {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.partner-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .3s;
  white-space: nowrap;
}
.partner-card__cta:hover { background: var(--rose-deep); }

/* ============ LEGAL CARDS GRID (Impressum, Datenschutz) ============ */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 5vw 100px;
}
.legal-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(207,166,204,.2);
  position: relative;
  overflow: hidden;
}
.legal-card h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.legal-card h3::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex: none;
}
.legal-card p, .legal-card li {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.legal-card p strong { color: var(--ink); font-weight: 500; }
.legal-card ul { padding-left: 0; list-style: none; margin: 0 0 12px; }
.legal-card a { color: var(--rose-deep); }
.legal-card a:hover { text-decoration: underline; }
.legal-card__contact { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ============ 404 ============ */
.error-page {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 5vw;
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  top: 10%; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle at center, var(--bg-pink) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.error-page::after {
  content: '';
  position: absolute;
  bottom: 10%; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle at center, var(--bg-green) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.error-page__inner {
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.error-page__num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 1;
  color: var(--rose-deep);
  margin: 0;
}
.error-page__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 16px 0 16px;
}
.error-page__text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 32px;
  line-height: 1.7;
}

/* ============ BANNER (für Unterseiten) ============ */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/5;
  min-height: 220px;
  max-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose) 50%, var(--rose-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.banner::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.4) 0%, transparent 65%);
  border-radius: 50%;
}
.banner::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -15%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(78,107,77,.25) 0%, transparent 65%);
  border-radius: 50%;
}
.banner svg {
  position: relative;
  z-index: 1;
  width: 14%;
  height: 80%;
  max-width: 160px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.15));
}
.banner--green { background: linear-gradient(135deg, var(--bg-green) 0%, var(--aloe-soft) 50%, var(--aloe) 100%); }
.banner--lila { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 50%, var(--lila-soft) 100%); }
.banner--cream { background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-pink) 50%, var(--rose-soft) 100%); }

/* ============ QUOTE BLOCK ============ */
.quote-block {
  padding: 80px 5vw;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--rose);
  opacity: .4;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 32px 0 0;
  position: relative;
  z-index: 1;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42,26,38,.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all .3s;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.2); transform: scale(1.08) translateY(-50%); }
.lightbox__close:hover { transform: scale(1.08); }

/* ============ ANIMATIONS ============ */
@keyframes float-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__title, .hero__lead, .hero__actions, .hero__features { animation: float-up .9s cubic-bezier(.2,.8,.2,1) both; }
.hero__lead { animation-delay: .15s; }
.hero__actions { animation-delay: .3s; }
.hero__features { animation-delay: .45s; }

/* Smooth fade for sections on scroll */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1),
              transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variante: von links einfliegen */
.reveal--left { transform: translateX(-32px); }
.reveal--left.is-visible { transform: translateX(0); }

/* Variante: von rechts einfliegen */
.reveal--right { transform: translateX(32px); }
.reveal--right.is-visible { transform: translateX(0); }

/* Variante: skalierter Auftritt */
.reveal--scale { transform: scale(.96); }
.reveal--scale.is-visible { transform: scale(1); }

/* Variante: pures Fade ohne Bewegung */
.reveal--fade { transform: none; }

/* Staggered children (Kinder gestaffelt einblenden) */
.reveal-stagger > *:not(.about__timeline-line) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1),
              transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal-stagger.is-visible > *:not(.about__timeline-line) {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: .64s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: .72s; }

/* prefers-reduced-motion: keine Animationen */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* ============ PRINT ============ */
@media print {
  /* Reset: weiß auf schwarz, alles sichtbar */
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  html, body {
    background: #fff !important;
    font-size: 11pt;
    line-height: 1.45;
    color: #111 !important;
  }

  /* Page-Setup */
  @page {
    size: A4;
    margin: 2cm 1.8cm;
  }

  /* Was beim Druck weg darf */
  .header,
  .footer,
  .back-to-top,
  .nav-toggle,
  .skip-link,
  .promo,
  .contact__map,
  .contact__map-wrap,
  .tg-filters,
  .tg-card__more,
  .modal,
  .tg-modal,
  .hero-portrait__actions,
  .hero-portrait__features,
  video, audio, iframe {
    display: none !important;
  }

  /* Bilder kleiner & immer ganz */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* Überschriften nicht alleine am Seitenende */
  h1, h2, h3, h4 {
    page-break-after: avoid;
    color: #000 !important;
    font-family: 'Fraunces', Georgia, serif !important;
  }
  h1 { font-size: 22pt; margin: 0 0 12pt; }
  h2 { font-size: 16pt; margin: 18pt 0 8pt; }
  h3 { font-size: 13pt; margin: 14pt 0 6pt; }

  /* Hyperlinks: URL ausschreiben (außer für interne Links / Mail / Tel) */
  a[href^="http"]:not([href*="kosmetik-larte"])::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
  }
  a[href^="tel:"]::after {
    content: " " attr(href);
    font-size: 9pt;
  }
  a[href^="tel:"]::after { content: ""; }
  a { text-decoration: underline; color: #000 !important; }

  /* Sektionen mit Rahmen-Logik */
  section {
    page-break-inside: avoid;
    padding: 12pt 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  /* Behandlungsraster: drucken untereinander statt Grid */
  .tg__grid,
  .cats__grid,
  .gallery,
  .about__grid {
    display: block !important;
  }
  .tg-card,
  .cat-card,
  .about__card {
    page-break-inside: avoid;
    border: 1px solid #999 !important;
    margin-bottom: 10pt;
    padding: 8pt !important;
  }
  .tg-card__image,
  .gallery__item {
    max-height: 8cm;
    overflow: hidden;
  }

  /* Path-Stories: jede Station als Block */
  .path__step {
    display: block !important;
    page-break-inside: avoid;
    margin-bottom: 14pt;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12pt;
  }
  .path__marker,
  .path__line {
    display: none !important;
  }

  /* Kontakt-Block: am Ende sichtbar drucken */
  .contact::before {
    content: "Kontakt: Kosmetik L'Arte · Talbodenstrasse 73 · 3098 Schliern bei Köniz · +41 79 505 67 44 · vincenza.hofer@hotmail.com";
    display: block;
    border-top: 1px solid #999;
    padding-top: 8pt;
    margin-top: 12pt;
    font-size: 10pt;
  }

  /* Form ausblenden (kann man nicht drucken & abschicken) */
  .contact-form,
  .contact__form-wrap {
    display: none !important;
  }

  /* Eyebrows als kleine Caption */
  .eyebrow {
    font-size: 9pt;
    letter-spacing: 0.1em;
    color: #666 !important;
  }
}

/* ============ AIVIE HIGHLIGHT (NEU – DEYNIQUE Partnerprodukt) ============ */
.aivie {
  position: relative;
  padding: 80px 5vw;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(207,166,204,.20) 0%, transparent 58%),
    radial-gradient(100% 80% at 6% 96%, rgba(244,231,196,.30) 0%, transparent 55%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-pink) 55%, var(--rose-soft) 100%);
  color: var(--ink);
}
@media (min-width: 900px) { .aivie { padding: 120px 5vw; } }

.aivie__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) {
  .aivie__inner { grid-template-columns: 1fr 1.18fr; gap: 72px; }
}

/* ---- Visual ---- */
.aivie__visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.aivie__visual-bg {
  position: absolute;
  inset: -8% -6% -10% -6%;
  background: radial-gradient(circle at 50% 45%, rgba(214,139,185,.28) 0%, transparent 70%);
  filter: blur(6px);
  z-index: 0;
}
.aivie__visual-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--rose-soft);
  animation: aivieFloatFrame 8s ease-in-out infinite;
}
.aivie__visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 519 / 649;
  object-fit: cover;
}
.aivie__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--rose-soft);
}
.aivie__video picture,
.aivie__video picture img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
@keyframes aivieFloatFrame {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.aivie__chips {
  margin: 0; padding: 0;
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
}
.aivie__chip {
  position: absolute;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--lila);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(185,141,182,.35);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: aivieFloat 6s ease-in-out infinite;
}
.aivie__chip--1 { top: 8%;  left: 0;  }
.aivie__chip--2 { top: 42%; right: 0; animation-delay: 1.5s; }
.aivie__chip--3 { bottom: 17%; left: 8%; animation-delay: 3s; }
@media (min-width: 900px) {
  .aivie__chip--1 { left: -6%; }
  .aivie__chip--2 { right: -8%; }
  .aivie__chip--3 { left: 2%; }
}
@keyframes aivieFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ---- Content ---- */
.aivie__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft);
}
.aivie__badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-pop));
  box-shadow: 0 4px 14px rgba(214,139,185,.4);
}
.aivie__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  margin: 0 0 22px;
  color: var(--ink);
}
.aivie__title em { font-style: italic; color: var(--rose-deep); }
.aivie__lead {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 0 28px;
}
.aivie__lead strong { color: var(--ink); font-weight: 600; }

/* Wirkstoff-Karten */
.aivie__ingredients {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 28px; padding: 0;
}
@media (min-width: 560px) {
  .aivie__ingredients { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
.aivie-ing {
  padding: 18px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(185,141,182,.22);
  backdrop-filter: blur(8px);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.aivie-ing:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(185,141,182,.5);
}
.aivie-ing__name {
  margin: 0 0 6px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--lila);
}
.aivie-ing__tag {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rose-deep);
  margin-bottom: 8px;
}
.aivie-ing p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Feature-Pills */
.aivie__features {
  list-style: none;
  margin: 0 0 30px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.aivie__features li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: .82rem;
  color: var(--ink);
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(185,141,182,.25);
}
.aivie__features li::before {
  content: '✓';
  color: var(--rose-deep);
  font-weight: 700;
}

.aivie__note {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 2px solid var(--rose-deep);
  padding-left: 16px;
  margin: 0 0 30px;
}

.aivie__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 30px;
}

.aivie__partner {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0; padding-top: 4px;
}
.aivie__partner > span {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.aivie__partner-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .3s;
}
.aivie__partner-logo img {
  display: block;
  height: 30px;
  width: auto;
}
.aivie__partner-logo:hover { opacity: .7; }

@media (prefers-reduced-motion: reduce) {
  .aivie__visual-frame, .aivie__chip { animation: none; }
}

/* ============ HERO PORTRAIT – Social Icons ============ */
.hero-portrait__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 10px;
}
.hero-portrait__socials-label {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-right: 4px;
}
.hero-portrait__socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  box-shadow: 0 6px 16px rgba(185,141,182,.3);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.hero-portrait__socials a:hover,
.hero-portrait__socials a:focus-visible {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-pop) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(214,139,185,.45);
}
.hero-portrait__socials svg { width: 20px; height: 20px; }

/* ============ AIVIE VIDEO ============ */
.aivie__visual-frame { position: relative; }
.aivie__visual-frame:hover,
.aivie__visual-frame:focus-within { animation-play-state: paused; }
.aivie__video { cursor: pointer; }
